diff --git a/core/lib/permissions.py b/core/lib/permissions.py new file mode 100644 index 0000000000000000000000000000000000000000..662cbbbf632cf76d03d8670cbbec11fae6260171 --- /dev/null +++ b/core/lib/permissions.py @@ -0,0 +1,97 @@ +from rest_framework import permissions +from rest_framework.exceptions import APIException + +from core.models import Company +from core.models import Student +from core.models import Supervisor + + +def is_admin_or_student(user): + return user.is_superuser or hasattr(user, "student") + + +def is_admin_or_company(user): + return user.is_superuser or hasattr(user, "company") + + +def is_admin_or_supervisor(user): + return user.is_superuser or hasattr(user, "supervisor") + + +class IsAdminOrSelfOrReadOnly(permissions.BasePermission): + def has_object_permission(self, request, view, obj): + if request.method in permissions.SAFE_METHODS: + return True + if request.user.is_superuser: + return True + # Instance must have an attribute named `user` or be `user` + if hasattr(obj, "user"): + return obj.user == request.user + return obj == request.user + + +class IsAdminOrStudent(permissions.BasePermission): + def has_permission(self, request, view): + return is_admin_or_student(request.user) + + def has_object_permission(self, request, view, obj): + user = request.user + if user.is_superuser: + return True + student = None + if isinstance(obj, Student): + student = obj + elif hasattr(obj, "student"): + student = obj.student + else: + raise APIException( + "Checking student permission on object {} not associated with carrier" + .format(type(obj.__name__)) + ) + + return hasattr(user, "student") and user.student == student + + +class IsAdminOrSupervisor(permissions.BasePermission): + def has_permission(self, request, view): + return is_admin_or_supervisor(request.user) + + def has_object_permission(self, request, view, obj): + user = request.user + if user.is_superuser: + return True + supervisor = None + if isinstance(obj, Supervisor): + supervisor = obj + elif hasattr(obj, "supervisor"): + supervisor = obj.supervisor + else: + raise APIException( + "Checking supervisor permission on object {} not associated with carrier" + .format(type(obj.__name__)) + ) + + return hasattr(user, "supervisor") and user.supervisor == supervisor + + +class IsAdminOrCompany(permissions.BasePermission): + def has_permission(self, request, view): + return is_admin_or_company(request.user) + + def has_object_permission(self, request, view, obj): + user = request.user + if user.is_superuser: + return True + company = None + if isinstance(obj, Company): + company = obj + elif hasattr(obj, "company"): + company = obj.company + else: + raise APIException( + "Checking company permission on object {} not associated with carrier" + .format(type(obj.__name__)) + ) + + return hasattr(user, "company") and user.company == company + diff --git a/core/migrations/0001_initial.py b/core/migrations/0001_initial.py index cd29153b5725d3542722d995922aa090f75ba1ea..2cc97f59cb915fc7713bee1c4a841474e99486da 100644 --- a/core/migrations/0001_initial.py +++ b/core/migrations/0001_initial.py @@ -42,7 +42,7 @@ class Migration(migrations.Migration): ('created', models.DateTimeField(auto_now_add=True)), ('updated', models.DateTimeField(auto_now=True)), ('npm', models.IntegerField(unique=True, validators=[django.core.validators.MinValueValidator(100000000), django.core.validators.MaxValueValidator(9999999999)])), - ('resume', models.FileField(blank=True, null=True, upload_to=core.models.accounts.get_file_path)), + ('resume', models.FileField(blank=True, null=True, upload_to=core.models.accounts.get_student_resume_file_path)), ('phone_number', models.CharField(blank=True, db_index=True, max_length=100)), ], ), diff --git a/core/migrations/0007_auto_20170328_0351.py b/core/migrations/0007_auto_20170328_0351.py new file mode 100644 index 0000000000000000000000000000000000000000..49ae6543c0b4c67d32fe67cbd9c1ee8e0183c647 --- /dev/null +++ b/core/migrations/0007_auto_20170328_0351.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.10.5 on 2017-03-27 20:51 +from __future__ import unicode_literals + +import core.models.accounts +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('core', '0006_auto_20170328_0258'), + ] + + operations = [ + migrations.AlterField( + model_name='company', + name='logo', + field=models.FileField(blank=True, null=True, upload_to=core.models.accounts.get_company_logo_file_path), + ), + ] diff --git a/core/models/accounts.py b/core/models/accounts.py index 754c14645056028da192001c3aceca1deab8f932..65f41e456fd8494192d9c47cd702f9eca6cea8fb 100644 --- a/core/models/accounts.py +++ b/core/models/accounts.py @@ -5,12 +5,19 @@ from django.contrib.auth.models import User from django.core.validators import MinValueValidator, MaxValueValidator from django.db import models -def get_file_path(instance, filename): + +def get_student_resume_file_path(instance, filename): extension = filename.split('.')[-1].lower() filename = "%s.%s" % (uuid.uuid4(), extension) return os.path.join("student-resume/", filename) +def get_company_logo_file_path(instance, filename): + extension = filename.split('.')[-1].lower() + filename = "%s.%s" % (uuid.uuid4(), extension) + return os.path.join("company-logo/", filename) + + def get_display_name(user, full_name=False): """ Return a display name that always works like "Benoit J." @@ -39,7 +46,7 @@ class Student(models.Model): updated = models.DateTimeField(auto_now=True) user = models.OneToOneField(User) npm = models.IntegerField(validators=[MinValueValidator(100000000), MaxValueValidator(9999999999)], unique=True) - resume = models.FileField(upload_to=get_file_path, null=True, blank=True) + resume = models.FileField(upload_to=get_student_resume_file_path, null=True, blank=True) phone_number = models.CharField(max_length=100, blank=True, db_index=True) bookmarked_vacancies = models.ManyToManyField('core.Vacancy', blank=True) @@ -60,7 +67,7 @@ class Company(models.Model): user = models.OneToOneField(User) description = models.TextField() verified = models.BooleanField(default=False) - logo = models.CharField(max_length=1000, blank=True, null=True) + logo = models.FileField(upload_to=get_company_logo_file_path, null=True, blank=True) alamat = models.CharField(max_length=1000, blank=True, null=True) @property diff --git a/core/tests/test_studentViewSet.py b/core/tests/test_studentViewSet.py index 0dc588a2171d169c3f3150988cf912d4f12ec42d..efd3f41311b54636109a6e58bbb8dfd33eb90439 100644 --- a/core/tests/test_studentViewSet.py +++ b/core/tests/test_studentViewSet.py @@ -1,18 +1,18 @@ -from unittest import TestCase - -from django.urls import reverse - - -class TestStudentViewSet(TestCase): - # def setUp(self): - # #c = Client() - # Student.objects.create(user = User.objects.create(username = "farhan"), npm = "1406572321") - - #def test_bookmark_vacancies(self): - # url = reverse('bookmarked-vacancies') - # data = {'company_id': 1} - # response = self.client.post(url, data, format='json') -# self.fail() - # - # def test_remove_vacancies(self): - # self.fail() +# from unittest import TestCase +# +# from django.urls import reverse +# +# +# class TestStudentViewSet(TestCase): +# # def setUp(self): +# # #c = Client() +# # Student.objects.create(user = User.objects.create(username = "farhan"), npm = "1406572321") +# +# #def test_bookmark_vacancies(self): +# # url = reverse('bookmarked-vacancies') +# # data = {'company_id': 1} +# # response = self.client.post(url, data, format='json') +# # self.fail() +# # +# # def test_remove_vacancies(self): +# # self.fail() diff --git a/core/views/accounts.py b/core/views/accounts.py index 8a46e4e36193a713705c7b093f38619dd35c4987..de96c6dcd0f05e6d9e64501eea15293077f9f144 100644 --- a/core/views/accounts.py +++ b/core/views/accounts.py @@ -29,13 +29,11 @@ class StudentViewSet(viewsets.ModelViewSet): @detail_route(methods=['post'], url_path='bookmarked-vacancies') def bookmark_vacancies(self, request, pk): user = self.request.user - print("yay1") vacancy = get_object_or_404(Vacancy.objects.all(), pk=request.data['vacancy_id']) - print("yay2") student = get_object_or_404(Student.objects.all(), pk=pk) - print("yay3") if student != user.student and not user.is_staff: - raise ValidationError('You must be a student') + raise ValidationError('You must be a student' + ) student.bookmarked_vacancies.add(vacancy) return Response(vacancy, status=status.HTTP_200_OK) diff --git a/seeder.json b/seeder.json index 7076ef1bdcc4d27ff69dae6994d80e7fee5b7858..b35763b0a8675131ebe0eaf7d1c1b44d0de9cd77 100644 --- a/seeder.json +++ b/seeder.json @@ -1,22745 +1 @@ -[ -{ - "model": "contenttypes.contenttype", - "pk": 1, - "fields": { - "app_label": "admin", - "model": "logentry" - } -}, -{ - "model": "contenttypes.contenttype", - "pk": 2, - "fields": { - "app_label": "auth", - "model": "permission" - } -}, -{ - "model": "contenttypes.contenttype", - "pk": 3, - "fields": { - "app_label": "auth", - "model": "user" - } -}, -{ - "model": "contenttypes.contenttype", - "pk": 4, - "fields": { - "app_label": "auth", - "model": "group" - } -}, -{ - "model": "contenttypes.contenttype", - "pk": 5, - "fields": { - "app_label": "contenttypes", - "model": "contenttype" - } -}, -{ - "model": "contenttypes.contenttype", - "pk": 6, - "fields": { - "app_label": "sessions", - "model": "session" - } -}, -{ - "model": "contenttypes.contenttype", - "pk": 7, - "fields": { - "app_label": "core", - "model": "company" - } -}, -{ - "model": "contenttypes.contenttype", - "pk": 8, - "fields": { - "app_label": "core", - "model": "student" - } -}, -{ - "model": "contenttypes.contenttype", - "pk": 9, - "fields": { - "app_label": "core", - "model": "application" - } -}, -{ - "model": "contenttypes.contenttype", - "pk": 10, - "fields": { - "app_label": "core", - "model": "supervisor" - } -}, -{ - "model": "contenttypes.contenttype", - "pk": 11, - "fields": { - "app_label": "core", - "model": "vacancy" - } -}, -{ - "model": "contenttypes.contenttype", - "pk": 12, - "fields": { - "app_label": "silk", - "model": "request" - } -}, -{ - "model": "contenttypes.contenttype", - "pk": 13, - "fields": { - "app_label": "silk", - "model": "sqlquery" - } -}, -{ - "model": "contenttypes.contenttype", - "pk": 14, - "fields": { - "app_label": "silk", - "model": "response" - } -}, -{ - "model": "contenttypes.contenttype", - "pk": 15, - "fields": { - "app_label": "silk", - "model": "profile" - } -}, -{ - "model": "sessions.session", - "pk": "1fih5jt4tc2hl5ww81c0yipoi5szl3r4", - "fields": { - "session_data": "YWU3OGNhZDU2OWFiZGQxYTQ0NTA5YTUyMTkwYTMyYjcxMmJiZjk4MDp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiJmYjQ3ZjU2NDRiODU2MGRlZDk3NzUwMjljMjIyYjY2YmUzZTAwMDI2In0=", - "expire_date": "2017-04-10T14:33:12.175Z" - } -}, -{ - "model": "sessions.session", - "pk": "blt877g5fjmucxy3dd5uxcizavb9opov", - "fields": { - "session_data": "YWU3OGNhZDU2OWFiZGQxYTQ0NTA5YTUyMTkwYTMyYjcxMmJiZjk4MDp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiJmYjQ3ZjU2NDRiODU2MGRlZDk3NzUwMjljMjIyYjY2YmUzZTAwMDI2In0=", - "expire_date": "2017-04-10T14:52:05.882Z" - } -}, -{ - "model": "core.vacancy", - "pk": 1, - "fields": { - "company": 2, - "verified": false, - "open_time": "2017-03-27T15:23:20Z", - "description": "", - "close_time": "2017-03-27T15:23:22Z" - } -}, -{ - "model": "core.application", - "pk": 1, - "fields": { - "student_npm": 1, - "vacancy_id": 1 - } -}, -{ - "model": "silk.request", - "pk": "0120934f-1641-482e-847c-cd687ddd8da6", - "fields": { - "path": "/api/students/4/bookmarked-vacancies/", - "query_params": "", - "raw_body": "[\n {\n \"id\": 1,\n \"verified\": false,\n \"open_time\": \"2017-03-27T15:23:20Z\",\n \"close_time\": \"2017-03-27T15:23:22Z\",\n \"company\": 2\n }\n]", - "body": "[\n {\n \"close_time\": \"2017-03-27T15:23:22Z\",\n \"company\": 2,\n \"id\": 1,\n \"open_time\": \"2017-03-27T15:23:20Z\",\n \"verified\": false\n }\n]", - "method": "POST", - "start_time": "2017-03-27T15:57:24.511Z", - "view_name": "student-bookmarked-vacancies", - "end_time": "2017-03-27T15:57:24.653Z", - "time_taken": 142.094, - "encoded_headers": "{\"CONTENT-LENGTH\": \"147\", \"CONTENT-TYPE\": \"application/json\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"X-CSRFTOKEN\": \"jq91BuF5e5R7SjMFRc2TNfvWU8lDO6wyIwgQN0x0122wfrO7ADxlFWcGS3rs86sn\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "04040352-68e7-45cc-be95-cb45b8efce7c", - "fields": { - "path": "/admin/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T18:16:16.840Z", - "view_name": "admin:index", - "end_time": "2017-03-27T18:16:20.519Z", - "time_taken": 3678.454, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 3 - } -}, -{ - "model": "silk.request", - "pk": "043cea54-e9cd-4bc2-a0a5-20eb845eaf90", - "fields": { - "path": "/api", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T18:19:01.607Z", - "view_name": "rest_framework_swagger.views.SwaggerSchemaView", - "end_time": "2017-03-27T18:19:02.126Z", - "time_taken": 519.347, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"CACHE-CONTROL\": \"max-age=0\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "0449f26e-17b8-441a-b83f-65020ce67c9c", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:56:56.387Z", - "view_name": "index", - "end_time": "2017-03-27T15:56:56.458Z", - "time_taken": 71.048, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "05801873-0a00-4385-88cc-57751919e310", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:23:44.664Z", - "view_name": "index", - "end_time": "2017-03-27T15:23:44.739Z", - "time_taken": 75.051, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/application/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "058330fb-2bf2-445f-9cb4-1d823c518685", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:33:40.046Z", - "view_name": "index", - "end_time": "2017-03-27T14:33:40.102Z", - "time_taken": 56.034, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"localhost:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://localhost:8000/admin/core/company/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "05e7aa77-3994-4302-acac-e22df0daa344", - "fields": { - "path": "/admin/core/student/add/", - "query_params": "", - "raw_body": "------WebKitFormBoundaryYW5Y6dcAzDApstVq\r\nContent-Disposition: form-data; name=\"csrfmiddlewaretoken\"\r\n\r\nqJ6HEO1BUU2J4p46UtD3PjjXxBxMn1SuPPdwQkTwHRd8rx6yDU8vH00HvwDBH1Oj\r\n------WebKitFormBoundaryYW5Y6dcAzDApstVq\r\nContent-Disposition: form-data; name=\"user\"\r\n\r\n2\r\n------WebKitFormBoundaryYW5Y6dcAzDApstVq\r\nContent-Disposition: form-data; name=\"npm\"\r\n\r\n1406572321\r\n------WebKitFormBoundaryYW5Y6dcAzDApstVq\r\nContent-Disposition: form-data; name=\"resume\"; filename=\"1.txt\"\r\nContent-Type: text/plain\r\n\r\nsalju di arab\r\nfitnah syam --> perbanyak ibadah\r\nwafanya raja arab (abdul aziz bin said-->anak ke 7 abdullah)\r\nmengeringnya sungai eufrat\r\n-\r\n-\r\n-\r\nmeteor (penyanyi wanita, alat musik menyebar dimana2, menyebar khamr)\r\n\r\nSYARAT\r\n\r\ndukhan\r\ndajjal\r\nisa\r\nyajuj majuj\r\n\r\n----- selesai fase\r\nmatahari terbit di barat\r\ndabbah\r\nangin lembut maut\r\n\r\n----- selesai fase umat muslim\r\ngempa\r\ngempa\r\napi\r\n------WebKitFormBoundaryYW5Y6dcAzDApstVq\r\nContent-Disposition: form-data; name=\"phone_number\"\r\n\r\nyayaya\r\n------WebKitFormBoundaryYW5Y6dcAzDApstVq\r\nContent-Disposition: form-data; name=\"_save\"\r\n\r\nSave\r\n------WebKitFormBoundaryYW5Y6dcAzDApstVq--\r\n", - "body": "{\n \"_save\": [\n \"Save\"\n ],\n \"csrfmiddlewaretoken\": [\n \"qJ6HEO1BUU2J4p46UtD3PjjXxBxMn1SuPPdwQkTwHRd8rx6yDU8vH00HvwDBH1Oj\"\n ],\n \"npm\": [\n \"1406572321\"\n ],\n \"phone_number\": [\n \"yayaya\"\n ],\n \"user\": [\n \"2\"\n ]\n}", - "method": "POST", - "start_time": "2017-03-27T14:57:06.274Z", - "view_name": "admin:core_student_add", - "end_time": "2017-03-27T14:57:06.484Z", - "time_taken": 210.14, - "encoded_headers": "{\"CONTENT-LENGTH\": \"1135\", \"CONTENT-TYPE\": \"multipart/form-data; boundary=----WebKitFormBoundaryYW5Y6dcAzDApstVq\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"CACHE-CONTROL\": \"max-age=0\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/student/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 8 - } -}, -{ - "model": "silk.request", - "pk": "0733ee4e-7665-446f-b2bf-68a2c82aabe7", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:55:10.290Z", - "view_name": "index", - "end_time": "2017-03-27T14:55:10.352Z", - "time_taken": 62.041, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/4/change/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "097a3a7f-fd94-4874-b3fa-e9c7268e2d4f", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:14:24.388Z", - "view_name": "index", - "end_time": "2017-03-27T15:14:24.504Z", - "time_taken": 116.076, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "09e13131-05cb-40d6-b5b8-ab9f1909a28b", - "fields": { - "path": "/admin/login/", - "query_params": "{\"next\": \"/admin/\"}", - "raw_body": "csrfmiddlewaretoken=vicEW0N0fpaXvwIO6r1m408i7yiSqZNo9w6NRYl7Am6qxCevnYtuteGMQFCpLmx3&username=kape&password=yukcarikape&next=%2Fadmin%2F", - "body": "{\n \"csrfmiddlewaretoken\": [\n \"vicEW0N0fpaXvwIO6r1m408i7yiSqZNo9w6NRYl7Am6qxCevnYtuteGMQFCpLmx3\"\n ],\n \"next\": [\n \"/admin/\"\n ],\n \"password\": [\n \"yukcarikape\"\n ],\n \"username\": [\n \"kape\"\n ]\n}", - "method": "POST", - "start_time": "2017-03-27T14:33:11.875Z", - "view_name": "admin:login", - "end_time": "2017-03-27T14:33:12.139Z", - "time_taken": 264.181, - "encoded_headers": "{\"CONTENT-LENGTH\": \"136\", \"CONTENT-TYPE\": \"application/x-www-form-urlencoded\", \"HOST\": \"localhost:8000\", \"CONNECTION\": \"keep-alive\", \"CACHE-CONTROL\": \"max-age=0\", \"ORIGIN\": \"http://localhost:8000\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://localhost:8000/admin/login/?next=/admin/\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 3 - } -}, -{ - "model": "silk.request", - "pk": "0b0d1a97-7449-475e-b2be-fe3b1c19df58", - "fields": { - "path": "/api/vacancies/", - "query_params": "{\"page\": \"2\"}", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T17:08:40.797Z", - "view_name": "vacancy-list", - "end_time": "2017-03-27T17:08:40.883Z", - "time_taken": 86.057, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"X-CSRFTOKEN\": \"ffCF3xfzsNpezbMEgaFCPhzCQygxEAOKElJuf37ufKADWjO6ZBa4HYgmOtmmYAKz\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 3 - } -}, -{ - "model": "silk.request", - "pk": "0baf73ed-9a02-4c02-8327-46c8b886778a", - "fields": { - "path": "/api", - "query_params": "{\"format\": \"openapi\"}", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T17:10:40.309Z", - "view_name": "rest_framework_swagger.views.SwaggerSchemaView", - "end_time": "2017-03-27T17:10:40.505Z", - "time_taken": 196.13, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json;charset=utf-8,*/*\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "0cbe92e1-c115-4fcd-96f0-c8ba9d0d23b9", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:57:06.633Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T14:57:06.841Z", - "time_taken": 208.14, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/student/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "0cc8b2c4-8eee-4ba6-af83-4c27df74b20e", - "fields": { - "path": "/api", - "query_params": "{\"format\": \"openapi\"}", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:47:00.663Z", - "view_name": "rest_framework_swagger.views.SwaggerSchemaView", - "end_time": "2017-03-27T14:47:00.803Z", - "time_taken": 140.094, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json;charset=utf-8,*/*\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "0cdfed90-bb34-446f-930e-952829d4ac39", - "fields": { - "path": "/admin/core/company/", - "query_params": "", - "raw_body": "csrfmiddlewaretoken=CmXSeQEae9HF7kbJnUDJaxC8T5tcR6cw1s4Hqmw516S4usdb6l8b2ejSR0z1b68l&action=delete_selected&select_across=0&index=0&_selected_action=1", - "body": "{\n \"_selected_action\": [\n \"1\"\n ],\n \"action\": [\n \"delete_selected\"\n ],\n \"csrfmiddlewaretoken\": [\n \"CmXSeQEae9HF7kbJnUDJaxC8T5tcR6cw1s4Hqmw516S4usdb6l8b2ejSR0z1b68l\"\n ],\n \"index\": [\n \"0\"\n ],\n \"select_across\": [\n \"0\"\n ]\n}", - "method": "POST", - "start_time": "2017-03-27T14:55:24.583Z", - "view_name": "admin:core_company_changelist", - "end_time": "2017-03-27T14:55:24.722Z", - "time_taken": 139.09, - "encoded_headers": "{\"CONTENT-LENGTH\": \"150\", \"CONTENT-TYPE\": \"application/x-www-form-urlencoded\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"CACHE-CONTROL\": \"max-age=0\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/company/\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 6 - } -}, -{ - "model": "silk.request", - "pk": "0d7008ed-80fb-4feb-bfec-792036874586", - "fields": { - "path": "/api", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T17:05:51.299Z", - "view_name": "rest_framework_swagger.views.SwaggerSchemaView", - "end_time": "2017-03-27T17:05:52.036Z", - "time_taken": 736.49, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"CACHE-CONTROL\": \"max-age=0\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "0dd96ff3-9801-47bd-8d52-54418ec9ac65", - "fields": { - "path": "/admin/core/vacancy/add/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:33:18.627Z", - "view_name": "admin:core_vacancy_add", - "end_time": "2017-03-27T14:33:18.803Z", - "time_taken": 175.116, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"localhost:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://localhost:8000/admin/core/vacancy/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 4 - } -}, -{ - "model": "silk.request", - "pk": "0def295b-e788-4b3e-8214-266149ffd157", - "fields": { - "path": "/api", - "query_params": "{\"format\": \"openapi\"}", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T17:06:14.175Z", - "view_name": "rest_framework_swagger.views.SwaggerSchemaView", - "end_time": "2017-03-27T17:06:14.420Z", - "time_taken": 245.163, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json;charset=utf-8,*/*\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "0e9a89ef-c0f2-4302-a043-bcdafe6016e5", - "fields": { - "path": "/admin/core/student/add/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:21:49.170Z", - "view_name": "admin:core_student_add", - "end_time": "2017-03-27T15:21:49.372Z", - "time_taken": 202.136, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/student/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 5 - } -}, -{ - "model": "silk.request", - "pk": "0fe3e8da-1ff4-48d0-9ff4-3b9ee5029f8f", - "fields": { - "path": "/admin/core/application/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:23:41.511Z", - "view_name": "admin:core_application_changelist", - "end_time": "2017-03-27T15:23:41.693Z", - "time_taken": 182.121, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 5 - } -}, -{ - "model": "silk.request", - "pk": "11e7ad7f-c557-4fe0-9a0a-a7a34df52992", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T17:13:49.980Z", - "view_name": "index", - "end_time": "2017-03-27T17:13:50.041Z", - "time_taken": 61.04, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/2/change/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "129fb7ed-3688-449c-b959-7203d469086b", - "fields": { - "path": "/admin/auth/user/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:52:11.763Z", - "view_name": "admin:auth_user_changelist", - "end_time": "2017-03-27T14:52:11.947Z", - "time_taken": 184.123, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 6 - } -}, -{ - "model": "silk.request", - "pk": "1364d28f-496c-4e2b-8063-e5fa0fdde13f", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:23:11.769Z", - "view_name": "index", - "end_time": "2017-03-27T15:23:11.845Z", - "time_taken": 76.051, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/vacancy/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "163cce20-655e-4b83-871b-43f05df9c2d9", - "fields": { - "path": "/admin/auth/user/3/change/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T17:15:32.292Z", - "view_name": "admin:auth_user_change", - "end_time": "2017-03-27T17:15:32.552Z", - "time_taken": 260.174, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 7 - } -}, -{ - "model": "silk.request", - "pk": "1807e3cc-ce88-49a2-b127-769c972b4e98", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:14:30.484Z", - "view_name": "index", - "end_time": "2017-03-27T15:14:30.542Z", - "time_taken": 58.039, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/student/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "19a5538e-6553-4304-babb-613e6d7a53ea", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:22:40.008Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T15:22:40.119Z", - "time_taken": 111.074, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/supervisor/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "19d86d26-4000-4261-9ad1-6d55ec063ad8", - "fields": { - "path": "/admin/core/student/1/change/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T17:15:42.269Z", - "view_name": "admin:core_student_change", - "end_time": "2017-03-27T17:15:42.554Z", - "time_taken": 285.192, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/student/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 7 - } -}, -{ - "model": "silk.request", - "pk": "19fc08d5-5883-43a0-ac89-e3b50a03573d", - "fields": { - "path": "/api", - "query_params": "{\"format\": \"openapi\"}", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T18:22:17.260Z", - "view_name": "rest_framework_swagger.views.SwaggerSchemaView", - "end_time": "2017-03-27T18:22:17.439Z", - "time_taken": 179.118, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"CACHE-CONTROL\": \"max-age=0\", \"ACCEPT\": \"application/json;charset=utf-8,*/*\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "1a1d8f6a-127e-4703-a67c-571b332d20f6", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:22:40.417Z", - "view_name": "index", - "end_time": "2017-03-27T15:22:40.540Z", - "time_taken": 123.081, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/supervisor/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "1ac76b97-c801-4f6d-92f4-2bf46c7d8028", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:22:54.660Z", - "view_name": "index", - "end_time": "2017-03-27T15:22:54.726Z", - "time_taken": 66.044, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "1b3bdb15-0dbe-494b-8f5f-bd562ce8464f", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:22:03.526Z", - "view_name": "index", - "end_time": "2017-03-27T15:22:03.605Z", - "time_taken": 79.052, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "1c6c07ac-9b30-4cfb-ba35-ac77fafaf59b", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:53:00.496Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T14:53:00.693Z", - "time_taken": 197.132, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "1ce5db39-e66d-43fb-a619-96fbd6480be8", - "fields": { - "path": "/api/students/4/bookmarked-vacancies/", - "query_params": "", - "raw_body": "{\n\"vacancy_id\":1\n}", - "body": "{\n \"vacancy_id\": 1\n}", - "method": "POST", - "start_time": "2017-03-27T17:12:01.427Z", - "view_name": "student-bookmarked-vacancies", - "end_time": "2017-03-27T17:12:01.757Z", - "time_taken": 330.221, - "encoded_headers": "{\"CONTENT-LENGTH\": \"18\", \"CONTENT-TYPE\": \"application/json\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"X-CSRFTOKEN\": \"w7I4GVUoJw5EhYHLdxW87sAh8JrM4RufVdPTSrMjwtg3E6JdWYrAZ9h16ExBoRq4\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 4 - } -}, -{ - "model": "silk.request", - "pk": "1d261d75-a829-40c8-8efb-77bb74497a8d", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:33:15.547Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T14:33:15.735Z", - "time_taken": 187.124, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"localhost:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://localhost:8000/admin/core/vacancy/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "1d5d0c23-fd3f-44da-9141-f0ed95bb2803", - "fields": { - "path": "/admin/auth/user/add/", - "query_params": "", - "raw_body": "------WebKitFormBoundaryRA39vA852Bibeydw\r\nContent-Disposition: form-data; name=\"csrfmiddlewaretoken\"\r\n\r\nPEUvnqz9G8DxJstbJ4QOkREXN28uKTsPeK1kzWr4t5OW6AvDsvlgcylHLXej4ToE\r\n------WebKitFormBoundaryRA39vA852Bibeydw\r\nContent-Disposition: form-data; name=\"username\"\r\n\r\nfarhan\r\n------WebKitFormBoundaryRA39vA852Bibeydw\r\nContent-Disposition: form-data; name=\"password1\"\r\n\r\naan991aan991\r\n------WebKitFormBoundaryRA39vA852Bibeydw\r\nContent-Disposition: form-data; name=\"password2\"\r\n\r\naan991aan991\r\n------WebKitFormBoundaryRA39vA852Bibeydw\r\nContent-Disposition: form-data; name=\"_save\"\r\n\r\nSave\r\n------WebKitFormBoundaryRA39vA852Bibeydw--\r\n", - "body": "{\n \"_save\": [\n \"Save\"\n ],\n \"csrfmiddlewaretoken\": [\n \"PEUvnqz9G8DxJstbJ4QOkREXN28uKTsPeK1kzWr4t5OW6AvDsvlgcylHLXej4ToE\"\n ],\n \"password1\": [\n \"aan991aan991\"\n ],\n \"password2\": [\n \"aan991aan991\"\n ],\n \"username\": [\n \"farhan\"\n ]\n}", - "method": "POST", - "start_time": "2017-03-27T14:52:34.613Z", - "view_name": "admin:auth_user_add", - "end_time": "2017-03-27T14:52:34.790Z", - "time_taken": 177.119, - "encoded_headers": "{\"CONTENT-LENGTH\": \"627\", \"CONTENT-TYPE\": \"multipart/form-data; boundary=----WebKitFormBoundaryRA39vA852Bibeydw\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"CACHE-CONTROL\": \"max-age=0\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 3 - } -}, -{ - "model": "silk.request", - "pk": "1db01b33-3c75-482d-aa0b-43c24e5de1c7", - "fields": { - "path": "/admin/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:30:55.800Z", - "view_name": "admin:index", - "end_time": "2017-03-27T15:30:56.026Z", - "time_taken": 226.151, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 3 - } -}, -{ - "model": "silk.request", - "pk": "1e096140-97c3-4d48-8a98-ccdd0fb556ac", - "fields": { - "path": "/admin/core/application/add/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:23:44.146Z", - "view_name": "admin:core_application_add", - "end_time": "2017-03-27T15:23:44.318Z", - "time_taken": 172.114, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/application/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 5 - } -}, -{ - "model": "silk.request", - "pk": "1e1f4836-7709-404b-b61a-a1ffb0581a54", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:33:57.964Z", - "view_name": "index", - "end_time": "2017-03-27T14:33:58.040Z", - "time_taken": 76.05, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"localhost:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://localhost:8000/admin/core/company/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "1e4997c4-baf7-439b-922d-182b05c5502a", - "fields": { - "path": "/admin/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:23:38.195Z", - "view_name": "admin:index", - "end_time": "2017-03-27T15:23:38.331Z", - "time_taken": 136.086, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/vacancy/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 3 - } -}, -{ - "model": "silk.request", - "pk": "203f7672-48e0-4745-8bd1-1d46567febf2", - "fields": { - "path": "/admin/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:53:46.305Z", - "view_name": "admin:index", - "end_time": "2017-03-27T14:53:46.446Z", - "time_taken": 141.093, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/3/change/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 3 - } -}, -{ - "model": "silk.request", - "pk": "20a1e1ca-292c-457f-8c2b-e51f4ed7d3af", - "fields": { - "path": "/admin/core/supervisor/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:22:10.950Z", - "view_name": "admin:core_supervisor_changelist", - "end_time": "2017-03-27T15:22:11.135Z", - "time_taken": 185.124, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 5 - } -}, -{ - "model": "silk.request", - "pk": "20ebe021-9d8e-4eb1-8711-65c590fa3a1e", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:54:47.191Z", - "view_name": "index", - "end_time": "2017-03-27T14:54:47.285Z", - "time_taken": 94.063, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "215eb497-f1df-4710-a99f-87a9aa6d9dfa", - "fields": { - "path": "/api/vacancies/", - "query_params": "{\"page\": \"1\"}", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T18:23:55.707Z", - "view_name": "vacancy-list", - "end_time": "2017-03-27T18:23:55.850Z", - "time_taken": 143.095, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"X-CSRFTOKEN\": \"MfwebqhdM34eyB1knQEC5qRuV5zGvx79blD3nW98z0fDVJ3M6h94X7yeT0FvPx3Y\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 5 - } -}, -{ - "model": "silk.request", - "pk": "21e26479-6a89-4b52-955d-c213d1647586", - "fields": { - "path": "/admin/core/supervisor/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:22:39.663Z", - "view_name": "admin:core_supervisor_changelist", - "end_time": "2017-03-27T15:22:39.869Z", - "time_taken": 206.137, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"CACHE-CONTROL\": \"max-age=0\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/supervisor/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 5 - } -}, -{ - "model": "silk.request", - "pk": "221da8aa-9982-4c19-865f-8fee4b5308d0", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:30:56.227Z", - "view_name": "index", - "end_time": "2017-03-27T15:30:56.285Z", - "time_taken": 58.039, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "23ad71c9-fe4e-4ef3-bd2f-d1b14f138f29", - "fields": { - "path": "/admin/auth/user/2/change/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:57:04.553Z", - "view_name": "admin:auth_user_change", - "end_time": "2017-03-27T15:57:04.842Z", - "time_taken": 288.192, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 8 - } -}, -{ - "model": "silk.request", - "pk": "23da5a5a-2791-47ec-9f38-824cd6ed8d5e", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:52:22.467Z", - "view_name": "index", - "end_time": "2017-03-27T14:52:22.550Z", - "time_taken": 83.054, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "23f41d67-a675-4ec1-8065-b6efed7133e7", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:52:18.699Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T14:52:18.799Z", - "time_taken": 100.067, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "245bf2e0-71b9-4dec-996a-b890cc9e41d3", - "fields": { - "path": "/api/students/1/bookmarked-vacancies/", - "query_params": "", - "raw_body": "yhayhayha", - "body": "yhayhayha", - "method": "POST", - "start_time": "2017-03-27T15:42:13.286Z", - "view_name": "student-bookmarked-vacancies", - "end_time": "2017-03-27T15:42:13.366Z", - "time_taken": 80.054, - "encoded_headers": "{\"CONTENT-LENGTH\": \"9\", \"CONTENT-TYPE\": \"application/json\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"X-CSRFTOKEN\": \"jq91BuF5e5R7SjMFRc2TNfvWU8lDO6wyIwgQN0x0122wfrO7ADxlFWcGS3rs86sn\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "25180dbf-2083-4a9a-a3da-174ffbb7213a", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:21:42.505Z", - "view_name": "index", - "end_time": "2017-03-27T15:21:42.570Z", - "time_taken": 65.043, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "25d5da77-88d4-4c4e-b86e-dac8da6337c0", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:56:58.730Z", - "view_name": "index", - "end_time": "2017-03-27T15:56:58.809Z", - "time_taken": 79.053, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "26f89ffa-8e28-43e5-b7d0-ccd322afb002", - "fields": { - "path": "/admin/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:22:54.373Z", - "view_name": "admin:index", - "end_time": "2017-03-27T15:22:54.511Z", - "time_taken": 138.092, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/supervisor/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 3 - } -}, -{ - "model": "silk.request", - "pk": "2813ca7c-e78e-44b5-9011-54baf7129682", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:57:03.720Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T14:57:03.872Z", - "time_taken": 152.102, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/vacancy/add/?_to_field=id&_popup=1\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "29ceec2e-a173-4592-83de-05f6ab2cb8f5", - "fields": { - "path": "/admin/core/company/2/change/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T17:18:02.161Z", - "view_name": "admin:core_company_change", - "end_time": "2017-03-27T17:18:02.354Z", - "time_taken": 193.128, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/company/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 5 - } -}, -{ - "model": "silk.request", - "pk": "29fdb262-174c-4e28-953d-94819f8b09d6", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:23:11.413Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T15:23:11.512Z", - "time_taken": 99.066, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/vacancy/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "2ad18529-c45b-4cd8-8e86-25dcfe2082d4", - "fields": { - "path": "/admin/core/company/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:33:57.609Z", - "view_name": "admin:core_company_changelist", - "end_time": "2017-03-27T14:33:57.795Z", - "time_taken": 186.124, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"localhost:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://localhost:8000/admin/core/company/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 5 - } -}, -{ - "model": "silk.request", - "pk": "2b21a674-7e8b-4dfe-ab7d-5b2a3e22265e", - "fields": { - "path": "/admin/core/student/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:55:53.929Z", - "view_name": "admin:core_student_changelist", - "end_time": "2017-03-27T14:55:54.221Z", - "time_taken": 292.195, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 5 - } -}, -{ - "model": "silk.request", - "pk": "2b739563-68b9-418a-8f0f-bd8752914512", - "fields": { - "path": "/admin/core/student/add/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:14:29.764Z", - "view_name": "admin:core_student_add", - "end_time": "2017-03-27T15:14:29.983Z", - "time_taken": 219.147, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/student/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 5 - } -}, -{ - "model": "silk.request", - "pk": "2d83b6c4-f5c0-4bc6-a6d7-90873b98a938", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:54:46.903Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T14:54:47.020Z", - "time_taken": 117.075, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "2ec2759f-7662-4b33-aa63-9c73b01d5a34", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:23:41.811Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T15:23:41.936Z", - "time_taken": 125.084, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/application/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "2f6a6a58-a81d-44ab-9a2f-8c84216e88c4", - "fields": { - "path": "/api/students/4/bookmarked-vacancies/", - "query_params": "", - "raw_body": "[\n {\n \"id\": 1,\n \"verified\": false,\n \"open_time\": \"2017-03-27T15:23:20Z\",\n \"close_time\": \"2017-03-27T15:23:22Z\",\n \"company\": 2\n }\n]", - "body": "[\n {\n \"close_time\": \"2017-03-27T15:23:22Z\",\n \"company\": 2,\n \"id\": 1,\n \"open_time\": \"2017-03-27T15:23:20Z\",\n \"verified\": false\n }\n]", - "method": "POST", - "start_time": "2017-03-27T15:57:23.346Z", - "view_name": "student-bookmarked-vacancies", - "end_time": "2017-03-27T15:57:23.515Z", - "time_taken": 169.114, - "encoded_headers": "{\"CONTENT-LENGTH\": \"147\", \"CONTENT-TYPE\": \"application/json\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"X-CSRFTOKEN\": \"jq91BuF5e5R7SjMFRc2TNfvWU8lDO6wyIwgQN0x0122wfrO7ADxlFWcGS3rs86sn\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "306bb360-adbc-410e-9e92-27c719135373", - "fields": { - "path": "/api", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:30:58.420Z", - "view_name": "rest_framework_swagger.views.SwaggerSchemaView", - "end_time": "2017-03-27T15:30:58.835Z", - "time_taken": 415.277, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "30c60569-c182-44fa-bf5f-de1a6c56f4a1", - "fields": { - "path": "/api/vacancies/", - "query_params": "{\"page\": \"1\"}", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:54:56.231Z", - "view_name": "vacancy-list", - "end_time": "2017-03-27T15:54:56.455Z", - "time_taken": 223.15, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"X-CSRFTOKEN\": \"jq91BuF5e5R7SjMFRc2TNfvWU8lDO6wyIwgQN0x0122wfrO7ADxlFWcGS3rs86sn\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 3 - } -}, -{ - "model": "silk.request", - "pk": "31a191a8-875a-4879-ad6f-eda4ac78e205", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T17:13:41.631Z", - "view_name": "index", - "end_time": "2017-03-27T17:13:41.703Z", - "time_taken": 72.05, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "32d06d39-a94a-4154-8f38-1a4f4eee5817", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:33:37.250Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T14:33:37.404Z", - "time_taken": 154.103, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"localhost:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://localhost:8000/admin/core/company/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "32dad80d-8c1a-4d75-96ae-8cb1811fcd3f", - "fields": { - "path": "/admin/core/student/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:56:26.470Z", - "view_name": "admin:core_student_changelist", - "end_time": "2017-03-27T14:56:26.619Z", - "time_taken": 149.1, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 5 - } -}, -{ - "model": "silk.request", - "pk": "33a72dd2-78e7-43cc-b777-a352a3ea9ef8", - "fields": { - "path": "/admin/core/application/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:23:52.428Z", - "view_name": "admin:core_application_changelist", - "end_time": "2017-03-27T15:23:52.653Z", - "time_taken": 224.15, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"CACHE-CONTROL\": \"max-age=0\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/application/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 5 - } -}, -{ - "model": "silk.request", - "pk": "349879b1-680a-43cc-9144-4332ff78f9ac", - "fields": { - "path": "/api/students/4/bookmarked-vacancies/", - "query_params": "", - "raw_body": "{\n \"vacancy_id\": 1\n}", - "body": "{\n \"vacancy_id\": 1\n}", - "method": "POST", - "start_time": "2017-03-27T16:07:03.757Z", - "view_name": "student-bookmarked-vacancies", - "end_time": "2017-03-27T16:07:04.049Z", - "time_taken": 292.195, - "encoded_headers": "{\"CONTENT-LENGTH\": \"23\", \"CONTENT-TYPE\": \"application/json\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"X-CSRFTOKEN\": \"jq91BuF5e5R7SjMFRc2TNfvWU8lDO6wyIwgQN0x0122wfrO7ADxlFWcGS3rs86sn\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 4 - } -}, -{ - "model": "silk.request", - "pk": "369e1c8c-41e9-434d-b4ee-12066a0eea2c", - "fields": { - "path": "/admin/core/company/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:33:37.023Z", - "view_name": "admin:core_company_changelist", - "end_time": "2017-03-27T14:33:37.176Z", - "time_taken": 153.102, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"localhost:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://localhost:8000/admin/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 5 - } -}, -{ - "model": "silk.request", - "pk": "36c80b59-5c19-49c9-bb78-0bc331cc9ece", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:53:56.741Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T14:53:56.833Z", - "time_taken": 92.063, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "37523ba5-773f-4f0e-a6a9-4c465c61b235", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:21:45.341Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T15:21:45.485Z", - "time_taken": 144.096, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/student/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "379ad3a5-58a2-47c7-9748-d2bb57251162", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:21:59.353Z", - "view_name": "index", - "end_time": "2017-03-27T15:21:59.443Z", - "time_taken": 90.06, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/student/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "37dd4b34-7188-4721-bc35-a84a70e00284", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:58:06.362Z", - "view_name": "index", - "end_time": "2017-03-27T14:58:06.435Z", - "time_taken": 73.049, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/student/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "398ca802-79f5-45fd-897e-067e60d5b8b7", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T18:16:21.511Z", - "view_name": "index", - "end_time": "2017-03-27T18:16:21.600Z", - "time_taken": 89.059, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "3aae6f5c-5e82-4d8a-889e-f09e4fa009fa", - "fields": { - "path": "/api/students/3/bookmarked-vacancies/", - "query_params": "", - "raw_body": "{\n \"company\": 2,\n \"verified\": false,\n \"open_time\": \"2017-03-27T15:23:20Z\",\n \"close_time\": \"2017-03-27T15:23:22Z\"\n }", - "body": "{\n \"close_time\": \"2017-03-27T15:23:22Z\",\n \"company\": 2,\n \"open_time\": \"2017-03-27T15:23:20Z\",\n \"verified\": false\n}", - "method": "POST", - "start_time": "2017-03-27T15:51:22.480Z", - "view_name": "student-bookmarked-vacancies", - "end_time": "2017-03-27T15:51:22.666Z", - "time_taken": 186.125, - "encoded_headers": "{\"CONTENT-LENGTH\": \"128\", \"CONTENT-TYPE\": \"application/json\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"X-CSRFTOKEN\": \"jq91BuF5e5R7SjMFRc2TNfvWU8lDO6wyIwgQN0x0122wfrO7ADxlFWcGS3rs86sn\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "3bc5dce1-c38c-4853-b8da-b5f8f1f1eca9", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:55:56.915Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T14:55:57.001Z", - "time_taken": 86.057, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/student/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "3c1b326b-8bb8-49d9-a20e-74391a050945", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:53:17.152Z", - "view_name": "index", - "end_time": "2017-03-27T14:53:17.244Z", - "time_taken": 92.062, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "3c345fde-221f-429e-9532-478f2318b170", - "fields": { - "path": "/admin/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:56:21.739Z", - "view_name": "admin:index", - "end_time": "2017-03-27T14:56:21.870Z", - "time_taken": 131.087, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/student/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 3 - } -}, -{ - "model": "silk.request", - "pk": "3c54140c-a49e-4946-927c-44f8373a995f", - "fields": { - "path": "/api/users/", - "query_params": "{\"page\": \"1\"}", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T18:19:59.736Z", - "view_name": "user-list", - "end_time": "2017-03-27T18:19:59.915Z", - "time_taken": 179.122, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"X-CSRFTOKEN\": \"3Cc7mFQwJOdJAN0gvVysnqrm86zRID0SsIjWybIrwLo8XV2Iem3Uf78661FG2DWH\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 3 - } -}, -{ - "model": "silk.request", - "pk": "3d85b9a4-3b8f-42f0-8c39-aa257dc5088f", - "fields": { - "path": "/api", - "query_params": "{\"format\": \"openapi\"}", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:47:18.572Z", - "view_name": "rest_framework_swagger.views.SwaggerSchemaView", - "end_time": "2017-03-27T14:47:18.768Z", - "time_taken": 196.13, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json;charset=utf-8,*/*\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"AUTHORIZATION\": \"Basic a2FwZTp5dWtjYXJpa2FwZQ==\", \"X-CSRFTOKEN\": \"mi2B0ZnaNzNT3M62q5I53BIkDjUzCsLVNgVdnjJWnmpcP4wdiyQdr2zDaHlkeVRb\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 1 - } -}, -{ - "model": "silk.request", - "pk": "3e276fe6-51d2-4c26-896e-1f89b00bf277", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:33:19.874Z", - "view_name": "index", - "end_time": "2017-03-27T14:33:19.942Z", - "time_taken": 68.045, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"localhost:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://localhost:8000/admin/core/vacancy/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "3e32712f-74c9-4ea6-b12f-1a8d1b17748a", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:52:06.264Z", - "view_name": "index", - "end_time": "2017-03-27T14:52:06.338Z", - "time_taken": 74.049, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "3f70cfc7-2eb6-4ca0-bb1e-357de168cce2", - "fields": { - "path": "/admin/core/company/", - "query_params": "", - "raw_body": "csrfmiddlewaretoken=4RayHctwJa11rvBe6ZfaKXnk3oKd93wktXhnTIlrw7cqODDGPqKCCE441jQ2t3s9&_selected_action=1&action=delete_selected&post=yes", - "body": "{\n \"_selected_action\": [\n \"1\"\n ],\n \"action\": [\n \"delete_selected\"\n ],\n \"csrfmiddlewaretoken\": [\n \"4RayHctwJa11rvBe6ZfaKXnk3oKd93wktXhnTIlrw7cqODDGPqKCCE441jQ2t3s9\"\n ],\n \"post\": [\n \"yes\"\n ]\n}", - "method": "POST", - "start_time": "2017-03-27T14:55:26.455Z", - "view_name": "admin:core_company_changelist", - "end_time": "2017-03-27T14:55:26.583Z", - "time_taken": 128.085, - "encoded_headers": "{\"CONTENT-LENGTH\": \"135\", \"CONTENT-TYPE\": \"application/x-www-form-urlencoded\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"CACHE-CONTROL\": \"max-age=0\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/company/\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 10 - } -}, -{ - "model": "silk.request", - "pk": "40bd37eb-ae05-4dbd-9b6e-6d3c88e1b9ee", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:55:24.925Z", - "view_name": "index", - "end_time": "2017-03-27T14:55:24.990Z", - "time_taken": 65.044, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/company/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "41e0ea01-0962-4882-b829-399fe0299b9c", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:16:22.595Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T15:16:22.719Z", - "time_taken": 124.084, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/student/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "41fac1fb-3e23-401d-a698-9714b1630c86", - "fields": { - "path": "/admin/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:51:56.156Z", - "view_name": "admin:index", - "end_time": "2017-03-27T14:51:56.283Z", - "time_taken": 127.084, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "4201c2f9-f5f3-4940-9ebe-353dd87a8aa1", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T17:17:48.871Z", - "view_name": "index", - "end_time": "2017-03-27T17:17:48.938Z", - "time_taken": 67.043, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/vacancy/1/change/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "42837a28-d01e-428b-943d-151927d49c06", - "fields": { - "path": "/api/students/", - "query_params": "{\"page\": \"1\"}", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T18:20:20.249Z", - "view_name": "student-list", - "end_time": "2017-03-27T18:20:20.813Z", - "time_taken": 563.376, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"X-CSRFTOKEN\": \"3Cc7mFQwJOdJAN0gvVysnqrm86zRID0SsIjWybIrwLo8XV2Iem3Uf78661FG2DWH\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 5 - } -}, -{ - "model": "silk.request", - "pk": "43a18821-67d9-4c9a-8615-e7f8102edd78", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T17:15:37.892Z", - "view_name": "index", - "end_time": "2017-03-27T17:15:37.970Z", - "time_taken": 78.053, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "4457e90b-4047-4101-ac15-1ebe431cd0de", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:53:40.197Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T14:53:40.322Z", - "time_taken": 125.082, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/3/change/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "45a5666e-75da-46d6-931f-9ae36551ed41", - "fields": { - "path": "/admin/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:22:09.423Z", - "view_name": "admin:index", - "end_time": "2017-03-27T15:22:09.576Z", - "time_taken": 153.103, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/student/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 3 - } -}, -{ - "model": "silk.request", - "pk": "45fb5123-11cf-489a-86ed-250fb2b17bf9", - "fields": { - "path": "/admin/auth/user/4/change/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T17:15:28.336Z", - "view_name": "admin:auth_user_change", - "end_time": "2017-03-27T17:15:28.559Z", - "time_taken": 223.149, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 7 - } -}, -{ - "model": "silk.request", - "pk": "466a4c19-dd4a-415d-a626-212aba832f53", - "fields": { - "path": "/api/students/4/bookmarked-vacancies/", - "query_params": "", - "raw_body": "{\n \"id\": 1,\n \"verified\": false,\n \"open_time\": \"2017-03 27T15:23:20Z\",\n \"close_time\": \"2017-03-27T15:23:22Z\",\n \"company\": 2\n}", - "body": "{\n \"close_time\": \"2017-03-27T15:23:22Z\",\n \"company\": 2,\n \"id\": 1,\n \"open_time\": \"2017-03 27T15:23:20Z\",\n \"verified\": false\n}", - "method": "POST", - "start_time": "2017-03-27T16:02:53.663Z", - "view_name": "student-bookmarked-vacancies", - "end_time": "2017-03-27T16:02:53.989Z", - "time_taken": 326.219, - "encoded_headers": "{\"CONTENT-LENGTH\": \"139\", \"CONTENT-TYPE\": \"application/json\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"X-CSRFTOKEN\": \"jq91BuF5e5R7SjMFRc2TNfvWU8lDO6wyIwgQN0x0122wfrO7ADxlFWcGS3rs86sn\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "471a4afb-bc3c-4eba-8397-a7f47c5ffe1a", - "fields": { - "path": "/api/students/4/bookmarked-vacancies/", - "query_params": "", - "raw_body": "{\n \"vacancy_id\": 1\n}", - "body": "{\n \"vacancy_id\": 1\n}", - "method": "POST", - "start_time": "2017-03-27T16:50:05.472Z", - "view_name": "student-bookmarked-vacancies", - "end_time": "2017-03-27T16:50:08.165Z", - "time_taken": 2692.798, - "encoded_headers": "{\"CONTENT-LENGTH\": \"23\", \"CONTENT-TYPE\": \"application/json\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"X-CSRFTOKEN\": \"jq91BuF5e5R7SjMFRc2TNfvWU8lDO6wyIwgQN0x0122wfrO7ADxlFWcGS3rs86sn\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 4 - } -}, -{ - "model": "silk.request", - "pk": "474965a4-6b40-4743-ba55-7583d3f1c013", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T17:15:33.021Z", - "view_name": "index", - "end_time": "2017-03-27T17:15:33.096Z", - "time_taken": 75.049, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/3/change/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "47736298-9bc2-46a8-addd-0cc9fb2921c3", - "fields": { - "path": "/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:32:24.164Z", - "view_name": "index", - "end_time": "2017-03-27T14:32:24.299Z", - "time_taken": 135.088, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"localhost:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "48414e6e-676a-4fc1-b468-03ff7de2e324", - "fields": { - "path": "/admin/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T17:13:34.523Z", - "view_name": "admin:index", - "end_time": "2017-03-27T17:13:35.492Z", - "time_taken": 968.646, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 3 - } -}, -{ - "model": "silk.request", - "pk": "484cfe5c-b960-4825-a056-c012416b2bef", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:53:40.604Z", - "view_name": "index", - "end_time": "2017-03-27T14:53:40.689Z", - "time_taken": 85.056, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/3/change/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "497b6136-0c5b-4517-864f-7dce8c9a9466", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:52:55.884Z", - "view_name": "index", - "end_time": "2017-03-27T14:52:55.950Z", - "time_taken": 66.043, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "4a0b6fb1-6e00-4d51-983f-cacb9020f4d4", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:52:50.499Z", - "view_name": "index", - "end_time": "2017-03-27T14:52:50.574Z", - "time_taken": 75.051, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "4ab833ac-d756-4bce-936c-3cfcc3b6f9f3", - "fields": { - "path": "/api", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T18:16:19.886Z", - "view_name": "rest_framework_swagger.views.SwaggerSchemaView", - "end_time": "2017-03-27T18:16:20.664Z", - "time_taken": 778.519, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "4b5d1449-118f-44cc-8013-061d1911675b", - "fields": { - "path": "/admin/auth/user/3/change/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:53:39.777Z", - "view_name": "admin:auth_user_change", - "end_time": "2017-03-27T14:53:40.043Z", - "time_taken": 265.177, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"CACHE-CONTROL\": \"max-age=0\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 7 - } -}, -{ - "model": "silk.request", - "pk": "4d09d335-eb1f-404b-91db-050904a6f3ce", - "fields": { - "path": "/api/students/2/bookmarked-vacancies/", - "query_params": "", - "raw_body": "{\n \"company\": 2,\n \"verified\": false,\n \"open_time\": \"2017-03-27T15:23:20Z\",\n \"close_time\": \"2017-03-27T15:23:22Z\"\n }", - "body": "{\n \"close_time\": \"2017-03-27T15:23:22Z\",\n \"company\": 2,\n \"open_time\": \"2017-03-27T15:23:20Z\",\n \"verified\": false\n}", - "method": "POST", - "start_time": "2017-03-27T15:46:14.679Z", - "view_name": "student-bookmarked-vacancies", - "end_time": "2017-03-27T15:46:14.842Z", - "time_taken": 162.108, - "encoded_headers": "{\"CONTENT-LENGTH\": \"128\", \"CONTENT-TYPE\": \"application/json\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"X-CSRFTOKEN\": \"jq91BuF5e5R7SjMFRc2TNfvWU8lDO6wyIwgQN0x0122wfrO7ADxlFWcGS3rs86sn\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "4db69323-ae4a-4b1a-9bf6-bf7cbe7d563f", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:55:27.310Z", - "view_name": "index", - "end_time": "2017-03-27T14:55:27.380Z", - "time_taken": 70.046, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/company/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "4e87e2c8-37bb-4e18-ae40-5fd2f5c2cf4d", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:53:16.854Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T14:53:16.939Z", - "time_taken": 85.056, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "4ea0e6a7-d897-4b22-8f01-7f1e3c85a65d", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:53:00.869Z", - "view_name": "index", - "end_time": "2017-03-27T14:53:00.937Z", - "time_taken": 68.044, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "508b3b0d-56ed-4cdf-a1fb-435c2b71afd5", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:23:38.453Z", - "view_name": "index", - "end_time": "2017-03-27T15:23:38.529Z", - "time_taken": 76.051, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "50dc6132-bfbf-4eeb-acad-4efcf6b8c585", - "fields": { - "path": "/admin/auth/user/4/change/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:55:09.461Z", - "view_name": "admin:auth_user_change", - "end_time": "2017-03-27T14:55:09.737Z", - "time_taken": 276.185, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"CACHE-CONTROL\": \"max-age=0\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 7 - } -}, -{ - "model": "silk.request", - "pk": "51cae9ae-4ec3-4855-a89d-f4c888f9df04", - "fields": { - "path": "/api/students/4/bookmarked-vacancies/", - "query_params": "", - "raw_body": "{\n \"id\": 1,\n \"verified\": false,\n \"open_time\": \"2017-03 27T15:23:20Z\",\n \"close_time\": \"2017-03-27T15:23:22Z\",\n \"company\": 2\n}", - "body": "{\n \"close_time\": \"2017-03-27T15:23:22Z\",\n \"company\": 2,\n \"id\": 1,\n \"open_time\": \"2017-03 27T15:23:20Z\",\n \"verified\": false\n}", - "method": "POST", - "start_time": "2017-03-27T15:57:47.267Z", - "view_name": "student-bookmarked-vacancies", - "end_time": "2017-03-27T15:57:47.431Z", - "time_taken": 164.11, - "encoded_headers": "{\"CONTENT-LENGTH\": \"139\", \"CONTENT-TYPE\": \"application/json\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"X-CSRFTOKEN\": \"jq91BuF5e5R7SjMFRc2TNfvWU8lDO6wyIwgQN0x0122wfrO7ADxlFWcGS3rs86sn\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "5230b0f5-788a-4d12-8708-08a1e5cefce5", - "fields": { - "path": "/admin/core/company/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:33:51.798Z", - "view_name": "admin:core_company_changelist", - "end_time": "2017-03-27T14:33:51.989Z", - "time_taken": 191.127, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"localhost:8000\", \"CONNECTION\": \"keep-alive\", \"CACHE-CONTROL\": \"max-age=0\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://localhost:8000/admin/core/company/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 5 - } -}, -{ - "model": "silk.request", - "pk": "5271f47b-ef74-4410-8fa3-10c4ce1b2e98", - "fields": { - "path": "/admin/core/student/add/", - "query_params": "", - "raw_body": "------WebKitFormBoundaryMFxeQ3XjQAUNMLAC\r\nContent-Disposition: form-data; name=\"csrfmiddlewaretoken\"\r\n\r\nE62VpvaiQj1qPZUDSap3fwntTS3M4NTd3c9KB12dDgcPc7W5BBUv7d4dRN9BoNP2\r\n------WebKitFormBoundaryMFxeQ3XjQAUNMLAC\r\nContent-Disposition: form-data; name=\"user\"\r\n\r\n2\r\n------WebKitFormBoundaryMFxeQ3XjQAUNMLAC\r\nContent-Disposition: form-data; name=\"npm\"\r\n\r\n1406572321\r\n------WebKitFormBoundaryMFxeQ3XjQAUNMLAC\r\nContent-Disposition: form-data; name=\"resume\"; filename=\"\"\r\nContent-Type: application/octet-stream\r\n\r\n\r\n------WebKitFormBoundaryMFxeQ3XjQAUNMLAC\r\nContent-Disposition: form-data; name=\"phone_number\"\r\n\r\n\r\n------WebKitFormBoundaryMFxeQ3XjQAUNMLAC\r\nContent-Disposition: form-data; name=\"_save\"\r\n\r\nSave\r\n------WebKitFormBoundaryMFxeQ3XjQAUNMLAC--\r\n", - "body": "{\n \"_save\": [\n \"Save\"\n ],\n \"csrfmiddlewaretoken\": [\n \"E62VpvaiQj1qPZUDSap3fwntTS3M4NTd3c9KB12dDgcPc7W5BBUv7d4dRN9BoNP2\"\n ],\n \"npm\": [\n \"1406572321\"\n ],\n \"phone_number\": [\n \"\"\n ],\n \"resume\": [\n \"\"\n ],\n \"user\": [\n \"2\"\n ]\n}", - "method": "POST", - "start_time": "2017-03-27T15:21:58.444Z", - "view_name": "admin:core_student_add", - "end_time": "2017-03-27T15:21:58.636Z", - "time_taken": 191.127, - "encoded_headers": "{\"CONTENT-LENGTH\": \"747\", \"CONTENT-TYPE\": \"multipart/form-data; boundary=----WebKitFormBoundaryMFxeQ3XjQAUNMLAC\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"CACHE-CONTROL\": \"max-age=0\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/student/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 7 - } -}, -{ - "model": "silk.request", - "pk": "52795346-f5d0-4cf5-a883-b377a260b95d", - "fields": { - "path": "/admin/auth/user/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:52:55.331Z", - "view_name": "admin:auth_user_changelist", - "end_time": "2017-03-27T14:52:55.523Z", - "time_taken": 192.127, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 6 - } -}, -{ - "model": "silk.request", - "pk": "538476ed-792a-40ef-ab8a-59383d47a8af", - "fields": { - "path": "/admin/core/company/1/change/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:33:54.175Z", - "view_name": "admin:core_company_change", - "end_time": "2017-03-27T14:33:54.356Z", - "time_taken": 181.121, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"localhost:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://localhost:8000/admin/core/company/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 4 - } -}, -{ - "model": "silk.request", - "pk": "541f40f5-3409-496d-8970-e333aa4efcab", - "fields": { - "path": "/admin/core/company/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:55:26.696Z", - "view_name": "admin:core_company_changelist", - "end_time": "2017-03-27T14:55:26.904Z", - "time_taken": 208.139, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"CACHE-CONTROL\": \"max-age=0\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/company/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 5 - } -}, -{ - "model": "silk.request", - "pk": "5468cdb0-bd42-4723-8589-125424d50c70", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:55:16.940Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T14:55:17.029Z", - "time_taken": 89.06, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/company/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "54a571f4-792d-4e8e-9da8-06e98bb2ad32", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T17:15:30.980Z", - "view_name": "index", - "end_time": "2017-03-27T17:15:31.060Z", - "time_taken": 80.054, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "54dcc720-f8b6-418b-86b5-1456c704352d", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:55:45.436Z", - "view_name": "index", - "end_time": "2017-03-27T14:55:45.533Z", - "time_taken": 97.064, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/company/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "5581e623-456c-494e-9632-ed0a379a6886", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:53:54.339Z", - "view_name": "index", - "end_time": "2017-03-27T14:53:54.403Z", - "time_taken": 64.043, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "55ced51b-69df-4271-9fbc-2af103f92e32", - "fields": { - "path": "/admin/auth/user/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T17:13:40.106Z", - "view_name": "admin:auth_user_changelist", - "end_time": "2017-03-27T17:13:40.908Z", - "time_taken": 802.535, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 6 - } -}, -{ - "model": "silk.request", - "pk": "56046c8e-8186-46f8-93e5-a7b597a98423", - "fields": { - "path": "/api", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T18:29:43.659Z", - "view_name": "rest_framework_swagger.views.SwaggerSchemaView", - "end_time": "2017-03-27T18:29:43.930Z", - "time_taken": 271.181, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "565a9250-4770-4b87-a72e-5463d634999d", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:56:29.321Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T14:56:29.414Z", - "time_taken": 93.062, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/student/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "56d4a802-8642-4f43-922d-29ed8edeb677", - "fields": { - "path": "/admin/auth/user/add/", - "query_params": "", - "raw_body": "------WebKitFormBoundary8m3Y9ajBkAAHiWl4\r\nContent-Disposition: form-data; name=\"csrfmiddlewaretoken\"\r\n\r\nihp8kH4mzRO9onjKfpKO54BCztNeIMxXHnwXwdWhmOZyLvlcYQfgXLimxoT32MtM\r\n------WebKitFormBoundary8m3Y9ajBkAAHiWl4\r\nContent-Disposition: form-data; name=\"username\"\r\n\r\nfarhancorp\r\n------WebKitFormBoundary8m3Y9ajBkAAHiWl4\r\nContent-Disposition: form-data; name=\"password1\"\r\n\r\nfarhancorp123\r\n------WebKitFormBoundary8m3Y9ajBkAAHiWl4\r\nContent-Disposition: form-data; name=\"password2\"\r\n\r\nfarhancorp123\r\n------WebKitFormBoundary8m3Y9ajBkAAHiWl4\r\nContent-Disposition: form-data; name=\"_save\"\r\n\r\nSave\r\n------WebKitFormBoundary8m3Y9ajBkAAHiWl4--\r\n", - "body": "{\n \"_save\": [\n \"Save\"\n ],\n \"csrfmiddlewaretoken\": [\n \"ihp8kH4mzRO9onjKfpKO54BCztNeIMxXHnwXwdWhmOZyLvlcYQfgXLimxoT32MtM\"\n ],\n \"password1\": [\n \"farhancorp123\"\n ],\n \"password2\": [\n \"farhancorp123\"\n ],\n \"username\": [\n \"farhancorp\"\n ]\n}", - "method": "POST", - "start_time": "2017-03-27T14:53:16.605Z", - "view_name": "admin:auth_user_add", - "end_time": "2017-03-27T14:53:16.768Z", - "time_taken": 163.11, - "encoded_headers": "{\"CONTENT-LENGTH\": \"633\", \"CONTENT-TYPE\": \"multipart/form-data; boundary=----WebKitFormBoundary8m3Y9ajBkAAHiWl4\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"CACHE-CONTROL\": \"max-age=0\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 3 - } -}, -{ - "model": "silk.request", - "pk": "56db7b1d-e0ab-483a-a84b-fa50dae761b7", - "fields": { - "path": "/api", - "query_params": "{\"format\": \"openapi\"}", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T17:13:32.538Z", - "view_name": "rest_framework_swagger.views.SwaggerSchemaView", - "end_time": "2017-03-27T17:13:32.673Z", - "time_taken": 135.091, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json;charset=utf-8,*/*\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "57ce7e2d-561c-447b-a337-1b11b65a169d", - "fields": { - "path": "/admin/auth/user/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T17:15:02.747Z", - "view_name": "admin:auth_user_changelist", - "end_time": "2017-03-27T17:15:02.957Z", - "time_taken": 210.141, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 6 - } -}, -{ - "model": "silk.request", - "pk": "58d82982-284d-458b-901f-bc175c938fe1", - "fields": { - "path": "/api/students/1/bookmarked-vacancies/", - "query_params": "", - "raw_body": "[\n {\n \"id\": 1,\n \"verified\": false,\n \"open_time\": \"2017-03-27T15:23:20Z\",\n \"close_time\": \"2017-03-27T15:23:22Z\",\n \"company\": 2\n }\n]", - "body": "[\n {\n \"close_time\": \"2017-03-27T15:23:22Z\",\n \"company\": 2,\n \"id\": 1,\n \"open_time\": \"2017-03-27T15:23:20Z\",\n \"verified\": false\n }\n]", - "method": "POST", - "start_time": "2017-03-27T15:56:04.395Z", - "view_name": "student-bookmarked-vacancies", - "end_time": "2017-03-27T15:56:04.560Z", - "time_taken": 165.109, - "encoded_headers": "{\"CONTENT-LENGTH\": \"147\", \"CONTENT-TYPE\": \"application/json\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"X-CSRFTOKEN\": \"jq91BuF5e5R7SjMFRc2TNfvWU8lDO6wyIwgQN0x0122wfrO7ADxlFWcGS3rs86sn\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "591a7cd0-14f9-4123-b23d-8b20a2037865", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:53:56.941Z", - "view_name": "index", - "end_time": "2017-03-27T14:53:57.007Z", - "time_taken": 66.045, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "5978749e-4754-47ee-b18d-e12924dee357", - "fields": { - "path": "/admin/core/company/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:22:07.407Z", - "view_name": "admin:core_company_changelist", - "end_time": "2017-03-27T15:22:07.646Z", - "time_taken": 238.158, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 5 - } -}, -{ - "model": "silk.request", - "pk": "59e95cae-0d6d-474c-955e-42ab4de1d36c", - "fields": { - "path": "/api", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:46:59.912Z", - "view_name": "rest_framework_swagger.views.SwaggerSchemaView", - "end_time": "2017-03-27T14:47:00.249Z", - "time_taken": 337.224, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"CACHE-CONTROL\": \"max-age=0\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 1 - } -}, -{ - "model": "silk.request", - "pk": "5a24c8ef-12a7-4dab-b868-f831afee6008", - "fields": { - "path": "/api/students/4/bookmarked-vacancies/", - "query_params": "", - "raw_body": "{\n \"vacancy_id\": 1\n}", - "body": "{\n \"vacancy_id\": 1\n}", - "method": "POST", - "start_time": "2017-03-27T16:52:34.444Z", - "view_name": "student-bookmarked-vacancies", - "end_time": "2017-03-27T17:06:14.469Z", - "time_taken": 820024.564, - "encoded_headers": "{\"CONTENT-LENGTH\": \"23\", \"CONTENT-TYPE\": \"application/json\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"X-CSRFTOKEN\": \"jq91BuF5e5R7SjMFRc2TNfvWU8lDO6wyIwgQN0x0122wfrO7ADxlFWcGS3rs86sn\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 4 - } -}, -{ - "model": "silk.request", - "pk": "5b412e8b-0fe2-42e2-96a7-1ce439d819f2", - "fields": { - "path": "/api", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T18:22:16.174Z", - "view_name": "rest_framework_swagger.views.SwaggerSchemaView", - "end_time": "2017-03-27T18:22:16.573Z", - "time_taken": 399.264, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"CACHE-CONTROL\": \"max-age=0\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "5baea9fc-2d19-4ce9-9daa-6911342f79a1", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:55:00.738Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T14:55:00.845Z", - "time_taken": 107.073, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "5d580434-55ac-440e-8b25-41cef00eb6c1", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:14:27.731Z", - "view_name": "index", - "end_time": "2017-03-27T15:14:27.801Z", - "time_taken": 70.047, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/student/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "5d854890-b0c8-449d-b3c1-270673eec6b3", - "fields": { - "path": "/admin/auth/user/add/", - "query_params": "", - "raw_body": "------WebKitFormBoundaryOSiwvmdaO0RdibB8\r\nContent-Disposition: form-data; name=\"csrfmiddlewaretoken\"\r\n\r\neZkZuZmCxEzvUzMo31slaELH58r8tCRND5rOGvexkBKUhHOQMsXN2lsr33xXNCNC\r\n------WebKitFormBoundaryOSiwvmdaO0RdibB8\r\nContent-Disposition: form-data; name=\"username\"\r\n\r\nfarhansuper\r\n------WebKitFormBoundaryOSiwvmdaO0RdibB8\r\nContent-Disposition: form-data; name=\"password1\"\r\n\r\nsuperuser\r\n------WebKitFormBoundaryOSiwvmdaO0RdibB8\r\nContent-Disposition: form-data; name=\"password2\"\r\n\r\nsuperuser\r\n------WebKitFormBoundaryOSiwvmdaO0RdibB8\r\nContent-Disposition: form-data; name=\"_save\"\r\n\r\nSave\r\n------WebKitFormBoundaryOSiwvmdaO0RdibB8--\r\n", - "body": "{\n \"_save\": [\n \"Save\"\n ],\n \"csrfmiddlewaretoken\": [\n \"eZkZuZmCxEzvUzMo31slaELH58r8tCRND5rOGvexkBKUhHOQMsXN2lsr33xXNCNC\"\n ],\n \"password1\": [\n \"superuser\"\n ],\n \"password2\": [\n \"superuser\"\n ],\n \"username\": [\n \"farhansuper\"\n ]\n}", - "method": "POST", - "start_time": "2017-03-27T14:55:09.175Z", - "view_name": "admin:auth_user_add", - "end_time": "2017-03-27T14:55:09.369Z", - "time_taken": 193.126, - "encoded_headers": "{\"CONTENT-LENGTH\": \"626\", \"CONTENT-TYPE\": \"multipart/form-data; boundary=----WebKitFormBoundaryOSiwvmdaO0RdibB8\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"CACHE-CONTROL\": \"max-age=0\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 3 - } -}, -{ - "model": "silk.request", - "pk": "5edf1ead-a791-41e2-a2da-0b8d475b8176", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:23:52.772Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T15:23:52.911Z", - "time_taken": 139.092, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/application/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "5f0019ff-44b1-4877-8094-c2b99c0865e4", - "fields": { - "path": "/api/students/4/bookmarked-vacancies/", - "query_params": "", - "raw_body": "{\n \"vacancy_id\": 1\n}", - "body": "{\n \"vacancy_id\": 1\n}", - "method": "POST", - "start_time": "2017-03-27T16:53:48.485Z", - "view_name": "student-bookmarked-vacancies", - "end_time": "2017-03-27T17:06:14.463Z", - "time_taken": 745977.149, - "encoded_headers": "{\"CONTENT-LENGTH\": \"23\", \"CONTENT-TYPE\": \"application/json\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"X-CSRFTOKEN\": \"jq91BuF5e5R7SjMFRc2TNfvWU8lDO6wyIwgQN0x0122wfrO7ADxlFWcGS3rs86sn\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 4 - } -}, -{ - "model": "silk.request", - "pk": "61cad02f-8c36-4c74-a8a5-a0b3a8cbc903", - "fields": { - "path": "/api/vacancies/", - "query_params": "{\"page\": \"1\"}", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T18:29:54.565Z", - "view_name": "vacancy-list", - "end_time": "2017-03-27T18:29:54.654Z", - "time_taken": 89.059, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"X-CSRFTOKEN\": \"SYWZcncIT65yC4XlmBRf78waj1I6NqX0h43OoT4DG3gXZcZN52mHZPdUhWOV7qTP\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 3 - } -}, -{ - "model": "silk.request", - "pk": "61cdb88b-5504-4a53-aab7-7fb04278e75b", - "fields": { - "path": "/admin/core/student/add/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:55:56.635Z", - "view_name": "admin:core_student_add", - "end_time": "2017-03-27T14:55:56.815Z", - "time_taken": 180.119, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/student/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 5 - } -}, -{ - "model": "silk.request", - "pk": "625261fb-6804-4015-921a-8bb0939d0bb9", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:23:09.086Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T15:23:09.173Z", - "time_taken": 87.059, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/vacancy/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "6346e283-8a7d-41fc-953a-fd0197c3abba", - "fields": { - "path": "/api/students/", - "query_params": "{\"page\": \"1\"}", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T18:24:42.441Z", - "view_name": "student-list", - "end_time": "2017-03-27T18:24:42.561Z", - "time_taken": 120.081, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"X-CSRFTOKEN\": \"MfwebqhdM34eyB1knQEC5qRuV5zGvx79blD3nW98z0fDVJ3M6h94X7yeT0FvPx3Y\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 5 - } -}, -{ - "model": "silk.request", - "pk": "64465212-91ca-420c-864a-69a4d58c6ae3", - "fields": { - "path": "/api/students/1/bookmarked-vacancies/", - "query_params": "", - "raw_body": "{\n \"company\": 2,\n \"verified\": false,\n \"open_time\": \"2017-03-27T15:23:20Z\",\n \"close_time\": \"2017-03-27T15:23:22Z\"\n }", - "body": "{\n \"close_time\": \"2017-03-27T15:23:22Z\",\n \"company\": 2,\n \"open_time\": \"2017-03-27T15:23:20Z\",\n \"verified\": false\n}", - "method": "POST", - "start_time": "2017-03-27T15:46:01.266Z", - "view_name": "student-bookmarked-vacancies", - "end_time": "2017-03-27T15:46:01.432Z", - "time_taken": 165.11, - "encoded_headers": "{\"CONTENT-LENGTH\": \"128\", \"CONTENT-TYPE\": \"application/json\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"X-CSRFTOKEN\": \"jq91BuF5e5R7SjMFRc2TNfvWU8lDO6wyIwgQN0x0122wfrO7ADxlFWcGS3rs86sn\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "65a46d83-3ee3-41fe-9acd-5150f80ebc89", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:14:30.115Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T15:14:30.267Z", - "time_taken": 152.102, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/student/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "66beefa4-17a6-4c0c-88f8-25a1f34be9ef", - "fields": { - "path": "/api/students/4/bookmarked-vacancies/", - "query_params": "", - "raw_body": "[\n {\n \"id\": 1,\n \"verified\": false,\n \"open_time\": \"2017-03-27T15:23:20Z\",\n \"close_time\": \"2017-03-27T15:23:22Z\",\n \"company\": 2\n }\n]", - "body": "[\n {\n \"close_time\": \"2017-03-27T15:23:22Z\",\n \"company\": 2,\n \"id\": 1,\n \"open_time\": \"2017-03-27T15:23:20Z\",\n \"verified\": false\n }\n]", - "method": "POST", - "start_time": "2017-03-27T15:57:22.131Z", - "view_name": "student-bookmarked-vacancies", - "end_time": "2017-03-27T15:57:22.273Z", - "time_taken": 142.094, - "encoded_headers": "{\"CONTENT-LENGTH\": \"147\", \"CONTENT-TYPE\": \"application/json\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"X-CSRFTOKEN\": \"jq91BuF5e5R7SjMFRc2TNfvWU8lDO6wyIwgQN0x0122wfrO7ADxlFWcGS3rs86sn\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "67cc51e5-4297-4765-afe5-b2b5f8676eec", - "fields": { - "path": "/api/students/4/bookmarked-vacancies/", - "query_params": "", - "raw_body": "{\n \"vacancy_id\": 1\n}", - "body": "{\n \"vacancy_id\": 1\n}", - "method": "POST", - "start_time": "2017-03-27T16:54:00.665Z", - "view_name": "student-bookmarked-vacancies", - "end_time": "2017-03-27T17:06:14.460Z", - "time_taken": 733794.018, - "encoded_headers": "{\"CONTENT-LENGTH\": \"23\", \"CONTENT-TYPE\": \"application/json\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"X-CSRFTOKEN\": \"jq91BuF5e5R7SjMFRc2TNfvWU8lDO6wyIwgQN0x0122wfrO7ADxlFWcGS3rs86sn\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 4 - } -}, -{ - "model": "silk.request", - "pk": "69a42246-b643-4450-b9e7-f3bf0f085bb0", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:22:21.656Z", - "view_name": "index", - "end_time": "2017-03-27T15:22:21.720Z", - "time_taken": 64.044, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/supervisor/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "6b6c0a5d-8201-4c70-9973-37d57abf4b75", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:55:49.287Z", - "view_name": "index", - "end_time": "2017-03-27T14:55:49.362Z", - "time_taken": 75.051, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "6bb06278-a0dc-4896-abf0-596a020347e6", - "fields": { - "path": "/api/students/4/bookmarked-vacancies/", - "query_params": "", - "raw_body": "{\n \"company\": 2,\n \"verified\": false,\n \"open_time\": \"2017-03-27T15:23:20Z\",\n \"close_time\": \"2017-03-27T15:23:22Z\"\n }", - "body": "{\n \"close_time\": \"2017-03-27T15:23:22Z\",\n \"company\": 2,\n \"open_time\": \"2017-03-27T15:23:20Z\",\n \"verified\": false\n}", - "method": "POST", - "start_time": "2017-03-27T15:46:33.970Z", - "view_name": "student-bookmarked-vacancies", - "end_time": "2017-03-27T15:46:34.139Z", - "time_taken": 169.113, - "encoded_headers": "{\"CONTENT-LENGTH\": \"128\", \"CONTENT-TYPE\": \"application/json\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"X-CSRFTOKEN\": \"jq91BuF5e5R7SjMFRc2TNfvWU8lDO6wyIwgQN0x0122wfrO7ADxlFWcGS3rs86sn\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "6bc8bd32-3324-4a2a-8a9e-53692e4f80a4", - "fields": { - "path": "/admin/auth/user/add/", - "query_params": "", - "raw_body": "------WebKitFormBoundaryFhX7h9osHiZX87WG\r\nContent-Disposition: form-data; name=\"csrfmiddlewaretoken\"\r\n\r\nlRwI1aziY9bkk5Z6aheA0tE2z1b7TRWHKXDxdGrdL6mJHd1yTIJ2SalMxWhWdRSw\r\n------WebKitFormBoundaryFhX7h9osHiZX87WG\r\nContent-Disposition: form-data; name=\"username\"\r\n\r\nfarhansuper\r\n------WebKitFormBoundaryFhX7h9osHiZX87WG\r\nContent-Disposition: form-data; name=\"password1\"\r\n\r\naan991super\r\n------WebKitFormBoundaryFhX7h9osHiZX87WG\r\nContent-Disposition: form-data; name=\"password2\"\r\n\r\naan991super\r\n------WebKitFormBoundaryFhX7h9osHiZX87WG\r\nContent-Disposition: form-data; name=\"_save\"\r\n\r\nSave\r\n------WebKitFormBoundaryFhX7h9osHiZX87WG--\r\n", - "body": "{\n \"_save\": [\n \"Save\"\n ],\n \"csrfmiddlewaretoken\": [\n \"lRwI1aziY9bkk5Z6aheA0tE2z1b7TRWHKXDxdGrdL6mJHd1yTIJ2SalMxWhWdRSw\"\n ],\n \"password1\": [\n \"aan991super\"\n ],\n \"password2\": [\n \"aan991super\"\n ],\n \"username\": [\n \"farhansuper\"\n ]\n}", - "method": "POST", - "start_time": "2017-03-27T14:54:13.901Z", - "view_name": "admin:auth_user_add", - "end_time": "2017-03-27T14:54:14.060Z", - "time_taken": 159.103, - "encoded_headers": "{\"CONTENT-LENGTH\": \"630\", \"CONTENT-TYPE\": \"multipart/form-data; boundary=----WebKitFormBoundaryFhX7h9osHiZX87WG\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"CACHE-CONTROL\": \"max-age=0\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 3 - } -}, -{ - "model": "silk.request", - "pk": "6cacf8a8-417a-4364-b765-f8244747f70c", - "fields": { - "path": "/admin/core/company/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T17:17:59.587Z", - "view_name": "admin:core_company_changelist", - "end_time": "2017-03-27T17:17:59.756Z", - "time_taken": 169.113, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 5 - } -}, -{ - "model": "silk.request", - "pk": "6ed1fd8f-3f6c-4976-8aad-5b8e17d270db", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T17:18:02.465Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T17:18:02.553Z", - "time_taken": 88.059, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/company/2/change/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "6fb98310-3148-4971-b04c-3e9c3905af39", - "fields": { - "path": "/api/students/1/bookmarked-vacancies/", - "query_params": "", - "raw_body": "{\n \"user\": 2,\n \"npm\": 1406572321,\n \"phone_number\": \"\",\n \"bookmarked_vacancies\": []\n}", - "body": "{\n \"bookmarked_vacancies\": [],\n \"npm\": 1406572321,\n \"phone_number\": \"\",\n \"user\": 2\n}", - "method": "POST", - "start_time": "2017-03-27T15:37:33.443Z", - "view_name": "student-bookmarked-vacancies", - "end_time": "2017-03-27T15:37:33.657Z", - "time_taken": 214.141, - "encoded_headers": "{\"CONTENT-LENGTH\": \"88\", \"CONTENT-TYPE\": \"application/json\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"X-CSRFTOKEN\": \"jq91BuF5e5R7SjMFRc2TNfvWU8lDO6wyIwgQN0x0122wfrO7ADxlFWcGS3rs86sn\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "70062575-4e0e-42da-8034-f02434dd3991", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:55:45.091Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T14:55:45.220Z", - "time_taken": 129.086, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/company/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "710b16dc-80e1-4366-b71f-219940321f75", - "fields": { - "path": "/admin/core/student/add/", - "query_params": "", - "raw_body": "------WebKitFormBoundary4yA2zAJHAszOldkO\r\nContent-Disposition: form-data; name=\"csrfmiddlewaretoken\"\r\n\r\nHsAThz2Q0vycBy2pf6B3sGP3EMXA0wAM6yHIt5ULNsJBYG4RYx6vknwNCH3pkwwB\r\n------WebKitFormBoundary4yA2zAJHAszOldkO\r\nContent-Disposition: form-data; name=\"user\"\r\n\r\n2\r\n------WebKitFormBoundary4yA2zAJHAszOldkO\r\nContent-Disposition: form-data; name=\"npm\"\r\n\r\n1406572321\r\n------WebKitFormBoundary4yA2zAJHAszOldkO\r\nContent-Disposition: form-data; name=\"resume\"; filename=\"\"\r\nContent-Type: application/octet-stream\r\n\r\n\r\n------WebKitFormBoundary4yA2zAJHAszOldkO\r\nContent-Disposition: form-data; name=\"phone_number\"\r\n\r\nyayaya\r\n------WebKitFormBoundary4yA2zAJHAszOldkO\r\nContent-Disposition: form-data; name=\"_save\"\r\n\r\nSave\r\n------WebKitFormBoundary4yA2zAJHAszOldkO--\r\n", - "body": "{\n \"_save\": [\n \"Save\"\n ],\n \"csrfmiddlewaretoken\": [\n \"HsAThz2Q0vycBy2pf6B3sGP3EMXA0wAM6yHIt5ULNsJBYG4RYx6vknwNCH3pkwwB\"\n ],\n \"npm\": [\n \"1406572321\"\n ],\n \"phone_number\": [\n \"yayaya\"\n ],\n \"resume\": [\n \"\"\n ],\n \"user\": [\n \"2\"\n ]\n}", - "method": "POST", - "start_time": "2017-03-27T14:58:05.720Z", - "view_name": "admin:core_student_add", - "end_time": "2017-03-27T14:58:05.919Z", - "time_taken": 198.132, - "encoded_headers": "{\"CONTENT-LENGTH\": \"753\", \"CONTENT-TYPE\": \"multipart/form-data; boundary=----WebKitFormBoundary4yA2zAJHAszOldkO\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"CACHE-CONTROL\": \"max-age=0\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/student/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 8 - } -}, -{ - "model": "silk.request", - "pk": "713f1416-072f-4a51-be1a-319dc9a21917", - "fields": { - "path": "/api/students/1/bookmarked-vacancies/", - "query_params": "", - "raw_body": "{\n \"company\": 2,\n \"verified\": false,\n \"open_time\": \"2017-03-27T15:23:20Z\",\n \"close_time\": \"2017-03-27T15:23:22Z\"\n }", - "body": "{\n \"close_time\": \"2017-03-27T15:23:22Z\",\n \"company\": 2,\n \"open_time\": \"2017-03-27T15:23:20Z\",\n \"verified\": false\n}", - "method": "POST", - "start_time": "2017-03-27T15:48:26.984Z", - "view_name": "student-bookmarked-vacancies", - "end_time": "2017-03-27T15:48:27.137Z", - "time_taken": 152.102, - "encoded_headers": "{\"CONTENT-LENGTH\": \"128\", \"CONTENT-TYPE\": \"application/json\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"X-CSRFTOKEN\": \"jq91BuF5e5R7SjMFRc2TNfvWU8lDO6wyIwgQN0x0122wfrO7ADxlFWcGS3rs86sn\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "7147d488-61f8-45b0-9bf0-ce3469bec58c", - "fields": { - "path": "/api/students/3/bookmarked-vacancies/", - "query_params": "", - "raw_body": "{\n \"company\": 2,\n \"verified\": false,\n \"open_time\": \"2017-03-27T15:23:20Z\",\n \"close_time\": \"2017-03-27T15:23:22Z\"\n }", - "body": "{\n \"close_time\": \"2017-03-27T15:23:22Z\",\n \"company\": 2,\n \"open_time\": \"2017-03-27T15:23:20Z\",\n \"verified\": false\n}", - "method": "POST", - "start_time": "2017-03-27T15:48:43.885Z", - "view_name": "student-bookmarked-vacancies", - "end_time": "2017-03-27T15:48:44.022Z", - "time_taken": 137.093, - "encoded_headers": "{\"CONTENT-LENGTH\": \"128\", \"CONTENT-TYPE\": \"application/json\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"X-CSRFTOKEN\": \"jq91BuF5e5R7SjMFRc2TNfvWU8lDO6wyIwgQN0x0122wfrO7ADxlFWcGS3rs86sn\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "716e9363-de18-483f-b824-7a5cdc4bfc05", - "fields": { - "path": "/api/students/4/bookmarked-vacancies/", - "query_params": "", - "raw_body": "{\n \"vacancy_id\": 1\n}", - "body": "{\n \"vacancy_id\": 1\n}", - "method": "POST", - "start_time": "2017-03-27T16:53:04.279Z", - "view_name": "student-bookmarked-vacancies", - "end_time": "2017-03-27T17:06:14.523Z", - "time_taken": 790243.69, - "encoded_headers": "{\"CONTENT-LENGTH\": \"23\", \"CONTENT-TYPE\": \"application/json\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"X-CSRFTOKEN\": \"jq91BuF5e5R7SjMFRc2TNfvWU8lDO6wyIwgQN0x0122wfrO7ADxlFWcGS3rs86sn\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 4 - } -}, -{ - "model": "silk.request", - "pk": "71c46316-a90d-49fa-984e-503034a441d7", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:33:19.189Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T14:33:19.313Z", - "time_taken": 124.083, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"localhost:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://localhost:8000/admin/core/vacancy/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "74cdf553-b628-472c-8be2-b9672004aaa8", - "fields": { - "path": "/api/students/4/bookmarked-vacancies/", - "query_params": "", - "raw_body": "{\n\"vacancy_id\":1\n}", - "body": "{\n \"vacancy_id\": 1\n}", - "method": "POST", - "start_time": "2017-03-27T17:11:18.818Z", - "view_name": "student-bookmarked-vacancies", - "end_time": "2017-03-27T17:11:18.915Z", - "time_taken": 97.063, - "encoded_headers": "{\"CONTENT-LENGTH\": \"18\", \"CONTENT-TYPE\": \"application/json\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"X-CSRFTOKEN\": \"w7I4GVUoJw5EhYHLdxW87sAh8JrM4RufVdPTSrMjwtg3E6JdWYrAZ9h16ExBoRq4\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 4 - } -}, -{ - "model": "silk.request", - "pk": "74f2dbd0-df87-4e41-be04-b72b70442705", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:57:05.397Z", - "view_name": "index", - "end_time": "2017-03-27T15:57:05.462Z", - "time_taken": 65.044, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/2/change/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "75f44852-133e-40a0-a9e9-3148d734b167", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T17:15:42.925Z", - "view_name": "index", - "end_time": "2017-03-27T17:15:42.993Z", - "time_taken": 68.046, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/student/1/change/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "76e7547e-885d-4b1f-86e6-29a2931dcdf7", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:33:52.070Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T14:33:52.166Z", - "time_taken": 96.063, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"localhost:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://localhost:8000/admin/core/company/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "77f011df-993c-460a-a23f-8c5dcbb71aea", - "fields": { - "path": "/admin/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:52:50.220Z", - "view_name": "admin:index", - "end_time": "2017-03-27T14:52:50.349Z", - "time_taken": 129.086, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/2/change/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 3 - } -}, -{ - "model": "silk.request", - "pk": "7808e004-a5e9-4c6f-8d07-197250bea2da", - "fields": { - "path": "/admin/core/vacancy/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:33:14.956Z", - "view_name": "admin:core_vacancy_changelist", - "end_time": "2017-03-27T14:33:15.162Z", - "time_taken": 206.137, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"localhost:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://localhost:8000/admin/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 5 - } -}, -{ - "model": "silk.request", - "pk": "7810b10a-0034-473d-91f0-dc9175a5ea3c", - "fields": { - "path": "/admin/auth/user/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:53:53.604Z", - "view_name": "admin:auth_user_changelist", - "end_time": "2017-03-27T14:53:53.816Z", - "time_taken": 212.141, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 6 - } -}, -{ - "model": "silk.request", - "pk": "7875a5ed-d252-4c60-b3c7-3a59ac610a8b", - "fields": { - "path": "/api", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T17:13:31.178Z", - "view_name": "rest_framework_swagger.views.SwaggerSchemaView", - "end_time": "2017-03-27T17:13:31.495Z", - "time_taken": 317.212, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "78f2203a-2bfb-4777-94c4-a7af0d987f49", - "fields": { - "path": "/api/students/2/bookmarked-vacancies/", - "query_params": "", - "raw_body": "{\n\"vacancy_id\":1\n}", - "body": "{\n \"vacancy_id\": 1\n}", - "method": "POST", - "start_time": "2017-03-27T17:14:52.367Z", - "view_name": "student-bookmarked-vacancies", - "end_time": "2017-03-27T17:14:52.490Z", - "time_taken": 123.079, - "encoded_headers": "{\"CONTENT-LENGTH\": \"18\", \"CONTENT-TYPE\": \"application/json\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"X-CSRFTOKEN\": \"w7I4GVUoJw5EhYHLdxW87sAh8JrM4RufVdPTSrMjwtg3E6JdWYrAZ9h16ExBoRq4\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 4 - } -}, -{ - "model": "silk.request", - "pk": "79d47150-fcb7-4983-b1e1-625a17c96176", - "fields": { - "path": "/api/students/2/bookmarked-vacancies/", - "query_params": "", - "raw_body": "[\n {\n \"id\": 1,\n \"verified\": false,\n \"open_time\": \"2017-03-27T15:23:20Z\",\n \"close_time\": \"2017-03-27T15:23:22Z\",\n \"company\": 2\n }\n]", - "body": "[\n {\n \"close_time\": \"2017-03-27T15:23:22Z\",\n \"company\": 2,\n \"id\": 1,\n \"open_time\": \"2017-03-27T15:23:20Z\",\n \"verified\": false\n }\n]", - "method": "POST", - "start_time": "2017-03-27T15:55:55.259Z", - "view_name": "student-bookmarked-vacancies", - "end_time": "2017-03-27T15:55:55.422Z", - "time_taken": 163.109, - "encoded_headers": "{\"CONTENT-LENGTH\": \"147\", \"CONTENT-TYPE\": \"application/json\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"X-CSRFTOKEN\": \"jq91BuF5e5R7SjMFRc2TNfvWU8lDO6wyIwgQN0x0122wfrO7ADxlFWcGS3rs86sn\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "7a15640a-4b76-4ed0-830b-403829a67adb", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:23:53.080Z", - "view_name": "index", - "end_time": "2017-03-27T15:23:53.155Z", - "time_taken": 75.05, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/application/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "7ae4fd22-370c-41ce-af3c-0d0be06c9932", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:23:42.086Z", - "view_name": "index", - "end_time": "2017-03-27T15:23:42.153Z", - "time_taken": 67.045, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/application/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "7ae98805-3b3c-488b-94aa-68d197382cce", - "fields": { - "path": "/api/students/1/bookmarked-vacancies/", - "query_params": "", - "raw_body": "{}", - "body": "{}", - "method": "POST", - "start_time": "2017-03-27T15:42:52.125Z", - "view_name": "student-bookmarked-vacancies", - "end_time": "2017-03-27T15:42:52.333Z", - "time_taken": 208.138, - "encoded_headers": "{\"CONTENT-LENGTH\": \"2\", \"CONTENT-TYPE\": \"application/json\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"X-CSRFTOKEN\": \"jq91BuF5e5R7SjMFRc2TNfvWU8lDO6wyIwgQN0x0122wfrO7ADxlFWcGS3rs86sn\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 8 - } -}, -{ - "model": "silk.request", - "pk": "7b3ebad1-d3d1-44dd-b049-5e7f84cee73f", - "fields": { - "path": "/admin/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:56:55.956Z", - "view_name": "admin:index", - "end_time": "2017-03-27T15:56:56.215Z", - "time_taken": 259.173, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/application/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 3 - } -}, -{ - "model": "silk.request", - "pk": "7bac2868-bb12-4f36-8985-5a106e6e3804", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:32:33.219Z", - "view_name": "index", - "end_time": "2017-03-27T14:32:33.293Z", - "time_taken": 74.049, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"localhost:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://localhost:8000/admin/login/?next=/admin/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "7bece041-aa12-4be9-bfe9-c682b2d93f13", - "fields": { - "path": "/admin/core/supervisor/add/", - "query_params": "", - "raw_body": "------WebKitFormBoundarypHzJcjSkVBn8dYxW\r\nContent-Disposition: form-data; name=\"csrfmiddlewaretoken\"\r\n\r\nQrbLfcWoVa6h4tI63uHeJFaWUYJ50DirfxiArIOjI7hGrBKyMVcGBmRGSTPUkDeg\r\n------WebKitFormBoundarypHzJcjSkVBn8dYxW\r\nContent-Disposition: form-data; name=\"user\"\r\n\r\n4\r\n------WebKitFormBoundarypHzJcjSkVBn8dYxW\r\nContent-Disposition: form-data; name=\"nip\"\r\n\r\n1234\r\n------WebKitFormBoundarypHzJcjSkVBn8dYxW\r\nContent-Disposition: form-data; name=\"_save\"\r\n\r\nSave\r\n------WebKitFormBoundarypHzJcjSkVBn8dYxW--\r\n", - "body": "{\n \"_save\": [\n \"Save\"\n ],\n \"csrfmiddlewaretoken\": [\n \"QrbLfcWoVa6h4tI63uHeJFaWUYJ50DirfxiArIOjI7hGrBKyMVcGBmRGSTPUkDeg\"\n ],\n \"nip\": [\n \"1234\"\n ],\n \"user\": [\n \"4\"\n ]\n}", - "method": "POST", - "start_time": "2017-03-27T15:22:21.110Z", - "view_name": "admin:core_supervisor_add", - "end_time": "2017-03-27T15:22:21.340Z", - "time_taken": 230.153, - "encoded_headers": "{\"CONTENT-LENGTH\": \"496\", \"CONTENT-TYPE\": \"multipart/form-data; boundary=----WebKitFormBoundarypHzJcjSkVBn8dYxW\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"CACHE-CONTROL\": \"max-age=0\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/supervisor/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 6 - } -}, -{ - "model": "silk.request", - "pk": "7d20935f-acdd-4a92-9be8-35742c726043", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:56:58.321Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T15:56:58.433Z", - "time_taken": 112.073, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "7d2e656f-76e4-47db-962a-98dc68b799fc", - "fields": { - "path": "/api/vacancies/", - "query_params": "{\"page\": \"1\"}", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T18:30:18.291Z", - "view_name": "vacancy-list", - "end_time": "2017-03-27T18:30:18.521Z", - "time_taken": 229.152, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"X-CSRFTOKEN\": \"z5QbdTCcIPZGm6GiFxFprpUOXTPZIfLdYbX0ppu7vMa5JeIKoYaRj6ByVOVO2fH2\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 5 - } -}, -{ - "model": "silk.request", - "pk": "7d6315de-2bbc-40a3-8b9b-b0f503ef0e6a", - "fields": { - "path": "/api", - "query_params": "{\"format\": \"openapi\"}", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T18:23:50.139Z", - "view_name": "rest_framework_swagger.views.SwaggerSchemaView", - "end_time": "2017-03-27T18:23:50.434Z", - "time_taken": 294.197, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json;charset=utf-8,*/*\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "7d9874aa-6656-41bd-b63b-ac282f2fa2d7", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:54:14.363Z", - "view_name": "index", - "end_time": "2017-03-27T14:54:14.428Z", - "time_taken": 64.041, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "7db10c97-ac38-4b1f-b612-7d6fb97fda65", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:57:07.042Z", - "view_name": "index", - "end_time": "2017-03-27T14:57:07.139Z", - "time_taken": 96.065, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/student/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "7dff6ca1-c60e-4ed0-aa23-58b95020356b", - "fields": { - "path": "/admin", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:14:23.220Z", - "view_name": "index", - "end_time": "2017-03-27T15:14:23.592Z", - "time_taken": 371.248, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "7e61ba48-2d26-4dcb-8dbc-ef1cdd6a5bd7", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:53:29.356Z", - "view_name": "index", - "end_time": "2017-03-27T14:53:29.444Z", - "time_taken": 87.058, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "7f58beec-8752-4060-9047-178b48f469b7", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T17:13:49.387Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T17:13:49.608Z", - "time_taken": 221.149, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/2/change/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "7fa3a2c8-bd0d-4866-be8b-aa4b79790b01", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T17:15:29.021Z", - "view_name": "index", - "end_time": "2017-03-27T17:15:29.086Z", - "time_taken": 65.044, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/4/change/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "8059761b-b901-46a8-91f5-ea11fe1b0ebd", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:55:30.115Z", - "view_name": "index", - "end_time": "2017-03-27T14:55:30.190Z", - "time_taken": 75.05, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/company/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "80d3ca5d-b7ae-4380-882f-2f7eea60b27c", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:22:21.451Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T15:22:21.536Z", - "time_taken": 85.056, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/supervisor/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "81ecb7c4-e4ae-45e4-b295-d8042e3603a7", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T17:18:02.695Z", - "view_name": "index", - "end_time": "2017-03-27T17:18:02.789Z", - "time_taken": 94.063, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/company/2/change/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "82b41e4c-903f-4c68-bc6c-1e3aba8f4dd0", - "fields": { - "path": "/api/students/4/bookmarked-vacancies/", - "query_params": "", - "raw_body": "{\n \"vacancy_id\": 1\n}", - "body": "{\n \"vacancy_id\": 1\n}", - "method": "POST", - "start_time": "2017-03-27T16:44:19.642Z", - "view_name": "student-bookmarked-vacancies", - "end_time": "2017-03-27T16:44:23.210Z", - "time_taken": 3567.38, - "encoded_headers": "{\"CONTENT-LENGTH\": \"23\", \"CONTENT-TYPE\": \"application/json\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"X-CSRFTOKEN\": \"jq91BuF5e5R7SjMFRc2TNfvWU8lDO6wyIwgQN0x0122wfrO7ADxlFWcGS3rs86sn\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 4 - } -}, -{ - "model": "silk.request", - "pk": "82e2135b-5e72-485f-ada1-2905219f609b", - "fields": { - "path": "/admin/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:21:41.889Z", - "view_name": "admin:index", - "end_time": "2017-03-27T15:21:42.045Z", - "time_taken": 156.103, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 3 - } -}, -{ - "model": "silk.request", - "pk": "84771ee3-aa02-46cc-8c21-8d7fbda59f80", - "fields": { - "path": "/api", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T18:16:19.516Z", - "view_name": "rest_framework_swagger.views.SwaggerSchemaView", - "end_time": "2017-03-27T18:16:20.640Z", - "time_taken": 1123.751, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "84afa3cb-5cc3-47ed-b2a5-85e13a06389f", - "fields": { - "path": "/api/students/1/bookmarked-vacancies/", - "query_params": "", - "raw_body": "{\n \"user\": 2,\n \"npm\": 1406572321,\n \"resume\": \"\",\n \"phone_number\": \"\",\n \"bookmarked_vacancies\": []\n}", - "body": "{\n \"bookmarked_vacancies\": [],\n \"npm\": 1406572321,\n \"phone_number\": \"\",\n \"resume\": \"\",\n \"user\": 2\n}", - "method": "POST", - "start_time": "2017-03-27T15:35:11.944Z", - "view_name": "student-bookmarked-vacancies", - "end_time": "2017-03-27T15:35:12.135Z", - "time_taken": 191.128, - "encoded_headers": "{\"CONTENT-LENGTH\": \"114\", \"CONTENT-TYPE\": \"application/json\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"X-CSRFTOKEN\": \"jq91BuF5e5R7SjMFRc2TNfvWU8lDO6wyIwgQN0x0122wfrO7ADxlFWcGS3rs86sn\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "86ae3739-ebf0-48b5-a091-1a80bedfca0c", - "fields": { - "path": "/admin/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:14:23.666Z", - "view_name": "admin:index", - "end_time": "2017-03-27T15:14:24.211Z", - "time_taken": 545.363, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 3 - } -}, -{ - "model": "silk.request", - "pk": "87e059e0-383a-4ce3-9eb0-6f73ac71bad2", - "fields": { - "path": "/admin/core/student/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T17:15:39.663Z", - "view_name": "admin:core_student_changelist", - "end_time": "2017-03-27T17:15:39.832Z", - "time_taken": 169.114, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 5 - } -}, -{ - "model": "silk.request", - "pk": "8849edc8-14f5-44e2-91f1-84d4235c8165", - "fields": { - "path": "/api/vacancies/", - "query_params": "{\"page\": \"1\"}", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T18:25:50.453Z", - "view_name": "vacancy-list", - "end_time": "2017-03-27T18:25:50.606Z", - "time_taken": 153.103, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"X-CSRFTOKEN\": \"MfwebqhdM34eyB1knQEC5qRuV5zGvx79blD3nW98z0fDVJ3M6h94X7yeT0FvPx3Y\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 5 - } -}, -{ - "model": "silk.request", - "pk": "8879e7b7-6961-4221-8d18-70981618dcaf", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:22:13.747Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T15:22:13.834Z", - "time_taken": 87.058, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/supervisor/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "89f5ae99-1c37-4d9a-8487-294a3f12fdf6", - "fields": { - "path": "/api/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T18:18:25.135Z", - "view_name": "api-root", - "end_time": "2017-03-27T18:18:25.505Z", - "time_taken": 370.248, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "8a384d1d-0241-41ad-a72c-8af9a191b99a", - "fields": { - "path": "/admin/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:52:05.924Z", - "view_name": "admin:index", - "end_time": "2017-03-27T14:52:06.078Z", - "time_taken": 154.103, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"CACHE-CONTROL\": \"max-age=0\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/login/?next=/admin/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 3 - } -}, -{ - "model": "silk.request", - "pk": "8ac4ebc3-867b-4dca-ab87-80c456062911", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:33:16.744Z", - "view_name": "index", - "end_time": "2017-03-27T14:33:16.807Z", - "time_taken": 63.047, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"localhost:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://localhost:8000/admin/core/vacancy/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "8ae47948-4223-4ae5-9f00-d3fc27336e35", - "fields": { - "path": "/api", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T17:10:39.516Z", - "view_name": "rest_framework_swagger.views.SwaggerSchemaView", - "end_time": "2017-03-27T17:10:39.818Z", - "time_taken": 302.201, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "8b5bf8a2-1a56-4903-bba4-e22bbb81e57c", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:16:22.986Z", - "view_name": "index", - "end_time": "2017-03-27T15:16:23.052Z", - "time_taken": 66.045, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/student/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "8b7e9e33-870b-4ac4-a335-13bca671fb3c", - "fields": { - "path": "/api", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:43:25.963Z", - "view_name": "rest_framework_swagger.views.SwaggerSchemaView", - "end_time": "2017-03-27T15:43:26.299Z", - "time_taken": 336.224, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "8c37db3f-80a3-4bb0-9bce-3d0f4948dc98", - "fields": { - "path": "/admin/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T17:15:37.618Z", - "view_name": "admin:index", - "end_time": "2017-03-27T17:15:37.766Z", - "time_taken": 148.099, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 3 - } -}, -{ - "model": "silk.request", - "pk": "8c99b503-6191-4988-9cd1-4cfd8bf70594", - "fields": { - "path": "/admin/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:33:12.210Z", - "view_name": "admin:index", - "end_time": "2017-03-27T14:33:12.386Z", - "time_taken": 176.116, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"localhost:8000\", \"CONNECTION\": \"keep-alive\", \"CACHE-CONTROL\": \"max-age=0\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://localhost:8000/admin/login/?next=/admin/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 3 - } -}, -{ - "model": "silk.request", - "pk": "8dad4955-18ef-463a-815c-a0059292fa25", - "fields": { - "path": "/api/students/4/bookmarked-vacancies/", - "query_params": "", - "raw_body": "{\n \"vacancy_id\": 1\n}", - "body": "{\n \"vacancy_id\": 1\n}", - "method": "POST", - "start_time": "2017-03-27T16:05:33.804Z", - "view_name": "student-bookmarked-vacancies", - "end_time": "2017-03-27T16:05:33.970Z", - "time_taken": 166.11, - "encoded_headers": "{\"CONTENT-LENGTH\": \"23\", \"CONTENT-TYPE\": \"application/json\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"X-CSRFTOKEN\": \"jq91BuF5e5R7SjMFRc2TNfvWU8lDO6wyIwgQN0x0122wfrO7ADxlFWcGS3rs86sn\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "8e802c92-c86f-4c93-a58f-5d0f741c46fd", - "fields": { - "path": "/admin/auth/user/add/", - "query_params": "", - "raw_body": "------WebKitFormBoundaryMmeKS8s40U42v66j\r\nContent-Disposition: form-data; name=\"csrfmiddlewaretoken\"\r\n\r\nvSPKyCpL6YsgEqloYNCALAoftXc3krPiUYWzK8hGTVDF1ynQHe72Dh5ZrSiSErL7\r\n------WebKitFormBoundaryMmeKS8s40U42v66j\r\nContent-Disposition: form-data; name=\"username\"\r\n\r\nfarhancorp\r\n------WebKitFormBoundaryMmeKS8s40U42v66j\r\nContent-Disposition: form-data; name=\"password1\"\r\n\r\naan991corop\r\n------WebKitFormBoundaryMmeKS8s40U42v66j\r\nContent-Disposition: form-data; name=\"password2\"\r\n\r\naan991corp\r\n------WebKitFormBoundaryMmeKS8s40U42v66j\r\nContent-Disposition: form-data; name=\"_save\"\r\n\r\nSave\r\n------WebKitFormBoundaryMmeKS8s40U42v66j--\r\n", - "body": "{\n \"_save\": [\n \"Save\"\n ],\n \"csrfmiddlewaretoken\": [\n \"vSPKyCpL6YsgEqloYNCALAoftXc3krPiUYWzK8hGTVDF1ynQHe72Dh5ZrSiSErL7\"\n ],\n \"password1\": [\n \"aan991corop\"\n ],\n \"password2\": [\n \"aan991corp\"\n ],\n \"username\": [\n \"farhancorp\"\n ]\n}", - "method": "POST", - "start_time": "2017-03-27T14:53:28.647Z", - "view_name": "admin:auth_user_add", - "end_time": "2017-03-27T14:53:28.793Z", - "time_taken": 146.097, - "encoded_headers": "{\"CONTENT-LENGTH\": \"628\", \"CONTENT-TYPE\": \"multipart/form-data; boundary=----WebKitFormBoundaryMmeKS8s40U42v66j\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"CACHE-CONTROL\": \"max-age=0\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 3 - } -}, -{ - "model": "silk.request", - "pk": "8fae749b-0010-4131-89d6-b6ec831b187a", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:22:13.966Z", - "view_name": "index", - "end_time": "2017-03-27T15:22:14.045Z", - "time_taken": 79.053, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/supervisor/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "92e0a131-5154-48cb-a968-1c7f15bde4fc", - "fields": { - "path": "/api", - "query_params": "{\"format\": \"openapi\"}", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T18:29:44.645Z", - "view_name": "rest_framework_swagger.views.SwaggerSchemaView", - "end_time": "2017-03-27T18:29:44.838Z", - "time_taken": 193.13, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json;charset=utf-8,*/*\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "932c8055-5b76-4302-b46e-2a9b150f1f8f", - "fields": { - "path": "/api/students/2/bookmarked-vacancies/", - "query_params": "", - "raw_body": "{\n \"user\": 2,\n \"npm\": 1406572321,\n \"phone_number\": \"\",\n \"bookmarked_vacancies\": []\n}", - "body": "{\n \"bookmarked_vacancies\": [],\n \"npm\": 1406572321,\n \"phone_number\": \"\",\n \"user\": 2\n}", - "method": "POST", - "start_time": "2017-03-27T15:37:48.537Z", - "view_name": "student-bookmarked-vacancies", - "end_time": "2017-03-27T15:37:48.724Z", - "time_taken": 187.124, - "encoded_headers": "{\"CONTENT-LENGTH\": \"88\", \"CONTENT-TYPE\": \"application/json\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"X-CSRFTOKEN\": \"jq91BuF5e5R7SjMFRc2TNfvWU8lDO6wyIwgQN0x0122wfrO7ADxlFWcGS3rs86sn\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "947da821-8bc6-461d-bf6a-28f59345d45d", - "fields": { - "path": "/api/students/3/bookmarked-vacancies/", - "query_params": "", - "raw_body": "{\n \"company\": 2,\n \"verified\": false,\n \"open_time\": \"2017-03-27T15:23:20Z\",\n \"close_time\": \"2017-03-27T15:23:22Z\"\n }", - "body": "{\n \"close_time\": \"2017-03-27T15:23:22Z\",\n \"company\": 2,\n \"open_time\": \"2017-03-27T15:23:20Z\",\n \"verified\": false\n}", - "method": "POST", - "start_time": "2017-03-27T15:46:22.580Z", - "view_name": "student-bookmarked-vacancies", - "end_time": "2017-03-27T15:46:22.721Z", - "time_taken": 141.095, - "encoded_headers": "{\"CONTENT-LENGTH\": \"128\", \"CONTENT-TYPE\": \"application/json\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"X-CSRFTOKEN\": \"jq91BuF5e5R7SjMFRc2TNfvWU8lDO6wyIwgQN0x0122wfrO7ADxlFWcGS3rs86sn\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "94c0ceb8-c58d-4388-97c9-093116ce8dd8", - "fields": { - "path": "/admin/login/", - "query_params": "{\"next\": \"/admin/\"}", - "raw_body": "csrfmiddlewaretoken=dlBW6EK7ztgrUExB3YiN02BSUDdJ3hwvRzv51CieUqcUWK3ikvKVpg9mDKxgoEga&username=kape&password=yukcarikap&next=%2Fadmin%2F", - "body": "{\n \"csrfmiddlewaretoken\": [\n \"dlBW6EK7ztgrUExB3YiN02BSUDdJ3hwvRzv51CieUqcUWK3ikvKVpg9mDKxgoEga\"\n ],\n \"next\": [\n \"/admin/\"\n ],\n \"password\": [\n \"yukcarikap\"\n ],\n \"username\": [\n \"kape\"\n ]\n}", - "method": "POST", - "start_time": "2017-03-27T14:33:05.841Z", - "view_name": "admin:login", - "end_time": "2017-03-27T14:33:06.112Z", - "time_taken": 271.18, - "encoded_headers": "{\"CONTENT-LENGTH\": \"135\", \"CONTENT-TYPE\": \"application/x-www-form-urlencoded\", \"HOST\": \"localhost:8000\", \"CONNECTION\": \"keep-alive\", \"CACHE-CONTROL\": \"max-age=0\", \"ORIGIN\": \"http://localhost:8000\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://localhost:8000/admin/login/?next=/admin/\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 1 - } -}, -{ - "model": "silk.request", - "pk": "9743506e-3031-4802-b588-b8ce41b20e98", - "fields": { - "path": "/admin/core/company/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:55:16.687Z", - "view_name": "admin:core_company_changelist", - "end_time": "2017-03-27T14:55:16.841Z", - "time_taken": 153.1, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 5 - } -}, -{ - "model": "silk.request", - "pk": "978c4c7c-3c00-4248-aaef-730c5880e9a5", - "fields": { - "path": "/admin/auth/user/add/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:53:00.223Z", - "view_name": "admin:auth_user_add", - "end_time": "2017-03-27T14:53:00.397Z", - "time_taken": 174.116, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "993332f5-4b0d-4127-8301-678a5196ca87", - "fields": { - "path": "/admin/auth/user/2/change/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:52:34.837Z", - "view_name": "admin:auth_user_change", - "end_time": "2017-03-27T14:52:35.097Z", - "time_taken": 260.172, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"CACHE-CONTROL\": \"max-age=0\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 7 - } -}, -{ - "model": "silk.request", - "pk": "994f0918-8f9e-4251-a568-e1dce4bec3fa", - "fields": { - "path": "/admin/core/student/add/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:56:28.973Z", - "view_name": "admin:core_student_add", - "end_time": "2017-03-27T14:56:29.198Z", - "time_taken": 225.151, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/student/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 4 - } -}, -{ - "model": "silk.request", - "pk": "99750c5e-39b0-45ff-a581-ce05b2143394", - "fields": { - "path": "/admin/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:55:12.752Z", - "view_name": "admin:index", - "end_time": "2017-03-27T14:55:12.884Z", - "time_taken": 132.089, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/4/change/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 3 - } -}, -{ - "model": "silk.request", - "pk": "9a6efcbd-1e2b-4e0e-b95f-3f8742d83a10", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:56:29.543Z", - "view_name": "index", - "end_time": "2017-03-27T14:56:29.628Z", - "time_taken": 85.057, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/student/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "9cf06b2f-2c22-4ae9-88f7-b2cb20d70d11", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T17:15:03.220Z", - "view_name": "index", - "end_time": "2017-03-27T17:15:03.311Z", - "time_taken": 91.061, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "9d4b6c59-10b5-438e-b5b3-311a820f2847", - "fields": { - "path": "/api/students/3/bookmarked-vacancies/", - "query_params": "", - "raw_body": "[\n {\n \"id\": 1,\n \"verified\": false,\n \"open_time\": \"2017-03-27T15:23:20Z\",\n \"close_time\": \"2017-03-27T15:23:22Z\",\n \"company\": 2\n }\n]", - "body": "[\n {\n \"close_time\": \"2017-03-27T15:23:22Z\",\n \"company\": 2,\n \"id\": 1,\n \"open_time\": \"2017-03-27T15:23:20Z\",\n \"verified\": false\n }\n]", - "method": "POST", - "start_time": "2017-03-27T15:56:11.499Z", - "view_name": "student-bookmarked-vacancies", - "end_time": "2017-03-27T15:56:11.652Z", - "time_taken": 153.102, - "encoded_headers": "{\"CONTENT-LENGTH\": \"147\", \"CONTENT-TYPE\": \"application/json\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"X-CSRFTOKEN\": \"jq91BuF5e5R7SjMFRc2TNfvWU8lDO6wyIwgQN0x0122wfrO7ADxlFWcGS3rs86sn\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "9d80397b-5f03-4369-b8f1-68f49dfcff6a", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:52:12.418Z", - "view_name": "index", - "end_time": "2017-03-27T14:52:12.515Z", - "time_taken": 97.063, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "9db35b95-a73b-4004-9faf-21a4c92fc468", - "fields": { - "path": "/admin/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T17:17:56.175Z", - "view_name": "admin:index", - "end_time": "2017-03-27T17:17:56.329Z", - "time_taken": 154.102, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/student/1/change/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 3 - } -}, -{ - "model": "silk.request", - "pk": "9e1684d9-8492-4be2-8442-4273b8168f71", - "fields": { - "path": "/admin/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T17:17:42.462Z", - "view_name": "admin:index", - "end_time": "2017-03-27T17:17:42.666Z", - "time_taken": 204.135, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/student/1/change/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 3 - } -}, -{ - "model": "silk.request", - "pk": "9e637c23-852f-4051-a7a2-fdb2315a1db7", - "fields": { - "path": "/api/students/4/bookmarked-vacancies/", - "query_params": "", - "raw_body": "{\n \"vacancy_id\": 1\n}", - "body": "{\n \"vacancy_id\": 1\n}", - "method": "POST", - "start_time": "2017-03-27T17:05:24.619Z", - "view_name": "student-bookmarked-vacancies", - "end_time": "2017-03-27T17:06:14.622Z", - "time_taken": 50002.37, - "encoded_headers": "{\"CONTENT-LENGTH\": \"23\", \"CONTENT-TYPE\": \"application/json\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"X-CSRFTOKEN\": \"jq91BuF5e5R7SjMFRc2TNfvWU8lDO6wyIwgQN0x0122wfrO7ADxlFWcGS3rs86sn\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 4 - } -}, -{ - "model": "silk.request", - "pk": "9f1866c2-695a-4d1b-a636-685c5bd89033", - "fields": { - "path": "/admin/core/vacancy/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T17:17:53.735Z", - "view_name": "admin:core_vacancy_changelist", - "end_time": "2017-03-27T17:17:53.930Z", - "time_taken": 195.13, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 5 - } -}, -{ - "model": "silk.request", - "pk": "9f187370-82f4-4634-8aab-8654b759c561", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:21:59.040Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T15:21:59.151Z", - "time_taken": 111.075, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/student/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "9f472c0f-de1d-45f6-83c4-185efa0d454d", - "fields": { - "path": "/admin/core/company/add/", - "query_params": "", - "raw_body": "------WebKitFormBoundaryA47CulLwX4zbKrpx\r\nContent-Disposition: form-data; name=\"csrfmiddlewaretoken\"\r\n\r\nEtg1PHA35XqnfwKLMLROUjoESH4UIH75HszBqo8Sn5DfgFgKkt2rnuTc7CTu9aVo\r\n------WebKitFormBoundaryA47CulLwX4zbKrpx\r\nContent-Disposition: form-data; name=\"user\"\r\n\r\n1\r\n------WebKitFormBoundaryA47CulLwX4zbKrpx\r\nContent-Disposition: form-data; name=\"description\"\r\n\r\nasdasdasd\r\n------WebKitFormBoundaryA47CulLwX4zbKrpx\r\nContent-Disposition: form-data; name=\"_save\"\r\n\r\nSave\r\n------WebKitFormBoundaryA47CulLwX4zbKrpx--\r\n", - "body": "{\n \"_save\": [\n \"Save\"\n ],\n \"csrfmiddlewaretoken\": [\n \"Etg1PHA35XqnfwKLMLROUjoESH4UIH75HszBqo8Sn5DfgFgKkt2rnuTc7CTu9aVo\"\n ],\n \"description\": [\n \"asdasdasd\"\n ],\n \"user\": [\n \"1\"\n ]\n}", - "method": "POST", - "start_time": "2017-03-27T14:33:51.550Z", - "view_name": "admin:core_company_add", - "end_time": "2017-03-27T14:33:51.665Z", - "time_taken": 114.074, - "encoded_headers": "{\"CONTENT-LENGTH\": \"509\", \"CONTENT-TYPE\": \"multipart/form-data; boundary=----WebKitFormBoundaryA47CulLwX4zbKrpx\", \"HOST\": \"localhost:8000\", \"CONNECTION\": \"keep-alive\", \"CACHE-CONTROL\": \"max-age=0\", \"ORIGIN\": \"http://localhost:8000\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://localhost:8000/admin/core/company/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 5 - } -}, -{ - "model": "silk.request", - "pk": "9f60293c-f96b-4f99-b14c-af3d7d6ea8b6", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:52:55.631Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T14:52:55.730Z", - "time_taken": 99.066, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "a11dfab9-53c8-4360-b48e-b11c0a11794a", - "fields": { - "path": "/admin/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:55:49.044Z", - "view_name": "admin:index", - "end_time": "2017-03-27T14:55:49.176Z", - "time_taken": 132.09, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/company/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 3 - } -}, -{ - "model": "silk.request", - "pk": "a27b9ba2-caf2-4a2a-beb4-971b01622835", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:55:00.969Z", - "view_name": "index", - "end_time": "2017-03-27T14:55:01.036Z", - "time_taken": 67.045, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "a2cbf430-13f7-4179-9875-53c6156a1ef5", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:14:27.502Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T15:14:27.591Z", - "time_taken": 89.058, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/student/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "a3509633-9dc3-4d32-97d5-15f6eab38c27", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:22:09.667Z", - "view_name": "index", - "end_time": "2017-03-27T15:22:09.749Z", - "time_taken": 82.055, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "a3966cbe-bf35-4b2f-b9b1-2939432d8b4b", - "fields": { - "path": "/admin/core/vacancy/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:23:25.015Z", - "view_name": "admin:core_vacancy_changelist", - "end_time": "2017-03-27T15:23:25.198Z", - "time_taken": 183.122, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"CACHE-CONTROL\": \"max-age=0\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/vacancy/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 5 - } -}, -{ - "model": "silk.request", - "pk": "a46bb5f5-8c7a-4649-8d1a-dbd4d514bd1f", - "fields": { - "path": "/admin/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T17:13:34.370Z", - "view_name": "admin:index", - "end_time": "2017-03-27T17:13:35.490Z", - "time_taken": 1119.747, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 3 - } -}, -{ - "model": "silk.request", - "pk": "a4e12f7a-a416-41d5-b3ce-928301538f4b", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:33:06.561Z", - "view_name": "index", - "end_time": "2017-03-27T14:33:06.620Z", - "time_taken": 59.038, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"localhost:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://localhost:8000/admin/login/?next=/admin/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "a56a37dd-7926-4dd4-a7d6-5e9664938c9e", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:51:56.640Z", - "view_name": "index", - "end_time": "2017-03-27T14:51:56.712Z", - "time_taken": 72.049, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/login/?next=/admin/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "a575cd2b-7241-4c46-a960-cd34c20c7179", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:56:26.951Z", - "view_name": "index", - "end_time": "2017-03-27T14:56:27.015Z", - "time_taken": 64.043, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/student/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "a6066c3f-cd00-4ef8-9269-6f7a0dbd5705", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:22:08.057Z", - "view_name": "index", - "end_time": "2017-03-27T15:22:08.127Z", - "time_taken": 70.047, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/company/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "a6997517-dee8-4522-86bf-1ab24188f745", - "fields": { - "path": "/admin/auth/user/2/change/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T17:13:48.351Z", - "view_name": "admin:auth_user_change", - "end_time": "2017-03-27T17:13:49.233Z", - "time_taken": 881.589, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 8 - } -}, -{ - "model": "silk.request", - "pk": "a6de7863-f116-46cd-b4da-4316130a94de", - "fields": { - "path": "/admin/auth/user/add/", - "query_params": "", - "raw_body": "------WebKitFormBoundary5gDY5qGc8Wjjdvrq\r\nContent-Disposition: form-data; name=\"csrfmiddlewaretoken\"\r\n\r\niNrOSBJVT9CNqgSnjlgULfcGGByzPopLHTyD47BQG6NcNoUP2MLmDWTqEwEo9olA\r\n------WebKitFormBoundary5gDY5qGc8Wjjdvrq\r\nContent-Disposition: form-data; name=\"username\"\r\n\r\nfarhansuper\r\n------WebKitFormBoundary5gDY5qGc8Wjjdvrq\r\nContent-Disposition: form-data; name=\"password1\"\r\n\r\naan991user\r\n------WebKitFormBoundary5gDY5qGc8Wjjdvrq\r\nContent-Disposition: form-data; name=\"password2\"\r\n\r\naan991suser\r\n------WebKitFormBoundary5gDY5qGc8Wjjdvrq\r\nContent-Disposition: form-data; name=\"_save\"\r\n\r\nSave\r\n------WebKitFormBoundary5gDY5qGc8Wjjdvrq--\r\n", - "body": "{\n \"_save\": [\n \"Save\"\n ],\n \"csrfmiddlewaretoken\": [\n \"iNrOSBJVT9CNqgSnjlgULfcGGByzPopLHTyD47BQG6NcNoUP2MLmDWTqEwEo9olA\"\n ],\n \"password1\": [\n \"aan991user\"\n ],\n \"password2\": [\n \"aan991suser\"\n ],\n \"username\": [\n \"farhansuper\"\n ]\n}", - "method": "POST", - "start_time": "2017-03-27T14:55:00.468Z", - "view_name": "admin:auth_user_add", - "end_time": "2017-03-27T14:55:00.630Z", - "time_taken": 162.105, - "encoded_headers": "{\"CONTENT-LENGTH\": \"629\", \"CONTENT-TYPE\": \"multipart/form-data; boundary=----WebKitFormBoundary5gDY5qGc8Wjjdvrq\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"CACHE-CONTROL\": \"max-age=0\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 3 - } -}, -{ - "model": "silk.request", - "pk": "a86c3ace-b4e5-4cc2-9a23-8972efb78e9e", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T18:18:30.550Z", - "view_name": "index", - "end_time": "2017-03-27T18:18:30.652Z", - "time_taken": 102.069, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "a92c7b87-6b5f-482a-94aa-f53d3a80ff6d", - "fields": { - "path": "/admin/core/student/add/", - "query_params": "", - "raw_body": "------WebKitFormBoundaryRpJj5X4FcPyeoJmD\r\nContent-Disposition: form-data; name=\"csrfmiddlewaretoken\"\r\n\r\nC0bwOWJRyNpl3F89KHjVAYziYxMEEzXm16il0sBMlKAKqNaBt8OnsFg2WsStYzTb\r\n------WebKitFormBoundaryRpJj5X4FcPyeoJmD\r\nContent-Disposition: form-data; name=\"user\"\r\n\r\n2\r\n------WebKitFormBoundaryRpJj5X4FcPyeoJmD\r\nContent-Disposition: form-data; name=\"npm\"\r\n\r\n1406572321\r\n------WebKitFormBoundaryRpJj5X4FcPyeoJmD\r\nContent-Disposition: form-data; name=\"resume\"; filename=\"\"\r\nContent-Type: application/octet-stream\r\n\r\n\r\n------WebKitFormBoundaryRpJj5X4FcPyeoJmD\r\nContent-Disposition: form-data; name=\"phone_number\"\r\n\r\n1234\r\n------WebKitFormBoundaryRpJj5X4FcPyeoJmD\r\nContent-Disposition: form-data; name=\"_save\"\r\n\r\nSave\r\n------WebKitFormBoundaryRpJj5X4FcPyeoJmD--\r\n", - "body": "{\n \"_save\": [\n \"Save\"\n ],\n \"csrfmiddlewaretoken\": [\n \"C0bwOWJRyNpl3F89KHjVAYziYxMEEzXm16il0sBMlKAKqNaBt8OnsFg2WsStYzTb\"\n ],\n \"npm\": [\n \"1406572321\"\n ],\n \"phone_number\": [\n \"1234\"\n ],\n \"resume\": [\n \"\"\n ],\n \"user\": [\n \"2\"\n ]\n}", - "method": "POST", - "start_time": "2017-03-27T14:56:14.570Z", - "view_name": "admin:core_student_add", - "end_time": "2017-03-27T14:56:14.812Z", - "time_taken": 242.159, - "encoded_headers": "{\"CONTENT-LENGTH\": \"751\", \"CONTENT-TYPE\": \"multipart/form-data; boundary=----WebKitFormBoundaryRpJj5X4FcPyeoJmD\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"CACHE-CONTROL\": \"max-age=0\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/student/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 8 - } -}, -{ - "model": "silk.request", - "pk": "aa23639f-282b-41ad-af44-140cd4a0c4e5", - "fields": { - "path": "/admin/core/vacancy/1/change/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T17:17:48.244Z", - "view_name": "admin:core_vacancy_change", - "end_time": "2017-03-27T17:17:48.515Z", - "time_taken": 271.185, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/vacancy/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 5 - } -}, -{ - "model": "silk.request", - "pk": "aac92f61-33fc-4851-963d-c5bbd1db85fa", - "fields": { - "path": "/admin/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:22:03.275Z", - "view_name": "admin:index", - "end_time": "2017-03-27T15:22:03.407Z", - "time_taken": 132.09, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/student/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 3 - } -}, -{ - "model": "silk.request", - "pk": "ac603383-5bb9-424f-b42d-c3a0b7c17658", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:33:39.771Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T14:33:39.856Z", - "time_taken": 85.057, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"localhost:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://localhost:8000/admin/core/company/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "ad052a13-c249-4d3c-9c28-45b911e1c100", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:33:35.344Z", - "view_name": "index", - "end_time": "2017-03-27T14:33:35.424Z", - "time_taken": 80.052, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"localhost:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://localhost:8000/admin/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "aea8884f-0c9d-41bc-9b5d-d38c0f603ff6", - "fields": { - "path": "/api/students/4/bookmarked-vacancies/", - "query_params": "", - "raw_body": "{\n \"vacancy_id\": 1\n}", - "body": "{\n \"vacancy_id\": 1\n}", - "method": "POST", - "start_time": "2017-03-27T16:45:45.020Z", - "view_name": "student-bookmarked-vacancies", - "end_time": "2017-03-27T16:45:46.058Z", - "time_taken": 1037.693, - "encoded_headers": "{\"CONTENT-LENGTH\": \"23\", \"CONTENT-TYPE\": \"application/json\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"X-CSRFTOKEN\": \"jq91BuF5e5R7SjMFRc2TNfvWU8lDO6wyIwgQN0x0122wfrO7ADxlFWcGS3rs86sn\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 4 - } -}, -{ - "model": "silk.request", - "pk": "b1732f2a-9b94-4bbb-8354-c3cdf802df47", - "fields": { - "path": "/admin/core/supervisor/add/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:22:13.458Z", - "view_name": "admin:core_supervisor_add", - "end_time": "2017-03-27T15:22:13.657Z", - "time_taken": 198.133, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/supervisor/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 4 - } -}, -{ - "model": "silk.request", - "pk": "b1e8867d-eb67-4f9f-95af-3cf33a653048", - "fields": { - "path": "/api", - "query_params": "{\"format\": \"openapi\"}", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:31:00.014Z", - "view_name": "rest_framework_swagger.views.SwaggerSchemaView", - "end_time": "2017-03-27T15:31:00.186Z", - "time_taken": 172.115, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json;charset=utf-8,*/*\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "b3b902c6-b609-43d9-83bd-49aeb26d562c", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:53:46.594Z", - "view_name": "index", - "end_time": "2017-03-27T14:53:46.702Z", - "time_taken": 108.076, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "b3bfbf86-5cb6-4b75-8585-ee31decac147", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:33:55.232Z", - "view_name": "index", - "end_time": "2017-03-27T14:33:55.316Z", - "time_taken": 84.057, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"localhost:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://localhost:8000/admin/core/company/1/change/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "b4fd231c-1a2c-462a-a913-40ea6dc5b632", - "fields": { - "path": "/admin/auth/user/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:56:57.805Z", - "view_name": "admin:auth_user_changelist", - "end_time": "2017-03-27T15:56:58.193Z", - "time_taken": 388.259, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 6 - } -}, -{ - "model": "silk.request", - "pk": "b66d940b-e3b9-4ae4-96ee-9b0e684c0e53", - "fields": { - "path": "/admin/auth/user/add/", - "query_params": "", - "raw_body": "------WebKitFormBoundaryi2un84ggEcWBVeVG\r\nContent-Disposition: form-data; name=\"csrfmiddlewaretoken\"\r\n\r\nc9yLZ1yDTcFVYlQLCqZHv0HtIicz2qKIBfFAbxqyG9QkltSdlRu9nHodGdiomqGx\r\n------WebKitFormBoundaryi2un84ggEcWBVeVG\r\nContent-Disposition: form-data; name=\"username\"\r\n\r\nfarhansuper\r\n------WebKitFormBoundaryi2un84ggEcWBVeVG\r\nContent-Disposition: form-data; name=\"password1\"\r\n\r\naan991super\r\n------WebKitFormBoundaryi2un84ggEcWBVeVG\r\nContent-Disposition: form-data; name=\"password2\"\r\n\r\naan991super\r\n------WebKitFormBoundaryi2un84ggEcWBVeVG\r\nContent-Disposition: form-data; name=\"_save\"\r\n\r\nSave\r\n------WebKitFormBoundaryi2un84ggEcWBVeVG--\r\n", - "body": "{\n \"_save\": [\n \"Save\"\n ],\n \"csrfmiddlewaretoken\": [\n \"c9yLZ1yDTcFVYlQLCqZHv0HtIicz2qKIBfFAbxqyG9QkltSdlRu9nHodGdiomqGx\"\n ],\n \"password1\": [\n \"aan991super\"\n ],\n \"password2\": [\n \"aan991super\"\n ],\n \"username\": [\n \"farhansuper\"\n ]\n}", - "method": "POST", - "start_time": "2017-03-27T14:54:46.592Z", - "view_name": "admin:auth_user_add", - "end_time": "2017-03-27T14:54:46.787Z", - "time_taken": 195.127, - "encoded_headers": "{\"CONTENT-LENGTH\": \"630\", \"CONTENT-TYPE\": \"multipart/form-data; boundary=----WebKitFormBoundaryi2un84ggEcWBVeVG\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"CACHE-CONTROL\": \"max-age=0\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 3 - } -}, -{ - "model": "silk.request", - "pk": "b7045c15-74c9-4f49-9679-ece11f53f84d", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T17:18:00.041Z", - "view_name": "index", - "end_time": "2017-03-27T17:18:00.106Z", - "time_taken": 65.044, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/company/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "b8b1550a-e0f0-446d-b5b1-752f34b1d9cb", - "fields": { - "path": "/api/vacancies/", - "query_params": "{\"page\": \"1\"}", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T17:08:26.895Z", - "view_name": "vacancy-list", - "end_time": "2017-03-27T17:08:27.566Z", - "time_taken": 671.447, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"X-CSRFTOKEN\": \"ffCF3xfzsNpezbMEgaFCPhzCQygxEAOKElJuf37ufKADWjO6ZBa4HYgmOtmmYAKz\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 3 - } -}, -{ - "model": "silk.request", - "pk": "b91925da-e9de-45bc-ad2e-253858671417", - "fields": { - "path": "/api/students/1/bookmarked-vacancies/", - "query_params": "", - "raw_body": "yhayhayha", - "body": "yhayhayha", - "method": "POST", - "start_time": "2017-03-27T15:42:59.810Z", - "view_name": "student-bookmarked-vacancies", - "end_time": "2017-03-27T15:42:59.896Z", - "time_taken": 86.057, - "encoded_headers": "{\"CONTENT-LENGTH\": \"9\", \"CONTENT-TYPE\": \"application/json\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"X-CSRFTOKEN\": \"jq91BuF5e5R7SjMFRc2TNfvWU8lDO6wyIwgQN0x0122wfrO7ADxlFWcGS3rs86sn\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "b9938e59-859e-4a13-9b7d-a3c81641e923", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T17:17:46.064Z", - "view_name": "index", - "end_time": "2017-03-27T17:17:46.130Z", - "time_taken": 66.044, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/vacancy/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "ba24d21c-d54b-4531-a70e-458041e270f7", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T17:17:56.438Z", - "view_name": "index", - "end_time": "2017-03-27T17:17:56.514Z", - "time_taken": 75.049, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "baa82de7-859e-47cf-8a41-72e61edd5226", - "fields": { - "path": "/admin/auth/user/add/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:52:18.395Z", - "view_name": "admin:auth_user_add", - "end_time": "2017-03-27T14:52:18.554Z", - "time_taken": 159.108, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 3 - } -}, -{ - "model": "silk.request", - "pk": "baccf422-5572-4f41-a439-918e77b21a51", - "fields": { - "path": "/admin/core/vacancy/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:23:08.836Z", - "view_name": "admin:core_vacancy_changelist", - "end_time": "2017-03-27T15:23:08.984Z", - "time_taken": 148.099, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 5 - } -}, -{ - "model": "silk.request", - "pk": "bb2bd743-cabe-4460-baf9-0f0ce03a6c7f", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:33:52.849Z", - "view_name": "index", - "end_time": "2017-03-27T14:33:52.912Z", - "time_taken": 63.043, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"localhost:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://localhost:8000/admin/core/company/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "bb9ca922-d90f-4c12-aa43-8d78b288a067", - "fields": { - "path": "/api", - "query_params": "{\"format\": \"openapi\"}", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T18:19:03.448Z", - "view_name": "rest_framework_swagger.views.SwaggerSchemaView", - "end_time": "2017-03-27T18:19:03.655Z", - "time_taken": 207.137, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json;charset=utf-8,*/*\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "bc1cab28-2c10-4e3c-968d-7f8c989e49c4", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:22:11.412Z", - "view_name": "index", - "end_time": "2017-03-27T15:22:11.483Z", - "time_taken": 71.047, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/supervisor/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "bc3ca836-0e79-4419-8ceb-d8a5e3109f84", - "fields": { - "path": "/api", - "query_params": "{\"format\": \"openapi\"}", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T18:30:13.580Z", - "view_name": "rest_framework_swagger.views.SwaggerSchemaView", - "end_time": "2017-03-27T18:30:13.934Z", - "time_taken": 354.238, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json;charset=utf-8,*/*\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "bc6350f5-d212-4f3c-a898-66544f3fc7ec", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:52:35.270Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T14:52:35.367Z", - "time_taken": 97.064, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/2/change/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "bd353e81-ebd9-4199-bfa3-1ad81915baaf", - "fields": { - "path": "/api/students/2/bookmarked-vacancies/", - "query_params": "", - "raw_body": "{\n \"company\": 2,\n \"verified\": false,\n \"open_time\": \"2017-03-27T15:23:20Z\",\n \"close_time\": \"2017-03-27T15:23:22Z\"\n }", - "body": "{\n \"close_time\": \"2017-03-27T15:23:22Z\",\n \"company\": 2,\n \"open_time\": \"2017-03-27T15:23:20Z\",\n \"verified\": false\n}", - "method": "POST", - "start_time": "2017-03-27T15:48:36.788Z", - "view_name": "student-bookmarked-vacancies", - "end_time": "2017-03-27T15:48:36.940Z", - "time_taken": 152.1, - "encoded_headers": "{\"CONTENT-LENGTH\": \"128\", \"CONTENT-TYPE\": \"application/json\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"X-CSRFTOKEN\": \"jq91BuF5e5R7SjMFRc2TNfvWU8lDO6wyIwgQN0x0122wfrO7ADxlFWcGS3rs86sn\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "bd5ccf4a-59a3-4192-8175-d9f931ed7408", - "fields": { - "path": "/api/vacancies/1/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T17:16:06.419Z", - "view_name": "vacancy-detail", - "end_time": "2017-03-27T17:16:06.566Z", - "time_taken": 147.099, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"X-CSRFTOKEN\": \"w7I4GVUoJw5EhYHLdxW87sAh8JrM4RufVdPTSrMjwtg3E6JdWYrAZ9h16ExBoRq4\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 3 - } -}, -{ - "model": "silk.request", - "pk": "be08dd99-4e82-400a-a46b-e90c75162b6c", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:23:09.323Z", - "view_name": "index", - "end_time": "2017-03-27T15:23:09.389Z", - "time_taken": 66.044, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/vacancy/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "bffc910c-1efc-49bf-91dc-359c648ac7ec", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:21:45.676Z", - "view_name": "index", - "end_time": "2017-03-27T15:21:45.734Z", - "time_taken": 58.037, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/student/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "c05580d8-d759-4972-866d-07fe13405ed6", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:23:44.435Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T15:23:44.522Z", - "time_taken": 87.058, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/application/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "c07230ca-bf47-452d-924c-8657150a0c42", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:33:13.008Z", - "view_name": "index", - "end_time": "2017-03-27T14:33:13.083Z", - "time_taken": 75.05, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"localhost:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://localhost:8000/admin/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "c16253c3-a1a6-4078-8a84-1fbca8189d0e", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T17:17:54.192Z", - "view_name": "index", - "end_time": "2017-03-27T17:17:54.274Z", - "time_taken": 82.055, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/vacancy/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "c23c3ce3-67af-4691-9c2c-8f0a363c89dc", - "fields": { - "path": "/admin/login/", - "query_params": "{\"next\": \"/admin/\"}", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:32:32.212Z", - "view_name": "admin:login", - "end_time": "2017-03-27T14:32:32.377Z", - "time_taken": 165.111, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"localhost:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "c2ea75e4-8c80-474a-8ca7-b73d6ed51480", - "fields": { - "path": "/admin/auth/user/add/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:53:56.526Z", - "view_name": "admin:auth_user_add", - "end_time": "2017-03-27T14:53:56.664Z", - "time_taken": 138.091, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "c2f47060-b247-41b1-96a8-7a547070548d", - "fields": { - "path": "/api/vacancies/", - "query_params": "{\"page\": \"1\"}", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T17:08:46.024Z", - "view_name": "vacancy-list", - "end_time": "2017-03-27T17:08:46.122Z", - "time_taken": 98.064, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"X-CSRFTOKEN\": \"ffCF3xfzsNpezbMEgaFCPhzCQygxEAOKElJuf37ufKADWjO6ZBa4HYgmOtmmYAKz\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 3 - } -}, -{ - "model": "silk.request", - "pk": "c3d5b5cd-be07-4cde-b2b9-8cc61dfa6795", - "fields": { - "path": "/admin/login/", - "query_params": "{\"next\": \"/admin/\"}", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:51:56.299Z", - "view_name": "admin:login", - "end_time": "2017-03-27T14:51:56.405Z", - "time_taken": 106.068, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "c4064f01-551b-4068-856a-a0f826610941", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T17:15:39.906Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T17:15:40.038Z", - "time_taken": 132.09, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/student/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "c513db0a-3a61-4e5f-a8ed-3ce9ce79bff0", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:56:15.217Z", - "view_name": "index", - "end_time": "2017-03-27T14:56:15.286Z", - "time_taken": 69.046, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/student/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "c57bc636-c91b-4e51-a6db-46e1487ac3c0", - "fields": { - "path": "/admin/core/student/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:21:44.943Z", - "view_name": "admin:core_student_changelist", - "end_time": "2017-03-27T15:21:45.161Z", - "time_taken": 217.145, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 5 - } -}, -{ - "model": "silk.request", - "pk": "c5ada41e-e4c5-4cea-aa3a-c3caef48fe7e", - "fields": { - "path": "/api/vacancies/", - "query_params": "{\"page\": \"1\"}", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T18:22:40.539Z", - "view_name": "vacancy-list", - "end_time": "2017-03-27T18:22:40.786Z", - "time_taken": 247.17, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"X-CSRFTOKEN\": \"hiMuREAILfHMCNS76rvOlZq3BeRV4AL2GoTj3asDycSbZVUzPS0gdG7Nz9XKoAHR\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 5 - } -}, -{ - "model": "silk.request", - "pk": "c682cd7a-b5dd-4296-8f20-f8f4e590d45a", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T17:15:42.680Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T17:15:42.773Z", - "time_taken": 93.062, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/student/1/change/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "c7031832-23a9-4c25-a883-9fa0eedf6c39", - "fields": { - "path": "/admin/core/vacancy/add/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:23:11.122Z", - "view_name": "admin:core_vacancy_add", - "end_time": "2017-03-27T15:23:11.301Z", - "time_taken": 179.12, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/vacancy/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 4 - } -}, -{ - "model": "silk.request", - "pk": "c7fee591-a04a-4265-89aa-cf4a1d699ed5", - "fields": { - "path": "/api", - "query_params": "{\"format\": \"openapi\"}", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:43:26.878Z", - "view_name": "rest_framework_swagger.views.SwaggerSchemaView", - "end_time": "2017-03-27T15:43:27.080Z", - "time_taken": 201.133, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json;charset=utf-8,*/*\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "cab2f23c-b2da-40e1-a55d-386a9984471c", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:55:13.228Z", - "view_name": "index", - "end_time": "2017-03-27T14:55:13.306Z", - "time_taken": 78.053, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "caee840e-9791-458c-822f-8324677c7a09", - "fields": { - "path": "/admin", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:51:51.945Z", - "view_name": "index", - "end_time": "2017-03-27T14:51:52.166Z", - "time_taken": 220.147, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "cb17a51f-ce50-4ffa-8b4d-62304c3894af", - "fields": { - "path": "/api/vacancies/", - "query_params": "{\"page\": \"1\"}", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T17:16:59.601Z", - "view_name": "vacancy-list", - "end_time": "2017-03-27T17:16:59.810Z", - "time_taken": 209.141, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"X-CSRFTOKEN\": \"w7I4GVUoJw5EhYHLdxW87sAh8JrM4RufVdPTSrMjwtg3E6JdWYrAZ9h16ExBoRq4\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 3 - } -}, -{ - "model": "silk.request", - "pk": "cc0f2a90-9739-4675-9a28-776afa4004d7", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:21:49.773Z", - "view_name": "index", - "end_time": "2017-03-27T15:21:49.840Z", - "time_taken": 67.043, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/student/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "ce48fc09-aa92-4adb-8bb2-857d8b4427dc", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:33:54.734Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T14:33:54.816Z", - "time_taken": 82.055, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"localhost:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://localhost:8000/admin/core/company/1/change/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "ceab8336-c4a7-4232-be6e-4dc62d2d0c99", - "fields": { - "path": "/api/students/4/bookmarked-vacancies/", - "query_params": "", - "raw_body": "{\n \"company\": 2,\n \"verified\": false,\n \"open_time\": \"2017-03-27T15:23:20Z\",\n \"close_time\": \"2017-03-27T15:23:22Z\"\n }", - "body": "{\n \"close_time\": \"2017-03-27T15:23:22Z\",\n \"company\": 2,\n \"open_time\": \"2017-03-27T15:23:20Z\",\n \"verified\": false\n}", - "method": "POST", - "start_time": "2017-03-27T15:48:50.769Z", - "view_name": "student-bookmarked-vacancies", - "end_time": "2017-03-27T15:48:50.920Z", - "time_taken": 151.101, - "encoded_headers": "{\"CONTENT-LENGTH\": \"128\", \"CONTENT-TYPE\": \"application/json\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"X-CSRFTOKEN\": \"jq91BuF5e5R7SjMFRc2TNfvWU8lDO6wyIwgQN0x0122wfrO7ADxlFWcGS3rs86sn\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "ceb91b4b-4be9-4382-a1d9-6bf32afdd7e3", - "fields": { - "path": "/api/students/2/bookmarked-vacancies/", - "query_params": "", - "raw_body": "{\n \"user\": 2,\n \"npm\": 1406572321,\n \"phone_number\": \"\",\n \"bookmarked_vacancies\": []\n}", - "body": "{\n \"bookmarked_vacancies\": [],\n \"npm\": 1406572321,\n \"phone_number\": \"\",\n \"user\": 2\n}", - "method": "POST", - "start_time": "2017-03-27T15:37:21.443Z", - "view_name": "student-bookmarked-vacancies", - "end_time": "2017-03-27T15:37:21.595Z", - "time_taken": 152.102, - "encoded_headers": "{\"CONTENT-LENGTH\": \"88\", \"CONTENT-TYPE\": \"application/json\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"X-CSRFTOKEN\": \"jq91BuF5e5R7SjMFRc2TNfvWU8lDO6wyIwgQN0x0122wfrO7ADxlFWcGS3rs86sn\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "cfa62b9c-af1e-4b2a-a941-8c9dd21e24c9", - "fields": { - "path": "/api", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T18:30:12.629Z", - "view_name": "rest_framework_swagger.views.SwaggerSchemaView", - "end_time": "2017-03-27T18:30:12.925Z", - "time_taken": 296.196, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"CACHE-CONTROL\": \"max-age=0\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "cfaac135-fc01-41ee-b1a3-4c93813a0465", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:33:37.508Z", - "view_name": "index", - "end_time": "2017-03-27T14:33:37.610Z", - "time_taken": 102.069, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"localhost:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://localhost:8000/admin/core/company/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "d04920b1-c46a-4567-80f1-befe48310d93", - "fields": { - "path": "/static/img/logo.png", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:32:26.629Z", - "view_name": "index", - "end_time": "2017-03-27T14:32:26.701Z", - "time_taken": 72.049, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"localhost:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://localhost:8000/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "d0c60800-eb4d-4d70-8305-21348cd1a0a4", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:55:57.146Z", - "view_name": "index", - "end_time": "2017-03-27T14:55:57.257Z", - "time_taken": 110.072, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/student/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "d166bd14-5890-44cb-85a2-72d2a3fb7a6b", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:22:11.207Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T15:22:11.313Z", - "time_taken": 106.071, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/supervisor/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "d1748b59-cc96-4ea2-be46-b6916bdd9ba0", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:33:32.238Z", - "view_name": "index", - "end_time": "2017-03-27T14:33:32.304Z", - "time_taken": 66.043, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"localhost:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://localhost:8000/admin/core/vacancy/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "d2cce75c-1b2c-4f52-8c6c-9ee18a942084", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:58:06.049Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T14:58:06.140Z", - "time_taken": 91.06, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/student/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "d2f1567f-6cc7-4fa3-917d-79919ad1a7f5", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T17:15:40.256Z", - "view_name": "index", - "end_time": "2017-03-27T17:15:40.323Z", - "time_taken": 67.044, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/student/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "d37159f8-b02d-4f6c-949e-d5d7497242f8", - "fields": { - "path": "/admin/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:21:41.063Z", - "view_name": "admin:index", - "end_time": "2017-03-27T15:21:41.445Z", - "time_taken": 382.256, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 3 - } -}, -{ - "model": "silk.request", - "pk": "d3dc6386-5b58-49cc-baa0-e265c6e6d51e", - "fields": { - "path": "/admin/auth/user/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T17:15:34.258Z", - "view_name": "admin:auth_user_changelist", - "end_time": "2017-03-27T17:15:34.475Z", - "time_taken": 217.145, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 6 - } -}, -{ - "model": "silk.request", - "pk": "d3eca652-eebe-4962-938f-a94a842d84d9", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:55:09.893Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T14:55:10.005Z", - "time_taken": 112.075, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/4/change/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "d42d8683-0db6-4cf9-8ad0-6afdc83d25c0", - "fields": { - "path": "/admin/login/", - "query_params": "{\"next\": \"/admin/\"}", - "raw_body": "csrfmiddlewaretoken=x0lC8SZMMs9DZLMwW1OG0sld831D0nLEYYeevclymfLWL3cHOuWOoTcwFrsoCQRU&username=kape&password=yukcarikape&next=%2Fadmin%2F", - "body": "{\n \"csrfmiddlewaretoken\": [\n \"x0lC8SZMMs9DZLMwW1OG0sld831D0nLEYYeevclymfLWL3cHOuWOoTcwFrsoCQRU\"\n ],\n \"next\": [\n \"/admin/\"\n ],\n \"password\": [\n \"yukcarikape\"\n ],\n \"username\": [\n \"kape\"\n ]\n}", - "method": "POST", - "start_time": "2017-03-27T14:52:05.634Z", - "view_name": "admin:login", - "end_time": "2017-03-27T14:52:05.844Z", - "time_taken": 210.141, - "encoded_headers": "{\"CONTENT-LENGTH\": \"136\", \"CONTENT-TYPE\": \"application/x-www-form-urlencoded\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"CACHE-CONTROL\": \"max-age=0\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/login/?next=/admin/\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 3 - } -}, -{ - "model": "silk.request", - "pk": "d4577c81-2b8f-4163-ae1b-1e29d0d161b1", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:54:14.145Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T14:54:14.237Z", - "time_taken": 92.063, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "d4d8cbff-0265-4701-b835-362bc61719d7", - "fields": { - "path": "/admin/core/vacancy/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T17:17:45.554Z", - "view_name": "admin:core_vacancy_changelist", - "end_time": "2017-03-27T17:17:45.711Z", - "time_taken": 157.101, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 5 - } -}, -{ - "model": "silk.request", - "pk": "d5422839-e569-4414-9b71-46e813a8aa74", - "fields": { - "path": "/api", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T18:30:33.020Z", - "view_name": "rest_framework_swagger.views.SwaggerSchemaView", - "end_time": "2017-03-27T18:30:33.296Z", - "time_taken": 275.183, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"CACHE-CONTROL\": \"max-age=0\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "d5b75f8e-9cd5-46cf-81c4-d795bc8c2857", - "fields": { - "path": "/admin/auth/user/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:57:07.878Z", - "view_name": "admin:auth_user_changelist", - "end_time": "2017-03-27T15:57:08.101Z", - "time_taken": 223.151, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 6 - } -}, -{ - "model": "silk.request", - "pk": "d717b3f3-9a6f-45a2-b4da-5606289f6426", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:53:53.951Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T14:53:54.080Z", - "time_taken": 129.087, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "d729e129-a95f-4239-9d43-253357c52cb0", - "fields": { - "path": "/api/students/1/bookmarked-vacancies/", - "query_params": "", - "raw_body": "{\n \"company\": 2,\n \"verified\": false,\n \"open_time\": \"2017-03-27T15:23:20Z\",\n \"close_time\": \"2017-03-27T15:23:22Z\"\n }", - "body": "{\n \"close_time\": \"2017-03-27T15:23:22Z\",\n \"company\": 2,\n \"open_time\": \"2017-03-27T15:23:20Z\",\n \"verified\": false\n}", - "method": "POST", - "start_time": "2017-03-27T15:46:59.374Z", - "view_name": "student-bookmarked-vacancies", - "end_time": "2017-03-27T15:46:59.564Z", - "time_taken": 190.127, - "encoded_headers": "{\"CONTENT-LENGTH\": \"128\", \"CONTENT-TYPE\": \"application/json\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"X-CSRFTOKEN\": \"jq91BuF5e5R7SjMFRc2TNfvWU8lDO6wyIwgQN0x0122wfrO7ADxlFWcGS3rs86sn\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "d732d40b-99e8-445a-9824-2a46376e6734", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T18:18:26.673Z", - "view_name": "index", - "end_time": "2017-03-27T18:18:26.750Z", - "time_taken": 77.052, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/api/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "d855c02e-f7f9-43bd-9752-e3d0b7e53e74", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:56:21.977Z", - "view_name": "index", - "end_time": "2017-03-27T14:56:22.046Z", - "time_taken": 69.047, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "d8c7162f-a56d-4b18-8979-b8faf05797df", - "fields": { - "path": "/admin/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:32:32.034Z", - "view_name": "admin:index", - "end_time": "2017-03-27T14:32:32.188Z", - "time_taken": 153.101, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"localhost:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "d95c74b4-3cb6-48d3-b8db-51f1858078db", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:53:28.925Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T14:53:29.085Z", - "time_taken": 160.108, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "da06b818-0ead-4cb1-a259-6d8699f8e6d3", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:52:22.245Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T14:52:22.352Z", - "time_taken": 107.072, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "da311857-4e71-4169-9c5a-640764617d38", - "fields": { - "path": "/api/students/1/bookmarked-vacancies/", - "query_params": "", - "raw_body": "{\n \"user\": {},\n \"npm\": 0,\n \"phone_number\": \"string\",\n \"bookmarked_vacancies\": [\n \"string\"\n ]\n}", - "body": "{\n \"bookmarked_vacancies\": [\n \"string\"\n ],\n \"npm\": 0,\n \"phone_number\": \"string\",\n \"user\": {}\n}", - "method": "POST", - "start_time": "2017-03-27T15:35:34.028Z", - "view_name": "student-bookmarked-vacancies", - "end_time": "2017-03-27T15:35:34.179Z", - "time_taken": 151.101, - "encoded_headers": "{\"CONTENT-LENGTH\": \"102\", \"CONTENT-TYPE\": \"application/json\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"X-CSRFTOKEN\": \"jq91BuF5e5R7SjMFRc2TNfvWU8lDO6wyIwgQN0x0122wfrO7ADxlFWcGS3rs86sn\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "dafd0acf-9d73-4487-b0c2-655024e3c650", - "fields": { - "path": "/api/students/1/bookmarked-vacancies/", - "query_params": "", - "raw_body": "{\n \"user\": 2,\n \"npm\": 1406572321,\n \"phone_number\": \"\",\n \"bookmarked_vacancies\": []\n}", - "body": "{\n \"bookmarked_vacancies\": [],\n \"npm\": 1406572321,\n \"phone_number\": \"\",\n \"user\": 2\n}", - "method": "POST", - "start_time": "2017-03-27T15:37:03.005Z", - "view_name": "student-bookmarked-vacancies", - "end_time": "2017-03-27T15:37:03.196Z", - "time_taken": 191.126, - "encoded_headers": "{\"CONTENT-LENGTH\": \"88\", \"CONTENT-TYPE\": \"application/json\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"X-CSRFTOKEN\": \"jq91BuF5e5R7SjMFRc2TNfvWU8lDO6wyIwgQN0x0122wfrO7ADxlFWcGS3rs86sn\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "dbc2fca4-0983-49f1-b77f-2faa4de8e3c7", - "fields": { - "path": "/admin/auth/user/add/", - "query_params": "", - "raw_body": "------WebKitFormBoundarygj0bAr74AQRcnocE\r\nContent-Disposition: form-data; name=\"csrfmiddlewaretoken\"\r\n\r\n2PlMKfgOPkKJyt7aEpRX7mO7YZV7IPwHrVsBWL8JChV8VB9CnQmpZ3vRWU1W2Psw\r\n------WebKitFormBoundarygj0bAr74AQRcnocE\r\nContent-Disposition: form-data; name=\"username\"\r\n\r\nfarhan\r\n------WebKitFormBoundarygj0bAr74AQRcnocE\r\nContent-Disposition: form-data; name=\"password1\"\r\n\r\n\r\n------WebKitFormBoundarygj0bAr74AQRcnocE\r\nContent-Disposition: form-data; name=\"password2\"\r\n\r\n\r\n------WebKitFormBoundarygj0bAr74AQRcnocE\r\nContent-Disposition: form-data; name=\"_save\"\r\n\r\nSave\r\n------WebKitFormBoundarygj0bAr74AQRcnocE--\r\n", - "body": "{\n \"_save\": [\n \"Save\"\n ],\n \"csrfmiddlewaretoken\": [\n \"2PlMKfgOPkKJyt7aEpRX7mO7YZV7IPwHrVsBWL8JChV8VB9CnQmpZ3vRWU1W2Psw\"\n ],\n \"password1\": [\n \"\"\n ],\n \"password2\": [\n \"\"\n ],\n \"username\": [\n \"farhan\"\n ]\n}", - "method": "POST", - "start_time": "2017-03-27T14:52:22.010Z", - "view_name": "admin:auth_user_add", - "end_time": "2017-03-27T14:52:22.179Z", - "time_taken": 169.111, - "encoded_headers": "{\"CONTENT-LENGTH\": \"603\", \"CONTENT-TYPE\": \"multipart/form-data; boundary=----WebKitFormBoundarygj0bAr74AQRcnocE\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"CACHE-CONTROL\": \"max-age=0\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 3 - } -}, -{ - "model": "silk.request", - "pk": "dcbec714-4d8a-47f0-b0e1-447518100cf3", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:22:07.782Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T15:22:07.897Z", - "time_taken": 115.078, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/company/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "dd4dc0cf-28e4-492a-8754-3036b67f7239", - "fields": { - "path": "/api", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T18:23:49.081Z", - "view_name": "rest_framework_swagger.views.SwaggerSchemaView", - "end_time": "2017-03-27T18:23:49.394Z", - "time_taken": 313.209, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"CACHE-CONTROL\": \"max-age=0\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "de2a5568-1762-4d7d-afe1-733d9f7f985a", - "fields": { - "path": "/admin/core/company/add/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:33:39.516Z", - "view_name": "admin:core_company_add", - "end_time": "2017-03-27T14:33:39.672Z", - "time_taken": 155.104, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"localhost:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://localhost:8000/admin/core/company/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 4 - } -}, -{ - "model": "silk.request", - "pk": "df4ea062-5345-413d-a855-258841507a7c", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T17:17:59.833Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T17:17:59.930Z", - "time_taken": 97.066, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/company/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "e27c16aa-f1fc-415c-a11a-6f54f98999f2", - "fields": { - "path": "/api/students/1/bookmarked-vacancies/", - "query_params": "", - "raw_body": "{\n \"company\": 2,\n \"verified\": false,\n \"open_time\": \"2017-03-27T15:23:20Z\",\n \"close_time\": \"2017-03-27T15:23:22Z\"\n }", - "body": "{\n \"close_time\": \"2017-03-27T15:23:22Z\",\n \"company\": 2,\n \"open_time\": \"2017-03-27T15:23:20Z\",\n \"verified\": false\n}", - "method": "POST", - "start_time": "2017-03-27T15:51:30.533Z", - "view_name": "student-bookmarked-vacancies", - "end_time": "2017-03-27T15:51:30.681Z", - "time_taken": 147.099, - "encoded_headers": "{\"CONTENT-LENGTH\": \"128\", \"CONTENT-TYPE\": \"application/json\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"X-CSRFTOKEN\": \"jq91BuF5e5R7SjMFRc2TNfvWU8lDO6wyIwgQN0x0122wfrO7ADxlFWcGS3rs86sn\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "e2a9f704-7cd6-4ee2-af9d-cb6e0a3f114f", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T17:13:36.992Z", - "view_name": "index", - "end_time": "2017-03-27T17:13:37.126Z", - "time_taken": 134.09, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "e3443f04-9b4d-4f5a-b692-99eab466a719", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:57:05.020Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T15:57:05.133Z", - "time_taken": 113.076, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/2/change/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "e5f5074b-d001-482c-ae12-05d2879d5249", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:56:14.936Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T14:56:15.026Z", - "time_taken": 90.061, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/student/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "e688b22c-4aa4-4254-b2fc-542dc6e70eb5", - "fields": { - "path": "/admin/core/student/add/", - "query_params": "", - "raw_body": "------WebKitFormBoundaryUlrTCLE50vX1V2ue\r\nContent-Disposition: form-data; name=\"csrfmiddlewaretoken\"\r\n\r\njudgWMglYbS0uinrGMrQZe5U80lx7mlFIAk58i8gL83pRqpTpdWiRVME6Vrmrmhu\r\n------WebKitFormBoundaryUlrTCLE50vX1V2ue\r\nContent-Disposition: form-data; name=\"user\"\r\n\r\n2\r\n------WebKitFormBoundaryUlrTCLE50vX1V2ue\r\nContent-Disposition: form-data; name=\"npm\"\r\n\r\n1406572321\r\n------WebKitFormBoundaryUlrTCLE50vX1V2ue\r\nContent-Disposition: form-data; name=\"resume\"; filename=\"1.txt\"\r\nContent-Type: text/plain\r\n\r\nsalju di arab\r\nfitnah syam --> perbanyak ibadah\r\nwafanya raja arab (abdul aziz bin said-->anak ke 7 abdullah)\r\nmengeringnya sungai eufrat\r\n-\r\n-\r\n-\r\nmeteor (penyanyi wanita, alat musik menyebar dimana2, menyebar khamr)\r\n\r\nSYARAT\r\n\r\ndukhan\r\ndajjal\r\nisa\r\nyajuj majuj\r\n\r\n----- selesai fase\r\nmatahari terbit di barat\r\ndabbah\r\nangin lembut maut\r\n\r\n----- selesai fase umat muslim\r\ngempa\r\ngempa\r\napi\r\n------WebKitFormBoundaryUlrTCLE50vX1V2ue\r\nContent-Disposition: form-data; name=\"phone_number\"\r\n\r\n1231\r\n------WebKitFormBoundaryUlrTCLE50vX1V2ue\r\nContent-Disposition: form-data; name=\"_save\"\r\n\r\nSave\r\n------WebKitFormBoundaryUlrTCLE50vX1V2ue--\r\n", - "body": "{\n \"_save\": [\n \"Save\"\n ],\n \"csrfmiddlewaretoken\": [\n \"judgWMglYbS0uinrGMrQZe5U80lx7mlFIAk58i8gL83pRqpTpdWiRVME6Vrmrmhu\"\n ],\n \"npm\": [\n \"1406572321\"\n ],\n \"phone_number\": [\n \"1231\"\n ],\n \"user\": [\n \"2\"\n ]\n}", - "method": "POST", - "start_time": "2017-03-27T15:16:21.281Z", - "view_name": "admin:core_student_add", - "end_time": "2017-03-27T15:16:22.253Z", - "time_taken": 971.645, - "encoded_headers": "{\"CONTENT-LENGTH\": \"1133\", \"CONTENT-TYPE\": \"multipart/form-data; boundary=----WebKitFormBoundaryUlrTCLE50vX1V2ue\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"CACHE-CONTROL\": \"max-age=0\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/student/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 8 - } -}, -{ - "model": "silk.request", - "pk": "e6b4aee5-58fc-4a26-9a04-49a066759e8c", - "fields": { - "path": "/admin/core/company/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:55:44.762Z", - "view_name": "admin:core_company_changelist", - "end_time": "2017-03-27T14:55:44.937Z", - "time_taken": 175.116, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"CACHE-CONTROL\": \"max-age=0\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/company/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 5 - } -}, -{ - "model": "silk.request", - "pk": "e6e5a6a2-7aa1-467d-8ea7-76e51bbdec78", - "fields": { - "path": "/admin/core/company/add/", - "query_params": "", - "raw_body": "------WebKitFormBoundary5n1XxRrRlteX6XMO\r\nContent-Disposition: form-data; name=\"csrfmiddlewaretoken\"\r\n\r\nbxoyYO6scc6PePtTxI6qR8fvm1oB51i1ADvnakYnZ9heBXvlg9BSJPWfkWuqp1eQ\r\n------WebKitFormBoundary5n1XxRrRlteX6XMO\r\nContent-Disposition: form-data; name=\"user\"\r\n\r\n3\r\n------WebKitFormBoundary5n1XxRrRlteX6XMO\r\nContent-Disposition: form-data; name=\"description\"\r\n\r\nfarhancorp\r\n------WebKitFormBoundary5n1XxRrRlteX6XMO\r\nContent-Disposition: form-data; name=\"_save\"\r\n\r\nSave\r\n------WebKitFormBoundary5n1XxRrRlteX6XMO--\r\n", - "body": "{\n \"_save\": [\n \"Save\"\n ],\n \"csrfmiddlewaretoken\": [\n \"bxoyYO6scc6PePtTxI6qR8fvm1oB51i1ADvnakYnZ9heBXvlg9BSJPWfkWuqp1eQ\"\n ],\n \"description\": [\n \"farhancorp\"\n ],\n \"user\": [\n \"3\"\n ]\n}", - "method": "POST", - "start_time": "2017-03-27T14:55:44.586Z", - "view_name": "admin:core_company_add", - "end_time": "2017-03-27T14:55:44.697Z", - "time_taken": 111.072, - "encoded_headers": "{\"CONTENT-LENGTH\": \"510\", \"CONTENT-TYPE\": \"multipart/form-data; boundary=----WebKitFormBoundary5n1XxRrRlteX6XMO\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"CACHE-CONTROL\": \"max-age=0\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/company/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 5 - } -}, -{ - "model": "silk.request", - "pk": "e869377f-5891-4cd3-b39a-3a0a0f3334cc", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T17:13:40.996Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T17:13:41.258Z", - "time_taken": 262.174, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "e9119e1e-a6cb-4b6a-9590-1955cccfef53", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:23:25.615Z", - "view_name": "index", - "end_time": "2017-03-27T15:23:25.689Z", - "time_taken": 73.048, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/vacancy/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "e9cab203-cb12-4690-8714-a1a5cda0d3ca", - "fields": { - "path": "/api/students/1/bookmarked-vacancies/", - "query_params": "", - "raw_body": "{}", - "body": "{}", - "method": "POST", - "start_time": "2017-03-27T15:42:00.332Z", - "view_name": "student-bookmarked-vacancies", - "end_time": "2017-03-27T15:42:00.811Z", - "time_taken": 479.321, - "encoded_headers": "{\"CONTENT-LENGTH\": \"2\", \"CONTENT-TYPE\": \"application/json\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"X-CSRFTOKEN\": \"jq91BuF5e5R7SjMFRc2TNfvWU8lDO6wyIwgQN0x0122wfrO7ADxlFWcGS3rs86sn\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 8 - } -}, -{ - "model": "silk.request", - "pk": "ea92b5da-2291-4fbe-bb06-e93f363596e0", - "fields": { - "path": "/admin/core/student/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:14:27.254Z", - "view_name": "admin:core_student_changelist", - "end_time": "2017-03-27T15:14:27.406Z", - "time_taken": 152.102, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 5 - } -}, -{ - "model": "silk.request", - "pk": "eaaf36e9-80f7-4239-8090-a3c0958b6b2c", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:52:19.039Z", - "view_name": "index", - "end_time": "2017-03-27T14:52:19.107Z", - "time_taken": 68.047, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "eacb1777-73dc-455b-bc1e-fdd20cab20fb", - "fields": { - "path": "/api", - "query_params": "{\"format\": \"openapi\"}", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T18:30:33.604Z", - "view_name": "rest_framework_swagger.views.SwaggerSchemaView", - "end_time": "2017-03-27T18:30:33.832Z", - "time_taken": 228.152, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"ACCEPT\": \"application/json;charset=utf-8,*/*\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"REFERER\": \"http://127.0.0.1:8000/api\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "eb71d75c-3583-4879-9daa-1f28851dbc9e", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T17:17:42.791Z", - "view_name": "index", - "end_time": "2017-03-27T17:17:42.871Z", - "time_taken": 80.053, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "eb7a6270-e3ff-456b-a8c9-af31f290ddc9", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T17:15:34.695Z", - "view_name": "index", - "end_time": "2017-03-27T17:15:34.801Z", - "time_taken": 106.071, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "ecc712ca-aa5b-467e-9646-a9abf4b50f03", - "fields": { - "path": "/admin/core/vacancy/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:33:31.878Z", - "view_name": "admin:core_vacancy_changelist", - "end_time": "2017-03-27T14:33:32.028Z", - "time_taken": 150.101, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"localhost:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://localhost:8000/admin/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 5 - } -}, -{ - "model": "silk.request", - "pk": "ed3b0c74-c2c2-4692-8bfd-d24e50bb123f", - "fields": { - "path": "/admin/core/vacancy/add/", - "query_params": "", - "raw_body": "------WebKitFormBoundarypYhnHHhuxJdSUFOh\r\nContent-Disposition: form-data; name=\"csrfmiddlewaretoken\"\r\n\r\nUbZANvgHhieLBPL8av0d2eHuDgsxRBrLjh6pZ18C4fpaYXNATWvFUVoeBbymbBnA\r\n------WebKitFormBoundarypYhnHHhuxJdSUFOh\r\nContent-Disposition: form-data; name=\"company\"\r\n\r\n2\r\n------WebKitFormBoundarypYhnHHhuxJdSUFOh\r\nContent-Disposition: form-data; name=\"open_time_0\"\r\n\r\n2017-03-27\r\n------WebKitFormBoundarypYhnHHhuxJdSUFOh\r\nContent-Disposition: form-data; name=\"open_time_1\"\r\n\r\n15:23:20\r\n------WebKitFormBoundarypYhnHHhuxJdSUFOh\r\nContent-Disposition: form-data; name=\"close_time_0\"\r\n\r\n2017-03-27\r\n------WebKitFormBoundarypYhnHHhuxJdSUFOh\r\nContent-Disposition: form-data; name=\"close_time_1\"\r\n\r\n15:23:22\r\n------WebKitFormBoundarypYhnHHhuxJdSUFOh\r\nContent-Disposition: form-data; name=\"_save\"\r\n\r\nSave\r\n------WebKitFormBoundarypYhnHHhuxJdSUFOh--\r\n", - "body": "{\n \"_save\": [\n \"Save\"\n ],\n \"close_time_0\": [\n \"2017-03-27\"\n ],\n \"close_time_1\": [\n \"15:23:22\"\n ],\n \"company\": [\n \"2\"\n ],\n \"csrfmiddlewaretoken\": [\n \"UbZANvgHhieLBPL8av0d2eHuDgsxRBrLjh6pZ18C4fpaYXNATWvFUVoeBbymbBnA\"\n ],\n \"open_time_0\": [\n \"2017-03-27\"\n ],\n \"open_time_1\": [\n \"15:23:20\"\n ]\n}", - "method": "POST", - "start_time": "2017-03-27T15:23:24.735Z", - "view_name": "admin:core_vacancy_add", - "end_time": "2017-03-27T15:23:24.910Z", - "time_taken": 175.114, - "encoded_headers": "{\"CONTENT-LENGTH\": \"835\", \"CONTENT-TYPE\": \"multipart/form-data; boundary=----WebKitFormBoundarypYhnHHhuxJdSUFOh\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"CACHE-CONTROL\": \"max-age=0\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/vacancy/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 4 - } -}, -{ - "model": "silk.request", - "pk": "ede22694-0952-4bfb-9cd6-9825f7c15d40", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:23:25.322Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T15:23:25.426Z", - "time_taken": 104.069, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/vacancy/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "ee249942-b058-43b8-9ae8-2120a9ffef0d", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:55:17.147Z", - "view_name": "index", - "end_time": "2017-03-27T14:55:17.219Z", - "time_taken": 72.049, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/company/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "ee6bc742-b098-4527-b8c0-23afb7406905", - "fields": { - "path": "/admin/core/company/add/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:55:29.588Z", - "view_name": "admin:core_company_add", - "end_time": "2017-03-27T14:55:29.735Z", - "time_taken": 147.097, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/company/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 3 - } -}, -{ - "model": "silk.request", - "pk": "eee3dd70-c963-48ef-8933-bbf1ca9e8bb2", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T17:17:45.813Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T17:17:45.897Z", - "time_taken": 84.057, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/vacancy/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "efb8ec32-b2e0-49d1-9f62-d83ba32057b5", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:56:26.716Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T14:56:26.809Z", - "time_taken": 93.061, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/student/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "f0578b22-8d60-4fb1-ab15-d876fc737597", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:55:27.022Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T14:55:27.121Z", - "time_taken": 99.067, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/company/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "f0737783-5f9e-4467-bd62-ccffb74cd1e5", - "fields": { - "path": "/admin/core/application/add/", - "query_params": "", - "raw_body": "------WebKitFormBoundaryKE9HLwlN7acZoJd8\r\nContent-Disposition: form-data; name=\"csrfmiddlewaretoken\"\r\n\r\n3ycGLzsbqpxSHWmUgROa7GTA7JsVKhiSsEjvX5k6dmIh44omZijCZnAk5EyK4heH\r\n------WebKitFormBoundaryKE9HLwlN7acZoJd8\r\nContent-Disposition: form-data; name=\"student_npm\"\r\n\r\n1\r\n------WebKitFormBoundaryKE9HLwlN7acZoJd8\r\nContent-Disposition: form-data; name=\"vacancy_id\"\r\n\r\n1\r\n------WebKitFormBoundaryKE9HLwlN7acZoJd8\r\nContent-Disposition: form-data; name=\"_save\"\r\n\r\nSave\r\n------WebKitFormBoundaryKE9HLwlN7acZoJd8--\r\n", - "body": "{\n \"_save\": [\n \"Save\"\n ],\n \"csrfmiddlewaretoken\": [\n \"3ycGLzsbqpxSHWmUgROa7GTA7JsVKhiSsEjvX5k6dmIh44omZijCZnAk5EyK4heH\"\n ],\n \"student_npm\": [\n \"1\"\n ],\n \"vacancy_id\": [\n \"1\"\n ]\n}", - "method": "POST", - "start_time": "2017-03-27T15:23:52.190Z", - "view_name": "admin:core_application_add", - "end_time": "2017-03-27T15:23:52.320Z", - "time_taken": 130.088, - "encoded_headers": "{\"CONTENT-LENGTH\": \"507\", \"CONTENT-TYPE\": \"multipart/form-data; boundary=----WebKitFormBoundaryKE9HLwlN7acZoJd8\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"CACHE-CONTROL\": \"max-age=0\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/application/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 8 - } -}, -{ - "model": "silk.request", - "pk": "f0835e93-d9e8-473c-a32e-02d2224e8372", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:55:54.722Z", - "view_name": "index", - "end_time": "2017-03-27T14:55:54.791Z", - "time_taken": 69.045, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/student/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "f12da9a5-3ac7-4783-b3cc-ecd92dbb6faf", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:52:12.079Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T14:52:12.174Z", - "time_taken": 95.063, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "f16af82e-15db-44f3-a6cd-0a8aae16ab9d", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T17:17:48.620Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T17:17:48.708Z", - "time_taken": 88.059, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/vacancy/1/change/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "f23546ab-ac93-4a50-87ba-e5d93a4c7b41", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:21:49.497Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T15:21:49.602Z", - "time_taken": 104.068, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/student/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "f280e8b5-1fa6-4c06-aa6e-bcecbb918ead", - "fields": { - "path": "/admin/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:33:35.114Z", - "view_name": "admin:index", - "end_time": "2017-03-27T14:33:35.257Z", - "time_taken": 143.096, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"localhost:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://localhost:8000/admin/login/?next=/admin/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 3 - } -}, -{ - "model": "silk.request", - "pk": "f28442e9-0455-4a1a-b580-76f68f4c23d0", - "fields": { - "path": "/admin/core/student/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:21:58.720Z", - "view_name": "admin:core_student_changelist", - "end_time": "2017-03-27T15:21:58.921Z", - "time_taken": 201.135, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"CACHE-CONTROL\": \"max-age=0\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/student/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 5 - } -}, -{ - "model": "silk.request", - "pk": "f433947a-a358-4e40-a5cd-e5caa094aa62", - "fields": { - "path": "/admin/auth/user/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T17:15:30.567Z", - "view_name": "admin:auth_user_changelist", - "end_time": "2017-03-27T17:15:30.772Z", - "time_taken": 204.133, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 6 - } -}, -{ - "model": "silk.request", - "pk": "f56e2139-36dd-41e7-b082-a1aea5f55573", - "fields": { - "path": "/admin/core/supervisor/add/", - "query_params": "", - "raw_body": "------WebKitFormBoundaryYySlTcpSLP1t7Tk7\r\nContent-Disposition: form-data; name=\"csrfmiddlewaretoken\"\r\n\r\nhfHOpkcpq953TME2GGJAcwDfUxx0ee86GlODBQ4kd6gsgUGup7e24dkZSsDPye4V\r\n------WebKitFormBoundaryYySlTcpSLP1t7Tk7\r\nContent-Disposition: form-data; name=\"user\"\r\n\r\n4\r\n------WebKitFormBoundaryYySlTcpSLP1t7Tk7\r\nContent-Disposition: form-data; name=\"nip\"\r\n\r\n100000002\r\n------WebKitFormBoundaryYySlTcpSLP1t7Tk7\r\nContent-Disposition: form-data; name=\"_save\"\r\n\r\nSave\r\n------WebKitFormBoundaryYySlTcpSLP1t7Tk7--\r\n", - "body": "{\n \"_save\": [\n \"Save\"\n ],\n \"csrfmiddlewaretoken\": [\n \"hfHOpkcpq953TME2GGJAcwDfUxx0ee86GlODBQ4kd6gsgUGup7e24dkZSsDPye4V\"\n ],\n \"nip\": [\n \"100000002\"\n ],\n \"user\": [\n \"4\"\n ]\n}", - "method": "POST", - "start_time": "2017-03-27T15:22:39.378Z", - "view_name": "admin:core_supervisor_add", - "end_time": "2017-03-27T15:22:39.578Z", - "time_taken": 200.13, - "encoded_headers": "{\"CONTENT-LENGTH\": \"501\", \"CONTENT-TYPE\": \"multipart/form-data; boundary=----WebKitFormBoundaryYySlTcpSLP1t7Tk7\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"CACHE-CONTROL\": \"max-age=0\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/supervisor/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 6 - } -}, -{ - "model": "silk.request", - "pk": "f5dfb207-5f77-43eb-ae89-094506f4d861", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T15:57:08.319Z", - "view_name": "index", - "end_time": "2017-03-27T15:57:08.412Z", - "time_taken": 93.063, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "f6347d4d-6662-4b8d-baa2-2f87a116b484", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:55:54.379Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T14:55:54.512Z", - "time_taken": 133.088, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/student/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "f735a214-6668-4362-8659-12759001fbfb", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T17:15:32.682Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T17:15:32.795Z", - "time_taken": 113.075, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/3/change/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "f8594dc7-e235-4788-ba44-ef3e0831827c", - "fields": { - "path": "/admin/core/vacancy/2/change/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T18:29:32.387Z", - "view_name": "admin:core_vacancy_change", - "end_time": "2017-03-27T18:29:35.716Z", - "time_taken": 3329.224, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 3 - } -}, -{ - "model": "silk.request", - "pk": "f94edfdb-6f55-433f-b377-927783328dbf", - "fields": { - "path": "/admin/core/vacancy/add/", - "query_params": "{\"_to_field\": \"id\", \"_popup\": \"1\"}", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:57:02.059Z", - "view_name": "admin:core_vacancy_add", - "end_time": "2017-03-27T14:57:03.223Z", - "time_taken": 1163.776, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/student/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 4 - } -}, -{ - "model": "silk.request", - "pk": "f984e7a0-4d1a-4ebc-9e24-b250f2664a8a", - "fields": { - "path": "/admin/auth/user/add/", - "query_params": "", - "raw_body": "------WebKitFormBoundaryc4qat7I9EREcv3Ub\r\nContent-Disposition: form-data; name=\"csrfmiddlewaretoken\"\r\n\r\nyTPAPjGTal2bJOrPQXEraAlqCX8auIkLXZWp1PyOXidA6Wthzo9T2h2aASeZOIgA\r\n------WebKitFormBoundaryc4qat7I9EREcv3Ub\r\nContent-Disposition: form-data; name=\"username\"\r\n\r\nfarhancorp\r\n------WebKitFormBoundaryc4qat7I9EREcv3Ub\r\nContent-Disposition: form-data; name=\"password1\"\r\n\r\naan991corp\r\n------WebKitFormBoundaryc4qat7I9EREcv3Ub\r\nContent-Disposition: form-data; name=\"password2\"\r\n\r\naan991corp\r\n------WebKitFormBoundaryc4qat7I9EREcv3Ub\r\nContent-Disposition: form-data; name=\"_save\"\r\n\r\nSave\r\n------WebKitFormBoundaryc4qat7I9EREcv3Ub--\r\n", - "body": "{\n \"_save\": [\n \"Save\"\n ],\n \"csrfmiddlewaretoken\": [\n \"yTPAPjGTal2bJOrPQXEraAlqCX8auIkLXZWp1PyOXidA6Wthzo9T2h2aASeZOIgA\"\n ],\n \"password1\": [\n \"aan991corp\"\n ],\n \"password2\": [\n \"aan991corp\"\n ],\n \"username\": [\n \"farhancorp\"\n ]\n}", - "method": "POST", - "start_time": "2017-03-27T14:53:39.518Z", - "view_name": "admin:auth_user_add", - "end_time": "2017-03-27T14:53:39.710Z", - "time_taken": 192.124, - "encoded_headers": "{\"CONTENT-LENGTH\": \"627\", \"CONTENT-TYPE\": \"multipart/form-data; boundary=----WebKitFormBoundaryc4qat7I9EREcv3Ub\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"CACHE-CONTROL\": \"max-age=0\", \"ORIGIN\": \"http://127.0.0.1:8000\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 3 - } -}, -{ - "model": "silk.request", - "pk": "fc768874-6455-486d-bcb7-1efefa413f01", - "fields": { - "path": "/favicon.ico", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:52:35.776Z", - "view_name": "index", - "end_time": "2017-03-27T14:52:35.885Z", - "time_taken": 109.072, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"image/webp,image/*,*/*;q=0.8\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/2/change/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 0 - } -}, -{ - "model": "silk.request", - "pk": "fc7bd6c7-f199-4503-b65a-b02b8eac1632", - "fields": { - "path": "/api", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T18:18:29.929Z", - "view_name": "rest_framework_swagger.views.SwaggerSchemaView", - "end_time": "2017-03-27T18:18:30.229Z", - "time_taken": 300.201, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"UPGRADE-INSECURE-REQUESTS\": \"1\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "fe406072-ebcf-4d02-9a33-62aa3efa8c68", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T14:55:29.823Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T14:55:29.916Z", - "time_taken": 93.062, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://127.0.0.1:8000/admin/core/company/add/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.request", - "pk": "fec74af3-d8b7-48a0-8231-5e7164b58cc8", - "fields": { - "path": "/admin/jsi18n/", - "query_params": "", - "raw_body": "", - "body": "", - "method": "GET", - "start_time": "2017-03-27T17:15:28.694Z", - "view_name": "admin:jsi18n", - "end_time": "2017-03-27T17:15:28.793Z", - "time_taken": 99.066, - "encoded_headers": "{\"CONTENT-LENGTH\": \"\", \"CONTENT-TYPE\": \"text/plain\", \"HOST\": \"127.0.0.1:8000\", \"CONNECTION\": \"keep-alive\", \"USER-AGENT\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\", \"ACCEPT\": \"*/*\", \"REFERER\": \"http://127.0.0.1:8000/admin/auth/user/4/change/\", \"ACCEPT-ENCODING\": \"gzip, deflate, sdch, br\", \"ACCEPT-LANGUAGE\": \"id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4\"}", - "meta_time": null, - "meta_num_queries": null, - "meta_time_spent_queries": null, - "pyprofile": "", - "prof_file": "", - "num_sql_queries": 2 - } -}, -{ - "model": "silk.response", - "pk": "0005bda4-e3e6-47fc-89d3-29769f2f50e8", - "fields": { - "request": "da311857-4e71-4169-9c5a-640764617d38", - "status_code": 500, - "raw_body": "QXR0cmlidXRlRXJyb3IgYXQgL2FwaS9zdHVkZW50cy8xL2Jvb2ttYXJrZWQtdmFjYW5jaWVzLwonZGljdCcgb2JqZWN0IGhhcyBubyBhdHRyaWJ1dGUgJ2lkJwoKUmVxdWVzdCBNZXRob2Q6IFBPU1QKUmVxdWVzdCBVUkw6IGh0dHA6Ly8xMjcuMC4wLjE6ODAwMC9hcGkvc3R1ZGVudHMvMS9ib29rbWFya2VkLXZhY2FuY2llcy8KRGphbmdvIFZlcnNpb246IDEuMTAuNQpQeXRob24gRXhlY3V0YWJsZTogQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXHB5dGhvbi5leGUKUHl0aG9uIFZlcnNpb246IDMuNi4wClB5dGhvbiBQYXRoOiBbJ0Q6XFxQUExBJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXHB5dGhvbjM2LnppcCcsICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyXFxETExzJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXGxpYicsICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXGxpYlxcc2l0ZS1wYWNrYWdlcyddClNlcnZlciB0aW1lOiBNb24sIDI3IE1hciAyMDE3IDE1OjM1OjM0ICswMDAwCkluc3RhbGxlZCBBcHBsaWNhdGlvbnM6ClsnZGphbmdvLmNvbnRyaWIuYWRtaW4nLAogJ2RqYW5nby5jb250cmliLmF1dGgnLAogJ2RqYW5nby5jb250cmliLmNvbnRlbnR0eXBlcycsCiAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMnLAogJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzJywKICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcycsCiAnd2VicGFja19sb2FkZXInLAogJ2NvcmUnLAogJ3Jlc3RfZnJhbWV3b3JrJywKICdkamFuZ29fbm9zZScsCiAncmVzdF9mcmFtZXdvcmtfc3dhZ2dlcicsCiAnc2lsayddCkluc3RhbGxlZCBNaWRkbGV3YXJlOgpbJ2RqYW5nby5taWRkbGV3YXJlLnNlY3VyaXR5LlNlY3VyaXR5TWlkZGxld2FyZScsCiAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMubWlkZGxld2FyZS5TZXNzaW9uTWlkZGxld2FyZScsCiAnZGphbmdvLm1pZGRsZXdhcmUuY29tbW9uLkNvbW1vbk1pZGRsZXdhcmUnLAogJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5hdXRoLm1pZGRsZXdhcmUuQXV0aGVudGljYXRpb25NaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5tZXNzYWdlcy5taWRkbGV3YXJlLk1lc3NhZ2VNaWRkbGV3YXJlJywKICdkamFuZ28ubWlkZGxld2FyZS5jbGlja2phY2tpbmcuWEZyYW1lT3B0aW9uc01pZGRsZXdhcmUnLAogJ3NpbGsubWlkZGxld2FyZS5TaWxreU1pZGRsZXdhcmUnXQoKClRyYWNlYmFjazogIAoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXGRqYW5nb1xjb3JlXGhhbmRsZXJzXGV4Y2VwdGlvbi5weSIgaW4gaW5uZXIKICAzOS4gICAgICAgICAgICAgcmVzcG9uc2UgPSBnZXRfcmVzcG9uc2UocmVxdWVzdCkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cY29yZVxoYW5kbGVyc1xiYXNlLnB5IiBpbiBfZ2V0X3Jlc3BvbnNlCiAgMTg3LiAgICAgICAgICAgICAgICAgcmVzcG9uc2UgPSBzZWxmLnByb2Nlc3NfZXhjZXB0aW9uX2J5X21pZGRsZXdhcmUoZSwgcmVxdWVzdCkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cY29yZVxoYW5kbGVyc1xiYXNlLnB5IiBpbiBfZ2V0X3Jlc3BvbnNlCiAgMTg1LiAgICAgICAgICAgICAgICAgcmVzcG9uc2UgPSB3cmFwcGVkX2NhbGxiYWNrKHJlcXVlc3QsICpjYWxsYmFja19hcmdzLCAqKmNhbGxiYWNrX2t3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cdmlld3NcZGVjb3JhdG9yc1xjc3JmLnB5IiBpbiB3cmFwcGVkX3ZpZXcKICA1OC4gICAgICAgICByZXR1cm4gdmlld19mdW5jKCphcmdzLCAqKmt3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3c2V0cy5weSIgaW4gdmlldwogIDgzLiAgICAgICAgICAgICByZXR1cm4gc2VsZi5kaXNwYXRjaChyZXF1ZXN0LCAqYXJncywgKiprd2FyZ3MpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNccmVzdF9mcmFtZXdvcmtcdmlld3MucHkiIGluIGRpc3BhdGNoCiAgNDgzLiAgICAgICAgICAgICByZXNwb25zZSA9IHNlbGYuaGFuZGxlX2V4Y2VwdGlvbihleGMpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNccmVzdF9mcmFtZXdvcmtcdmlld3MucHkiIGluIGhhbmRsZV9leGNlcHRpb24KICA0NDMuICAgICAgICAgICAgIHNlbGYucmFpc2VfdW5jYXVnaHRfZXhjZXB0aW9uKGV4YykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3cy5weSIgaW4gZGlzcGF0Y2gKICA0ODAuICAgICAgICAgICAgIHJlc3BvbnNlID0gaGFuZGxlcihyZXF1ZXN0LCAqYXJncywgKiprd2FyZ3MpCgpGaWxlICJEOlxQUExBXGNvcmVcdmlld3NcYWNjb3VudHMucHkiIGluIGJvb2ttYXJrX3ZhY2FuY2llcwogIDMwLiAgICAgICAgIHZhY2FuY3kgPSBnZXRfb2JqZWN0X29yXzQwNChWYWNhbmN5Lm9iamVjdHMuYWxsKCksIHBrPXJlcXVlc3QuZGF0YS5pZCkKCkV4Y2VwdGlvbiBUeXBlOiBBdHRyaWJ1dGVFcnJvciBhdCAvYXBpL3N0dWRlbnRzLzEvYm9va21hcmtlZC12YWNhbmNpZXMvCkV4Y2VwdGlvbiBWYWx1ZTogJ2RpY3QnIG9iamVjdCBoYXMgbm8gYXR0cmlidXRlICdpZCcKUmVxdWVzdCBpbmZvcm1hdGlvbjoKVVNFUjoga2FwZQoKR0VUOiBObyBHRVQgZGF0YQoKUE9TVDogTm8gUE9TVCBkYXRhCgpGSUxFUzogTm8gRklMRVMgZGF0YQoKQ09PS0lFUzoKc2Vzc2lvbmlkID0gJ2JsdDg3N2c1ZmptdWN4eTNkZDV1eGNpemF2YjlvcG92Jwpjc3JmdG9rZW4gPSAnMUVFUDJTd0t0MUs5UWJXbkZQU3lXUElpYnRPN01BYVZxS0xFZW9vRmdZVnlkallQb2duME93cDI5b1VXNkE2SycKCk1FVEE6CkFMTFVTRVJTUFJPRklMRSA9ICdDOlxcUHJvZ3JhbURhdGEnCkFQUERBVEEgPSAnQzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmcnCkNPTU1PTlBST0dSQU1GSUxFUyA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcQ29tbW9uIEZpbGVzJwpDT01NT05QUk9HUkFNRklMRVMoWDg2KSA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcQ29tbW9uIEZpbGVzJwpDT01NT05QUk9HUkFNVzY0MzIgPSAnQzpcXFByb2dyYW0gRmlsZXNcXENvbW1vbiBGaWxlcycKQ09NUFVURVJOQU1FID0gJ0ZBUkhBTicKQ09NU1BFQyA9ICdDOlxcV0lORE9XU1xcc3lzdGVtMzJcXGNtZC5leGUnCkNPTlRFTlRfTEVOR1RIID0gJzEwMicKQ09OVEVOVF9UWVBFID0gJ2FwcGxpY2F0aW9uL2pzb24nCkNTUkZfQ09PS0lFID0gJzFFRVAyU3dLdDFLOVFiV25GUFN5V1BJaWJ0TzdNQWFWcUtMRWVvb0ZnWVZ5ZGpZUG9nbjBPd3AyOW9VVzZBNksnCkRKQU5HT19TRVRUSU5HU19NT0RVTEUgPSAna2FwZS5zZXR0aW5ncycKRlBTX0JST1dTRVJfQVBQX1BST0ZJTEVfU1RSSU5HID0gJ0ludGVybmV0IEV4cGxvcmVyJwpGUFNfQlJPV1NFUl9VU0VSX1BST0ZJTEVfU1RSSU5HID0gJ0RlZmF1bHQnCkZQX05PX0hPU1RfQ0hFQ0sgPSAnTk8nCkdBVEVXQVlfSU5URVJGQUNFID0gJ0NHSS8xLjEnCkhPTUVEUklWRSA9ICdDOicKSE9NRVBBVEggPSAnXFxVc2Vyc1xcZmFyaGFfMDAwJwpIVFRQX0FDQ0VQVCA9ICdhcHBsaWNhdGlvbi9qc29uJwpIVFRQX0FDQ0VQVF9FTkNPRElORyA9ICdnemlwLCBkZWZsYXRlLCBicicKSFRUUF9BQ0NFUFRfTEFOR1VBR0UgPSAnaWQtSUQsaWQ7cT0wLjgsZW4tVVM7cT0wLjYsZW47cT0wLjQnCkhUVFBfQ09OTkVDVElPTiA9ICdrZWVwLWFsaXZlJwpIVFRQX0NPT0tJRSA9ICdzZXNzaW9uaWQ9Ymx0ODc3ZzVmam11Y3h5M2RkNXV4Y2l6YXZiOW9wb3Y7IGNzcmZ0b2tlbj0xRUVQMlN3S3QxSzlRYlduRlBTeVdQSWlidE83TUFhVnFLTEVlb29GZ1lWeWRqWVBvZ24wT3dwMjlvVVc2QTZLJwpIVFRQX0hPU1QgPSAnMTI3LjAuMC4xOjgwMDAnCkhUVFBfT1JJR0lOID0gJ2h0dHA6Ly8xMjcuMC4wLjE6ODAwMCcKSFRUUF9SRUZFUkVSID0gJ2h0dHA6Ly8xMjcuMC4wLjE6ODAwMC9hcGknCkhUVFBfVVNFUl9BR0VOVCA9ICdNb3ppbGxhLzUuMCAoV2luZG93cyBOVCAxMC4wOyBXT1c2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzU2LjAuMjkyNC44NyBTYWZhcmkvNTM3LjM2JwpIVFRQX1hfQ1NSRlRPS0VOID0gJ2pxOTFCdUY1ZTVSN1NqTUZSYzJUTmZ2V1U4bERPNnd5SXdnUU4weDAxMjJ3ZnJPN0FEeGxGV2NHUzNyczg2c24nCkxPQ0FMQVBQREFUQSA9ICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWwnCkxPR09OU0VSVkVSID0gJ1xcXFxGQVJIQU4nCk5VTUJFUl9PRl9QUk9DRVNTT1JTID0gJzInCk9ORURSSVZFID0gJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxPbmVEcml2ZScKT1MgPSAnV2luZG93c19OVCcKUEFUSCA9ICdDOlxcUHJvZ3JhbURhdGFcXE9yYWNsZVxcSmF2YVxcamF2YXBhdGg7QzpcXFByb2dyYW0gRmlsZXNcXEhhc2tlbGxcXGJpbjtDOlxcUHJvZ3JhbSBGaWxlc1xcSGFza2VsbCBQbGF0Zm9ybVxcNy4xMC4zXFxsaWJcXGV4dHJhbGlic1xcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxIYXNrZWxsIFBsYXRmb3JtXFw3LjEwLjNcXGJpbjtDOlxcV0lORE9XU1xcc3lzdGVtMzI7QzpcXFdJTkRPV1M7QzpcXFdJTkRPV1NcXFN5c3RlbTMyXFxXYmVtO0M6XFxXSU5ET1dTXFxTeXN0ZW0zMlxcV2luZG93c1Bvd2VyU2hlbGxcXHYxLjBcXDtDOlxcUHJvZ3JhbSBGaWxlc1xcSGFza2VsbCBQbGF0Zm9ybVxcNy4xMC4zXFxtaW5nd1xcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxKYXZhXFxqZGsxLjguMF83N1xcYmluO0M6XFxjeWd3aW42NFxcYmluOyVsb2NhbGFwcGRhdGElXFxNaWNyb3NvZnRcXFdpbmRvd3NBcHBzO0Q6XFxYQU1QUFxccGhwO0M6XFxQcm9ncmFtIEZpbGVzXFxHaXRcXGNtZDtDOlxceGFtcHBcXHBocDtDOlxcUHJvZ3JhbURhdGFcXENvbXBvc2VyU2V0dXBcXGJpbjtDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcbm9kZWpzXFw7QzpcXFByb2dyYW0gRmlsZXNcXFBvc3RncmVTUUxcXDkuNlxcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxNQVRMQUJcXFIyMDE3YVxcYmluO0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXFNjcmlwdHNcXDtDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyXFw7QzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmdcXGNhYmFsXFxiaW47RDpcXFhBTVBQXFxwaHA7QzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmdcXENvbXBvc2VyXFx2ZW5kb3JcXGJpbjtDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXE1pY3Jvc29mdFxcV2luZG93c0FwcHM7QzpcXHB5dGhvbi0zLjYuMCcKUEFUSEVYVCA9ICcuQ09NOy5FWEU7LkJBVDsuQ01EOy5WQlM7LlZCRTsuSlM7LkpTRTsuV1NGOy5XU0g7Lk1TQycKUEFUSF9JTkZPID0gJy9hcGkvc3R1ZGVudHMvMS9ib29rbWFya2VkLXZhY2FuY2llcy8nClBST0NFU1NPUl9BUkNISVRFQ1RVUkUgPSAneDg2JwpQUk9DRVNTT1JfQVJDSElURVc2NDMyID0gJ0FNRDY0JwpQUk9DRVNTT1JfSURFTlRJRklFUiA9ICdJbnRlbDY0IEZhbWlseSA2IE1vZGVsIDU4IFN0ZXBwaW5nIDksIEdlbnVpbmVJbnRlbCcKUFJPQ0VTU09SX0xFVkVMID0gJzYnClBST0NFU1NPUl9SRVZJU0lPTiA9ICczYTA5JwpQUk9HUkFNREFUQSA9ICdDOlxcUHJvZ3JhbURhdGEnClBST0dSQU1GSUxFUyA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KScKUFJPR1JBTUZJTEVTKFg4NikgPSAnQzpcXFByb2dyYW0gRmlsZXMgKHg4NiknClBST0dSQU1XNjQzMiA9ICdDOlxcUHJvZ3JhbSBGaWxlcycKUFJPTVBUID0gJyRQJEcnClBTTU9EVUxFUEFUSCA9ICdDOlxcV0lORE9XU1xcc3lzdGVtMzJcXFdpbmRvd3NQb3dlclNoZWxsXFx2MS4wXFxNb2R1bGVzXFwnClBVQkxJQyA9ICdDOlxcVXNlcnNcXFB1YmxpYycKUVVFUllfU1RSSU5HID0gJycKUkVNT1RFX0FERFIgPSAnMTI3LjAuMC4xJwpSRU1PVEVfSE9TVCA9ICcnClJFUVVFU1RfTUVUSE9EID0gJ1BPU1QnClJVTl9NQUlOID0gJ3RydWUnClNDUklQVF9OQU1FID0gJycKU0VSVkVSX05BTUUgPSAnRmFyaGFuJwpTRVJWRVJfUE9SVCA9ICc4MDAwJwpTRVJWRVJfUFJPVE9DT0wgPSAnSFRUUC8xLjEnClNFUlZFUl9TT0ZUV0FSRSA9ICdXU0dJU2VydmVyLzAuMicKU0VTU0lPTk5BTUUgPSAnQ29uc29sZScKU1lTVEVNRFJJVkUgPSAnQzonClNZU1RFTVJPT1QgPSAnQzpcXFdJTkRPV1MnClRFTVAgPSAnQzpcXFVzZXJzXFxGQVJIQV9+MVxcQXBwRGF0YVxcTG9jYWxcXFRlbXAnClRNUCA9ICdDOlxcVXNlcnNcXEZBUkhBX34xXFxBcHBEYXRhXFxMb2NhbFxcVGVtcCcKVVNFUkRPTUFJTiA9ICdGYXJoYW4nClVTRVJET01BSU5fUk9BTUlOR1BST0ZJTEUgPSAnRmFyaGFuJwpVU0VSTkFNRSA9ICdGYXJoYW4gRmFyYXNkYWsnClVTRVJQUk9GSUxFID0gJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwJwpWQk9YX01TSV9JTlNUQUxMX1BBVEggPSAnQzpcXFByb2dyYW0gRmlsZXNcXE9yYWNsZVxcVmlydHVhbEJveFxcJwpXSU5ESVIgPSAnQzpcXFdJTkRPV1MnCndzZ2kuZXJyb3JzID0gPF9pby5UZXh0SU9XcmFwcGVyIG5hbWU9JzxzdGRlcnI+JyBtb2RlPSd3JyBlbmNvZGluZz0ndXRmLTgnPgp3c2dpLmZpbGVfd3JhcHBlciA9ICcnCndzZ2kuaW5wdXQgPSA8X2lvLkJ1ZmZlcmVkUmVhZGVyIG5hbWU9MTk5Mj4Kd3NnaS5tdWx0aXByb2Nlc3MgPSBGYWxzZQp3c2dpLm11bHRpdGhyZWFkID0gVHJ1ZQp3c2dpLnJ1bl9vbmNlID0gRmFsc2UKd3NnaS51cmxfc2NoZW1lID0gJ2h0dHAnCndzZ2kudmVyc2lvbiA9IAoKU2V0dGluZ3M6ClVzaW5nIHNldHRpbmdzIG1vZHVsZSBrYXBlLnNldHRpbmdzCkFCU09MVVRFX1VSTF9PVkVSUklERVMgPSB7fQpBRE1JTlMgPSBbXQpBTExPV0VEX0hPU1RTID0gWydib3QucmVjcnVpdC5pZCcsICcxMDQuMjM2Ljc2LjE2MScsICdsb2NhbGhvc3QnLCAnMTI3LjAuMC4xJ10KQVBQRU5EX1NMQVNIID0gVHJ1ZQpBVVRIRU5USUNBVElPTl9CQUNLRU5EUyA9IFsnZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQnXQpBVVRIX1BBU1NXT1JEX1ZBTElEQVRPUlMgPSAnKioqKioqKioqKioqKioqKioqKionCkFVVEhfVVNFUl9NT0RFTCA9ICdhdXRoLlVzZXInCkJBU0VfRElSID0gJ0Q6XFxQUExBJwpDQUNIRVMgPSB7J2RlZmF1bHQnOiB7J0JBQ0tFTkQnOiAnZGphbmdvLmNvcmUuY2FjaGUuYmFja2VuZHMubG9jbWVtLkxvY01lbUNhY2hlJ319CkNBQ0hFX01JRERMRVdBUkVfQUxJQVMgPSAnZGVmYXVsdCcKQ0FDSEVfTUlERExFV0FSRV9LRVlfUFJFRklYID0gJyoqKioqKioqKioqKioqKioqKioqJwpDQUNIRV9NSURETEVXQVJFX1NFQ09ORFMgPSA2MDAKQ1NSRl9DT09LSUVfQUdFID0gMzE0NDk2MDAKQ1NSRl9DT09LSUVfRE9NQUlOID0gTm9uZQpDU1JGX0NPT0tJRV9IVFRQT05MWSA9IEZhbHNlCkNTUkZfQ09PS0lFX05BTUUgPSAnY3NyZnRva2VuJwpDU1JGX0NPT0tJRV9QQVRIID0gJy8nCkNTUkZfQ09PS0lFX1NFQ1VSRSA9IEZhbHNlCkNTUkZfRkFJTFVSRV9WSUVXID0gJ2RqYW5nby52aWV3cy5jc3JmLmNzcmZfZmFpbHVyZScKQ1NSRl9IRUFERVJfTkFNRSA9ICdIVFRQX1hfQ1NSRlRPS0VOJwpDU1JGX1RSVVNURURfT1JJR0lOUyA9IFtdCkRBVEFCQVNFUyA9IHsnZGVmYXVsdCc6IHsnRU5HSU5FJzogJ2RqYW5nby5kYi5iYWNrZW5kcy5wb3N0Z3Jlc3FsX3BzeWNvcGcyJywgJ05BTUUnOiAna2FwZScsICdVU0VSJzogJ2thcGUnLCAnUEFTU1dPUkQnOiAnKioqKioqKioqKioqKioqKioqKionLCAnSE9TVCc6ICdsb2NhbGhvc3QnLCAnUE9SVCc6ICcnLCAnQVRPTUlDX1JFUVVFU1RTJzogRmFsc2UsICdBVVRPQ09NTUlUJzogVHJ1ZSwgJ0NPTk5fTUFYX0FHRSc6IDAsICdPUFRJT05TJzoge30sICdUSU1FX1pPTkUnOiBOb25lLCAnVEVTVCc6IHsnQ0hBUlNFVCc6IE5vbmUsICdDT0xMQVRJT04nOiBOb25lLCAnTkFNRSc6IE5vbmUsICdNSVJST1InOiBOb25lfX19CkRBVEFCQVNFX1JPVVRFUlMgPSBbXQpEQVRBX1VQTE9BRF9NQVhfTUVNT1JZX1NJWkUgPSAyNjIxNDQwCkRBVEFfVVBMT0FEX01BWF9OVU1CRVJfRklFTERTID0gMTAwMApEQVRFVElNRV9GT1JNQVQgPSAnTiBqLCBZLCBQJwpEQVRFVElNRV9JTlBVVF9GT1JNQVRTID0gWyclWS0lbS0lZCAlSDolTTolUycsICclWS0lbS0lZCAlSDolTTolUy4lZicsICclWS0lbS0lZCAlSDolTScsICclWS0lbS0lZCcsICclbS8lZC8lWSAlSDolTTolUycsICclbS8lZC8lWSAlSDolTTolUy4lZicsICclbS8lZC8lWSAlSDolTScsICclbS8lZC8lWScsICclbS8lZC8leSAlSDolTTolUycsICclbS8lZC8leSAlSDolTTolUy4lZicsICclbS8lZC8leSAlSDolTScsICclbS8lZC8leSddCkRBVEVfRk9STUFUID0gJ04gaiwgWScKREFURV9JTlBVVF9GT1JNQVRTID0gWyclWS0lbS0lZCcsICclbS8lZC8lWScsICclbS8lZC8leScsICclYiAlZCAlWScsICclYiAlZCwgJVknLCAnJWQgJWIgJVknLCAnJWQgJWIsICVZJywgJyVCICVkICVZJywgJyVCICVkLCAlWScsICclZCAlQiAlWScsICclZCAlQiwgJVknXQpERUJVRyA9IFRydWUKREVCVUdfUFJPUEFHQVRFX0VYQ0VQVElPTlMgPSBGYWxzZQpERUNJTUFMX1NFUEFSQVRPUiA9ICcuJwpERUZBVUxUX0NIQVJTRVQgPSAndXRmLTgnCkRFRkFVTFRfQ09OVEVOVF9UWVBFID0gJ3RleHQvaHRtbCcKREVGQVVMVF9FWENFUFRJT05fUkVQT1JURVJfRklMVEVSID0gJ2RqYW5nby52aWV3cy5kZWJ1Zy5TYWZlRXhjZXB0aW9uUmVwb3J0ZXJGaWx0ZXInCkRFRkFVTFRfRklMRV9TVE9SQUdFID0gJ2RqYW5nby5jb3JlLmZpbGVzLnN0b3JhZ2UuRmlsZVN5c3RlbVN0b3JhZ2UnCkRFRkFVTFRfRlJPTV9FTUFJTCA9ICd3ZWJtYXN0ZXJAbG9jYWxob3N0JwpERUZBVUxUX0lOREVYX1RBQkxFU1BBQ0UgPSAnJwpERUZBVUxUX1RBQkxFU1BBQ0UgPSAnJwpESVNBTExPV0VEX1VTRVJfQUdFTlRTID0gW10KRU1BSUxfQkFDS0VORCA9ICdkamFuZ28uY29yZS5tYWlsLmJhY2tlbmRzLnNtdHAuRW1haWxCYWNrZW5kJwpFTUFJTF9IT1NUID0gJ2xvY2FsaG9zdCcKRU1BSUxfSE9TVF9QQVNTV09SRCA9ICcqKioqKioqKioqKioqKioqKioqKicKRU1BSUxfSE9TVF9VU0VSID0gJycKRU1BSUxfUE9SVCA9IDI1CkVNQUlMX1NTTF9DRVJURklMRSA9IE5vbmUKRU1BSUxfU1NMX0tFWUZJTEUgPSAnKioqKioqKioqKioqKioqKioqKionCkVNQUlMX1NVQkpFQ1RfUFJFRklYID0gJ1tEamFuZ29dICcKRU1BSUxfVElNRU9VVCA9IE5vbmUKRU1BSUxfVVNFX1NTTCA9IEZhbHNlCkVNQUlMX1VTRV9UTFMgPSBGYWxzZQpGSUxFX0NIQVJTRVQgPSAndXRmLTgnCkZJTEVfVVBMT0FEX0RJUkVDVE9SWV9QRVJNSVNTSU9OUyA9IE5vbmUKRklMRV9VUExPQURfSEFORExFUlMgPSBbJ2RqYW5nby5jb3JlLmZpbGVzLnVwbG9hZGhhbmRsZXIuTWVtb3J5RmlsZVVwbG9hZEhhbmRsZXInLCAnZGphbmdvLmNvcmUuZmlsZXMudXBsb2FkaGFuZGxlci5UZW1wb3JhcnlGaWxlVXBsb2FkSGFuZGxlciddCkZJTEVfVVBMT0FEX01BWF9NRU1PUllfU0laRSA9IDI2MjE0NDAKRklMRV9VUExPQURfUEVSTUlTU0lPTlMgPSBOb25lCkZJTEVfVVBMT0FEX1RFTVBfRElSID0gTm9uZQpGSVJTVF9EQVlfT0ZfV0VFSyA9IDAKRklYVFVSRV9ESVJTID0gW10KRk9SQ0VfU0NSSVBUX05BTUUgPSBOb25lCkZPUk1BVF9NT0RVTEVfUEFUSCA9IE5vbmUKR1pJUF9DT05URU5UX1RZUEVTID0gCklHTk9SQUJMRV80MDRfVVJMUyA9IFtdCklOU1RBTExFRF9BUFBTID0gWydkamFuZ28uY29udHJpYi5hZG1pbicsICdkamFuZ28uY29udHJpYi5hdXRoJywgJ2RqYW5nby5jb250cmliLmNvbnRlbnR0eXBlcycsICdkamFuZ28uY29udHJpYi5zZXNzaW9ucycsICdkamFuZ28uY29udHJpYi5tZXNzYWdlcycsICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcycsICd3ZWJwYWNrX2xvYWRlcicsICdjb3JlJywgJ3Jlc3RfZnJhbWV3b3JrJywgJ2RqYW5nb19ub3NlJywgJ3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXInLCAnc2lsayddCklOVEVSTkFMX0lQUyA9IFtdCkxBTkdVQUdFUyA9IFsoJ2FmJywgJ0FmcmlrYWFucycpLCAoJ2FyJywgJ0FyYWJpYycpLCAoJ2FzdCcsICdBc3R1cmlhbicpLCAoJ2F6JywgJ0F6ZXJiYWlqYW5pJyksICgnYmcnLCAnQnVsZ2FyaWFuJyksICgnYmUnLCAnQmVsYXJ1c2lhbicpLCAoJ2JuJywgJ0JlbmdhbGknKSwgKCdicicsICdCcmV0b24nKSwgKCdicycsICdCb3NuaWFuJyksICgnY2EnLCAnQ2F0YWxhbicpLCAoJ2NzJywgJ0N6ZWNoJyksICgnY3knLCAnV2Vsc2gnKSwgKCdkYScsICdEYW5pc2gnKSwgKCdkZScsICdHZXJtYW4nKSwgKCdkc2InLCAnTG93ZXIgU29yYmlhbicpLCAoJ2VsJywgJ0dyZWVrJyksICgnZW4nLCAnRW5nbGlzaCcpLCAoJ2VuLWF1JywgJ0F1c3RyYWxpYW4gRW5nbGlzaCcpLCAoJ2VuLWdiJywgJ0JyaXRpc2ggRW5nbGlzaCcpLCAoJ2VvJywgJ0VzcGVyYW50bycpLCAoJ2VzJywgJ1NwYW5pc2gnKSwgKCdlcy1hcicsICdBcmdlbnRpbmlhbiBTcGFuaXNoJyksICgnZXMtY28nLCAnQ29sb21iaWFuIFNwYW5pc2gnKSwgKCdlcy1teCcsICdNZXhpY2FuIFNwYW5pc2gnKSwgKCdlcy1uaScsICdOaWNhcmFndWFuIFNwYW5pc2gnKSwgKCdlcy12ZScsICdWZW5lenVlbGFuIFNwYW5pc2gnKSwgKCdldCcsICdFc3RvbmlhbicpLCAoJ2V1JywgJ0Jhc3F1ZScpLCAoJ2ZhJywgJ1BlcnNpYW4nKSwgKCdmaScsICdGaW5uaXNoJyksICgnZnInLCAnRnJlbmNoJyksICgnZnknLCAnRnJpc2lhbicpLCAoJ2dhJywgJ0lyaXNoJyksICgnZ2QnLCAnU2NvdHRpc2ggR2FlbGljJyksICgnZ2wnLCAnR2FsaWNpYW4nKSwgKCdoZScsICdIZWJyZXcnKSwgKCdoaScsICdIaW5kaScpLCAoJ2hyJywgJ0Nyb2F0aWFuJyksICgnaHNiJywgJ1VwcGVyIFNvcmJpYW4nKSwgKCdodScsICdIdW5nYXJpYW4nKSwgKCdpYScsICdJbnRlcmxpbmd1YScpLCAoJ2lkJywgJ0luZG9uZXNpYW4nKSwgKCdpbycsICdJZG8nKSwgKCdpcycsICdJY2VsYW5kaWMnKSwgKCdpdCcsICdJdGFsaWFuJyksICgnamEnLCAnSmFwYW5lc2UnKSwgKCdrYScsICdHZW9yZ2lhbicpLCAoJ2trJywgJ0themFraCcpLCAoJ2ttJywgJ0tobWVyJyksICgna24nLCAnS2FubmFkYScpLCAoJ2tvJywgJ0tvcmVhbicpLCAoJ2xiJywgJ0x1eGVtYm91cmdpc2gnKSwgKCdsdCcsICdMaXRodWFuaWFuJyksICgnbHYnLCAnTGF0dmlhbicpLCAoJ21rJywgJ01hY2Vkb25pYW4nKSwgKCdtbCcsICdNYWxheWFsYW0nKSwgKCdtbicsICdNb25nb2xpYW4nKSwgKCdtcicsICdNYXJhdGhpJyksICgnbXknLCAnQnVybWVzZScpLCAoJ25iJywgJ05vcndlZ2lhbiBCb2ttw6VsJyksICgnbmUnLCAnTmVwYWxpJyksICgnbmwnLCAnRHV0Y2gnKSwgKCdubicsICdOb3J3ZWdpYW4gTnlub3JzaycpLCAoJ29zJywgJ09zc2V0aWMnKSwgKCdwYScsICdQdW5qYWJpJyksICgncGwnLCAnUG9saXNoJyksICgncHQnLCAnUG9ydHVndWVzZScpLCAoJ3B0LWJyJywgJ0JyYXppbGlhbiBQb3J0dWd1ZXNlJyksICgncm8nLCAnUm9tYW5pYW4nKSwgKCdydScsICdSdXNzaWFuJyksICgnc2snLCAnU2xvdmFrJyksICgnc2wnLCAnU2xvdmVuaWFuJyksICgnc3EnLCAnQWxiYW5pYW4nKSwgKCdzcicsICdTZXJiaWFuJyksICgnc3ItbGF0bicsICdTZXJiaWFuIExhdGluJyksICgnc3YnLCAnU3dlZGlzaCcpLCAoJ3N3JywgJ1N3YWhpbGknKSwgKCd0YScsICdUYW1pbCcpLCAoJ3RlJywgJ1RlbHVndScpLCAoJ3RoJywgJ1RoYWknKSwgKCd0cicsICdUdXJraXNoJyksICgndHQnLCAnVGF0YXInKSwgKCd1ZG0nLCAnVWRtdXJ0JyksICgndWsnLCAnVWtyYWluaWFuJyksICgndXInLCAnVXJkdScpLCAoJ3ZpJywgJ1ZpZXRuYW1lc2UnKSwgKCd6aC1oYW5zJywgJ1NpbXBsaWZpZWQgQ2hpbmVzZScpLCAoJ3poLWhhbnQnLCAnVHJhZGl0aW9uYWwgQ2hpbmVzZScpXQpMQU5HVUFHRVNfQklESSA9IFsnaGUnLCAnYXInLCAnZmEnLCAndXInXQpMQU5HVUFHRV9DT0RFID0gJ2VuLXVzJwpMQU5HVUFHRV9DT09LSUVfQUdFID0gTm9uZQpMQU5HVUFHRV9DT09LSUVfRE9NQUlOID0gTm9uZQpMQU5HVUFHRV9DT09LSUVfTkFNRSA9ICdkamFuZ29fbGFuZ3VhZ2UnCkxBTkdVQUdFX0NPT0tJRV9QQVRIID0gJy8nCkxPQ0FMRV9QQVRIUyA9IFtdCkxPR0dJTkcgPSB7fQpMT0dHSU5HX0NPTkZJRyA9ICdsb2dnaW5nLmNvbmZpZy5kaWN0Q29uZmlnJwpMT0dJTl9SRURJUkVDVF9VUkwgPSAnL2FjY291bnRzL3Byb2ZpbGUvJwpMT0dJTl9VUkwgPSAnL2FjY291bnRzL2xvZ2luLycKTE9HT1VUX1JFRElSRUNUX1VSTCA9IE5vbmUKTUFOQUdFUlMgPSBbXQpNRURJQV9ST09UID0gJy9ob21lL2ZpbGVzJwpNRURJQV9VUkwgPSAnL2ZpbGVzLycKTUVTU0FHRV9TVE9SQUdFID0gJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzLnN0b3JhZ2UuZmFsbGJhY2suRmFsbGJhY2tTdG9yYWdlJwpNSURETEVXQVJFID0gWydkamFuZ28ubWlkZGxld2FyZS5zZWN1cml0eS5TZWN1cml0eU1pZGRsZXdhcmUnLCAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMubWlkZGxld2FyZS5TZXNzaW9uTWlkZGxld2FyZScsICdkamFuZ28ubWlkZGxld2FyZS5jb21tb24uQ29tbW9uTWlkZGxld2FyZScsICdkamFuZ28ubWlkZGxld2FyZS5jc3JmLkNzcmZWaWV3TWlkZGxld2FyZScsICdkamFuZ28uY29udHJpYi5hdXRoLm1pZGRsZXdhcmUuQXV0aGVudGljYXRpb25NaWRkbGV3YXJlJywgJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzLm1pZGRsZXdhcmUuTWVzc2FnZU1pZGRsZXdhcmUnLCAnZGphbmdvLm1pZGRsZXdhcmUuY2xpY2tqYWNraW5nLlhGcmFtZU9wdGlvbnNNaWRkbGV3YXJlJywgJ3NpbGsubWlkZGxld2FyZS5TaWxreU1pZGRsZXdhcmUnXQpNSURETEVXQVJFX0NMQVNTRVMgPSBbJ2RqYW5nby5taWRkbGV3YXJlLmNvbW1vbi5Db21tb25NaWRkbGV3YXJlJywgJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJ10KTUlHUkFUSU9OX01PRFVMRVMgPSB7fQpNT05USF9EQVlfRk9STUFUID0gJ0YgaicKTk9TRV9BUkdTID0gWyctLXdpdGgtY292ZXJhZ2UnLCAnLS1jb3Zlci1wYWNrYWdlPWNvcmUudmlld3MnLCAnLS1jb3Zlci1odG1sLWRpcj10ZXN0L2JhY2tlbmQnLCAnLS1jb3Zlci1odG1sJ10KTlVNQkVSX0dST1VQSU5HID0gMApQQVNTV09SRF9IQVNIRVJTID0gJyoqKioqKioqKioqKioqKioqKioqJwpQQVNTV09SRF9SRVNFVF9USU1FT1VUX0RBWVMgPSAnKioqKioqKioqKioqKioqKioqKionClBSRVBFTkRfV1dXID0gRmFsc2UKUkVTVF9GUkFNRVdPUksgPSB7J0RFRkFVTFRfUEVSTUlTU0lPTl9DTEFTU0VTJzogWydyZXN0X2ZyYW1ld29yay5wZXJtaXNzaW9ucy5EamFuZ29Nb2RlbFBlcm1pc3Npb25zT3JBbm9uUmVhZE9ubHknXX0KUk9PVF9VUkxDT05GID0gJ2thcGUudXJscycKUlVOTklOR19ERVZTRVJWRVIgPSBUcnVlClNFQ1JFVF9LRVkgPSAnKioqKioqKioqKioqKioqKioqKionClNFQ1VSRV9CUk9XU0VSX1hTU19GSUxURVIgPSBGYWxzZQpTRUNVUkVfQ09OVEVOVF9UWVBFX05PU05JRkYgPSBGYWxzZQpTRUNVUkVfSFNUU19JTkNMVURFX1NVQkRPTUFJTlMgPSBGYWxzZQpTRUNVUkVfSFNUU19TRUNPTkRTID0gMApTRUNVUkVfUFJPWFlfU1NMX0hFQURFUiA9IE5vbmUKU0VDVVJFX1JFRElSRUNUX0VYRU1QVCA9IFtdClNFQ1VSRV9TU0xfSE9TVCA9IE5vbmUKU0VDVVJFX1NTTF9SRURJUkVDVCA9IEZhbHNlClNFUlZFUl9FTUFJTCA9ICdyb290QGxvY2FsaG9zdCcKU0VTU0lPTl9DQUNIRV9BTElBUyA9ICdkZWZhdWx0JwpTRVNTSU9OX0NPT0tJRV9BR0UgPSAxMjA5NjAwClNFU1NJT05fQ09PS0lFX0RPTUFJTiA9IE5vbmUKU0VTU0lPTl9DT09LSUVfSFRUUE9OTFkgPSBGYWxzZQpTRVNTSU9OX0NPT0tJRV9OQU1FID0gJ3Nlc3Npb25pZCcKU0VTU0lPTl9DT09LSUVfUEFUSCA9ICcvJwpTRVNTSU9OX0NPT0tJRV9TRUNVUkUgPSBGYWxzZQpTRVNTSU9OX0VOR0lORSA9ICdkamFuZ28uY29udHJpYi5zZXNzaW9ucy5iYWNrZW5kcy5kYicKU0VTU0lPTl9FWFBJUkVfQVRfQlJPV1NFUl9DTE9TRSA9IEZhbHNlClNFU1NJT05fRklMRV9QQVRIID0gTm9uZQpTRVNTSU9OX1NBVkVfRVZFUllfUkVRVUVTVCA9IEZhbHNlClNFU1NJT05fU0VSSUFMSVpFUiA9ICdkamFuZ28uY29udHJpYi5zZXNzaW9ucy5zZXJpYWxpemVycy5KU09OU2VyaWFsaXplcicKU0VUVElOR1NfTU9EVUxFID0gJ2thcGUuc2V0dGluZ3MnClNIT1JUX0RBVEVUSU1FX0ZPUk1BVCA9ICdtL2QvWSBQJwpTSE9SVF9EQVRFX0ZPUk1BVCA9ICdtL2QvWScKU0lHTklOR19CQUNLRU5EID0gJ2RqYW5nby5jb3JlLnNpZ25pbmcuVGltZXN0YW1wU2lnbmVyJwpTSUxFTkNFRF9TWVNURU1fQ0hFQ0tTID0gW10KU1RBVElDRklMRVNfRElSUyA9ICdEOlxcUFBMQVxcYXNzZXRzJwpTVEFUSUNGSUxFU19GSU5ERVJTID0gWydkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcy5maW5kZXJzLkZpbGVTeXN0ZW1GaW5kZXInLCAnZGphbmdvLmNvbnRyaWIuc3RhdGljZmlsZXMuZmluZGVycy5BcHBEaXJlY3Rvcmllc0ZpbmRlciddClNUQVRJQ0ZJTEVTX1NUT1JBR0UgPSAnZGphbmdvLmNvbnRyaWIuc3RhdGljZmlsZXMuc3RvcmFnZS5TdGF0aWNGaWxlc1N0b3JhZ2UnClNUQVRJQ19ST09UID0gJy9ob21lL2Fzc2V0cycKU1RBVElDX1VSTCA9ICcvYXNzZXRzLycKVEVNUExBVEVTID0gW3snQkFDS0VORCc6ICdkamFuZ28udGVtcGxhdGUuYmFja2VuZHMuZGphbmdvLkRqYW5nb1RlbXBsYXRlcycsICdESVJTJzogW10sICdBUFBfRElSUyc6IFRydWUsICdPUFRJT05TJzogeydjb250ZXh0X3Byb2Nlc3NvcnMnOiBbJ2RqYW5nby50ZW1wbGF0ZS5jb250ZXh0X3Byb2Nlc3NvcnMuZGVidWcnLCAnZGphbmdvLnRlbXBsYXRlLmNvbnRleHRfcHJvY2Vzc29ycy5yZXF1ZXN0JywgJ2RqYW5nby5jb250cmliLmF1dGguY29udGV4dF9wcm9jZXNzb3JzLmF1dGgnLCAnZGphbmdvLmNvbnRyaWIubWVzc2FnZXMuY29udGV4dF9wcm9jZXNzb3JzLm1lc3NhZ2VzJ119fV0KVEVTVF9OT05fU0VSSUFMSVpFRF9BUFBTID0gW10KVEVTVF9SVU5ORVIgPSAnZGphbmdvX25vc2UuTm9zZVRlc3RTdWl0ZVJ1bm5lcicKVEhPVVNBTkRfU0VQQVJBVE9SID0gJywnClRJTUVfRk9STUFUID0gJ1AnClRJTUVfSU5QVVRfRk9STUFUUyA9IFsnJUg6JU06JVMnLCAnJUg6JU06JVMuJWYnLCAnJUg6JU0nXQpUSU1FX1pPTkUgPSAnVVRDJwpVU0VfRVRBR1MgPSBGYWxzZQpVU0VfSTE4TiA9IFRydWUKVVNFX0wxME4gPSBUcnVlClVTRV9USE9VU0FORF9TRVBBUkFUT1IgPSBGYWxzZQpVU0VfVFogPSBUcnVlClVTRV9YX0ZPUldBUkRFRF9IT1NUID0gRmFsc2UKVVNFX1hfRk9SV0FSREVEX1BPUlQgPSBGYWxzZQpXRUJQQUNLX0xPQURFUiA9IHsnREVGQVVMVCc6IHsnQlVORExFX0RJUl9OQU1FJzogJ2J1bmRsZXMvJywgJ1NUQVRTX0ZJTEUnOiAnRDpcXFBQTEFcXHdlYnBhY2stc3RhdHMuanNvbid9fQpXU0dJX0FQUExJQ0FUSU9OID0gJ2thcGUud3NnaS5hcHBsaWNhdGlvbicKWF9GUkFNRV9PUFRJT05TID0gJ1NBTUVPUklHSU4nCllFQVJfTU9OVEhfRk9STUFUID0gJ0YgWScKCgpZb3UncmUgc2VlaW5nIHRoaXMgZXJyb3IgYmVjYXVzZSB5b3UgaGF2ZSBERUJVRyA9IFRydWUgaW4geW91cgpEamFuZ28gc2V0dGluZ3MgZmlsZS4gQ2hhbmdlIHRoYXQgdG8gRmFsc2UsIGFuZCBEamFuZ28gd2lsbApkaXNwbGF5IGEgc3RhbmRhcmQgcGFnZSBnZW5lcmF0ZWQgYnkgdGhlIGhhbmRsZXIgZm9yIHRoaXMgc3RhdHVzIGNvZGUuCgo=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/plain\"}" - } -}, -{ - "model": "silk.response", - "pk": "0018f5d6-32e5-494e-bb84-5ed6f90a162f", - "fields": { - "request": "7d20935f-acdd-4a92-9be8-35742c726043", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "0363b6fa-2064-4ef8-88f8-f4bb2b62fa0a", - "fields": { - "request": "81ecb7c4-e4ae-45e4-b295-d8042e3603a7", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "040823aa-fbab-4dda-87ec-90dca12c95c7", - "fields": { - "request": "245bf2e0-71b9-4dec-996a-b890cc9e41d3", - "status_code": 400, - "raw_body": "eyJkZXRhaWwiOiJKU09OIHBhcnNlIGVycm9yIC0gRXhwZWN0aW5nIHZhbHVlOiBsaW5lIDEgY29sdW1uIDEgKGNoYXIgMCkifQ==", - "body": "{\n \"detail\": \"JSON parse error - Expecting value: line 1 column 1 (char 0)\"\n}", - "encoded_headers": "{\"Content-Type\": \"application/json\", \"Allow\": \"POST, OPTIONS\", \"Vary\": \"Accept\"}" - } -}, -{ - "model": "silk.response", - "pk": "043a5b19-54d2-4516-8776-8d03c0c349f5", - "fields": { - "request": "bffc910c-1efc-49bf-91dc-359c648ac7ec", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "046f6688-e881-4ad1-b715-901b51145bed", - "fields": { - "request": "7bac2868-bb12-4f36-8985-5a106e6e3804", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "04e878b2-9aab-4bcd-b1a9-bfd9a4db830c", - "fields": { - "request": "d5b75f8e-9cd5-46cf-81c4-d795bc8c2857", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPlNlbGVjdCB1c2VyIHRvIGNoYW5nZSB8IERqYW5nbyBzaXRlIGFkbWluPC90aXRsZT4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvYmFzZS5jc3MiIC8+CgogIAogIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvYWRtaW4vY3NzL2NoYW5nZWxpc3RzLmNzcyIgLz4KICAKICAKICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KICAKICAKICAKCgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvY29yZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL2pxdWVyeS9qcXVlcnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2pxdWVyeS5pbml0LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hZG1pbi9SZWxhdGVkT2JqZWN0TG9va3Vwcy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvYWN0aW9ucy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdXJsaWZ5LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9wcmVwb3B1bGF0ZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL3hyZWdleHAveHJlZ2V4cC5qcyI+PC9zY3JpcHQ+Cgo8bWV0YSBuYW1lPSJyb2JvdHMiIGNvbnRlbnQ9Ik5PTkUsTk9BUkNISVZFIiAvPgo8L2hlYWQ+CgoKPGJvZHkgY2xhc3M9IiBhcHAtYXV0aCBtb2RlbC11c2VyIGNoYW5nZS1saXN0IgogIGRhdGEtYWRtaW4tdXRjLW9mZnNldD0iMCI+Cgo8IS0tIENvbnRhaW5lciAtLT4KPGRpdiBpZD0iY29udGFpbmVyIj4KCiAgICAKICAgIDwhLS0gSGVhZGVyIC0tPgogICAgPGRpdiBpZD0iaGVhZGVyIj4KICAgICAgICA8ZGl2IGlkPSJicmFuZGluZyI+CiAgICAgICAgCjxoMSBpZD0ic2l0ZS1uYW1lIj48YSBocmVmPSIvYWRtaW4vIj5EamFuZ28gYWRtaW5pc3RyYXRpb248L2E+PC9oMT4KCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgPGRpdiBpZD0idXNlci10b29scyI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgV2VsY29tZSwKICAgICAgICAgICAgICAgIDxzdHJvbmc+a2FwZTwvc3Ryb25nPi4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iLyI+VmlldyBzaXRlPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9wYXNzd29yZF9jaGFuZ2UvIj5DaGFuZ2UgcGFzc3dvcmQ8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2xvZ291dC8iPkxvZyBvdXQ8L2E+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIAogICAgPC9kaXY+CiAgICA8IS0tIEVORCBIZWFkZXIgLS0+CiAgICAKPGRpdiBjbGFzcz0iYnJlYWRjcnVtYnMiPgo8YSBocmVmPSIvYWRtaW4vIj5Ib21lPC9hPgomcnNhcXVvOyA8YSBocmVmPSIvYWRtaW4vYXV0aC8iPkF1dGhlbnRpY2F0aW9uIGFuZCBBdXRob3JpemF0aW9uPC9hPgomcnNhcXVvOyBVc2Vycwo8L2Rpdj4KCiAgICAKCiAgICAKICAgICAgICAKICAgIAoKICAgIDwhLS0gQ29udGVudCAtLT4KICAgIDxkaXYgaWQ9ImNvbnRlbnQiIGNsYXNzPSJmbGV4Ij4KICAgICAgICAKICAgICAgICA8aDE+U2VsZWN0IHVzZXIgdG8gY2hhbmdlPC9oMT4KICAgICAgICAKICA8ZGl2IGlkPSJjb250ZW50LW1haW4iPgogICAgCiAgICAgICAgPHVsIGNsYXNzPSJvYmplY3QtdG9vbHMiPgogICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICA8bGk+CiAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci9hZGQvIiBjbGFzcz0iYWRkbGluayI+CiAgICAgICAgICAgICAgICBBZGQgdXNlcgogICAgICAgICAgICAgIDwvYT4KICAgICAgICAgICAgPC9saT4KICAgICAgICAgICAgCiAgICAgICAgICAKICAgICAgICA8L3VsPgogICAgCiAgICAKICAgIDxkaXYgY2xhc3M9Im1vZHVsZSBmaWx0ZXJlZCIgaWQ9ImNoYW5nZWxpc3QiPgogICAgICAKCjxkaXYgaWQ9InRvb2xiYXIiPjxmb3JtIGlkPSJjaGFuZ2VsaXN0LXNlYXJjaCIgbWV0aG9kPSJnZXQiPgo8ZGl2PjwhLS0gRElWIG5lZWRlZCBmb3IgdmFsaWQgSFRNTCAtLT4KPGxhYmVsIGZvcj0ic2VhcmNoYmFyIj48aW1nIHNyYz0iL2Fzc2V0cy9hZG1pbi9pbWcvc2VhcmNoLnN2ZyIgYWx0PSJTZWFyY2giIC8+PC9sYWJlbD4KPGlucHV0IHR5cGU9InRleHQiIHNpemU9IjQwIiBuYW1lPSJxIiB2YWx1ZT0iIiBpZD0ic2VhcmNoYmFyIiBhdXRvZm9jdXMgLz4KPGlucHV0IHR5cGU9InN1Ym1pdCIgdmFsdWU9IlNlYXJjaCIgLz4KCgo8L2Rpdj4KPC9mb3JtPjwvZGl2PgoKCiAgICAgIAoKCiAgICAgIAogICAgICAgIAogICAgICAgICAgPGRpdiBpZD0iY2hhbmdlbGlzdC1maWx0ZXIiPgogICAgICAgICAgICA8aDI+RmlsdGVyPC9oMj4KICAgICAgICAgICAgCjxoMz4gQnkgc3RhZmYgc3RhdHVzIDwvaDM+Cjx1bD4KCiAgICA8bGkgY2xhc3M9InNlbGVjdGVkIj4KICAgIDxhIGhyZWY9Ij8iPkFsbDwvYT48L2xpPgoKICAgIDxsaT4KICAgIDxhIGhyZWY9Ij9pc19zdGFmZl9fZXhhY3Q9MSI+WWVzPC9hPjwvbGk+CgogICAgPGxpPgogICAgPGEgaHJlZj0iP2lzX3N0YWZmX19leGFjdD0wIj5ObzwvYT48L2xpPgoKPC91bD4KCjxoMz4gQnkgc3VwZXJ1c2VyIHN0YXR1cyA8L2gzPgo8dWw+CgogICAgPGxpIGNsYXNzPSJzZWxlY3RlZCI+CiAgICA8YSBocmVmPSI/Ij5BbGw8L2E+PC9saT4KCiAgICA8bGk+CiAgICA8YSBocmVmPSI/aXNfc3VwZXJ1c2VyX19leGFjdD0xIj5ZZXM8L2E+PC9saT4KCiAgICA8bGk+CiAgICA8YSBocmVmPSI/aXNfc3VwZXJ1c2VyX19leGFjdD0wIj5ObzwvYT48L2xpPgoKPC91bD4KCjxoMz4gQnkgYWN0aXZlIDwvaDM+Cjx1bD4KCiAgICA8bGkgY2xhc3M9InNlbGVjdGVkIj4KICAgIDxhIGhyZWY9Ij8iPkFsbDwvYT48L2xpPgoKICAgIDxsaT4KICAgIDxhIGhyZWY9Ij9pc19hY3RpdmVfX2V4YWN0PTEiPlllczwvYT48L2xpPgoKICAgIDxsaT4KICAgIDxhIGhyZWY9Ij9pc19hY3RpdmVfX2V4YWN0PTAiPk5vPC9hPjwvbGk+Cgo8L3VsPgoKICAgICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAKCiAgICAgIDxmb3JtIGlkPSJjaGFuZ2VsaXN0LWZvcm0iIG1ldGhvZD0icG9zdCIgbm92YWxpZGF0ZT48aW5wdXQgdHlwZT0naGlkZGVuJyBuYW1lPSdjc3JmbWlkZGxld2FyZXRva2VuJyB2YWx1ZT0nSkZlTG1QY3NkMTZHcTRNSjUyMGxyU1RjV20zQ1VMVUE4TGxBeWw0bjBZaDVOY09iT3R2Tmp6QVdVaDlyZUxRcCcgLz4KICAgICAgCgogICAgICAKICAgICAgICAgIAo8ZGl2IGNsYXNzPSJhY3Rpb25zIj4KICAgIDxsYWJlbD5BY3Rpb246IDxzZWxlY3QgbmFtZT0iYWN0aW9uIiByZXF1aXJlZD4KPG9wdGlvbiB2YWx1ZT0iIiBzZWxlY3RlZD0ic2VsZWN0ZWQiPi0tLS0tLS0tLTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSJkZWxldGVfc2VsZWN0ZWQiPkRlbGV0ZSBzZWxlY3RlZCB1c2Vyczwvb3B0aW9uPgo8L3NlbGVjdD48L2xhYmVsPjxpbnB1dCBjbGFzcz0ic2VsZWN0LWFjcm9zcyIgbmFtZT0ic2VsZWN0X2Fjcm9zcyIgdHlwZT0iaGlkZGVuIiB2YWx1ZT0iMCIgLz4KICAgIDxidXR0b24gdHlwZT0ic3VibWl0IiBjbGFzcz0iYnV0dG9uIiB0aXRsZT0iUnVuIHRoZSBzZWxlY3RlZCBhY3Rpb24iIG5hbWU9ImluZGV4IiB2YWx1ZT0iMCI+R288L2J1dHRvbj4KICAgIAogICAgICAgIDxzcGFuIGNsYXNzPSJhY3Rpb24tY291bnRlciIgZGF0YS1hY3Rpb25zLWljbnQ9IjQiPjAgb2YgNCBzZWxlY3RlZDwvc3Bhbj4KICAgICAgICAKICAgIAo8L2Rpdj4KCiAgICAgICAgICAKCgo8ZGl2IGNsYXNzPSJyZXN1bHRzIj4KPHRhYmxlIGlkPSJyZXN1bHRfbGlzdCI+Cjx0aGVhZD4KPHRyPgoKPHRoIHNjb3BlPSJjb2wiICBjbGFzcz0iYWN0aW9uLWNoZWNrYm94LWNvbHVtbiI+CiAgIAogICA8ZGl2IGNsYXNzPSJ0ZXh0Ij48c3Bhbj48aW5wdXQgdHlwZT0iY2hlY2tib3giIGlkPSJhY3Rpb24tdG9nZ2xlIiAvPjwvc3Bhbj48L2Rpdj4KICAgPGRpdiBjbGFzcz0iY2xlYXIiPjwvZGl2Pgo8L3RoPgo8dGggc2NvcGU9ImNvbCIgIGNsYXNzPSJzb3J0YWJsZSBjb2x1bW4tdXNlcm5hbWUgc29ydGVkIGFzY2VuZGluZyI+CiAgIAogICAgIAogICAgICAgPGRpdiBjbGFzcz0ic29ydG9wdGlvbnMiPgogICAgICAgICA8YSBjbGFzcz0ic29ydHJlbW92ZSIgaHJlZj0iP289IiB0aXRsZT0iUmVtb3ZlIGZyb20gc29ydGluZyI+PC9hPgogICAgICAgICAKICAgICAgICAgPGEgaHJlZj0iP289LTEiIGNsYXNzPSJ0b2dnbGUgYXNjZW5kaW5nIiB0aXRsZT0iVG9nZ2xlIHNvcnRpbmciPjwvYT4KICAgICAgIDwvZGl2PgogICAgIAogICAKICAgPGRpdiBjbGFzcz0idGV4dCI+PGEgaHJlZj0iP289LTEiPlVzZXJuYW1lPC9hPjwvZGl2PgogICA8ZGl2IGNsYXNzPSJjbGVhciI+PC9kaXY+CjwvdGg+Cjx0aCBzY29wZT0iY29sIiAgY2xhc3M9InNvcnRhYmxlIGNvbHVtbi1lbWFpbCI+CiAgIAogICAgIAogICAKICAgPGRpdiBjbGFzcz0idGV4dCI+PGEgaHJlZj0iP289Mi4xIj5FbWFpbCBhZGRyZXNzPC9hPjwvZGl2PgogICA8ZGl2IGNsYXNzPSJjbGVhciI+PC9kaXY+CjwvdGg+Cjx0aCBzY29wZT0iY29sIiAgY2xhc3M9InNvcnRhYmxlIGNvbHVtbi1maXJzdF9uYW1lIj4KICAgCiAgICAgCiAgIAogICA8ZGl2IGNsYXNzPSJ0ZXh0Ij48YSBocmVmPSI/bz0zLjEiPkZpcnN0IG5hbWU8L2E+PC9kaXY+CiAgIDxkaXYgY2xhc3M9ImNsZWFyIj48L2Rpdj4KPC90aD4KPHRoIHNjb3BlPSJjb2wiICBjbGFzcz0ic29ydGFibGUgY29sdW1uLWxhc3RfbmFtZSI+CiAgIAogICAgIAogICAKICAgPGRpdiBjbGFzcz0idGV4dCI+PGEgaHJlZj0iP289NC4xIj5MYXN0IG5hbWU8L2E+PC9kaXY+CiAgIDxkaXYgY2xhc3M9ImNsZWFyIj48L2Rpdj4KPC90aD4KPHRoIHNjb3BlPSJjb2wiICBjbGFzcz0ic29ydGFibGUgY29sdW1uLWlzX3N0YWZmIj4KICAgCiAgICAgCiAgIAogICA8ZGl2IGNsYXNzPSJ0ZXh0Ij48YSBocmVmPSI/bz01LjEiPlN0YWZmIHN0YXR1czwvYT48L2Rpdj4KICAgPGRpdiBjbGFzcz0iY2xlYXIiPjwvZGl2Pgo8L3RoPgo8L3RyPgo8L3RoZWFkPgo8dGJvZHk+CgoKPHRyIGNsYXNzPSJyb3cxIj48dGQgY2xhc3M9ImFjdGlvbi1jaGVja2JveCI+PGlucHV0IGNsYXNzPSJhY3Rpb24tc2VsZWN0IiBuYW1lPSJfc2VsZWN0ZWRfYWN0aW9uIiB0eXBlPSJjaGVja2JveCIgdmFsdWU9IjIiIC8+PC90ZD48dGggY2xhc3M9ImZpZWxkLXVzZXJuYW1lIj48YSBocmVmPSIvYWRtaW4vYXV0aC91c2VyLzIvY2hhbmdlLyI+ZmFyaGFuPC9hPjwvdGg+PHRkIGNsYXNzPSJmaWVsZC1lbWFpbCI+Jm5ic3A7PC90ZD48dGQgY2xhc3M9ImZpZWxkLWZpcnN0X25hbWUiPiZuYnNwOzwvdGQ+PHRkIGNsYXNzPSJmaWVsZC1sYXN0X25hbWUiPiZuYnNwOzwvdGQ+PHRkIGNsYXNzPSJmaWVsZC1pc19zdGFmZiI+PGltZyBzcmM9Ii9hc3NldHMvYWRtaW4vaW1nL2ljb24tbm8uc3ZnIiBhbHQ9IkZhbHNlIiAvPjwvdGQ+PC90cj4KCgo8dHIgY2xhc3M9InJvdzIiPjx0ZCBjbGFzcz0iYWN0aW9uLWNoZWNrYm94Ij48aW5wdXQgY2xhc3M9ImFjdGlvbi1zZWxlY3QiIG5hbWU9Il9zZWxlY3RlZF9hY3Rpb24iIHR5cGU9ImNoZWNrYm94IiB2YWx1ZT0iMyIgLz48L3RkPjx0aCBjbGFzcz0iZmllbGQtdXNlcm5hbWUiPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL3VzZXIvMy9jaGFuZ2UvIj5mYXJoYW5jb3JwPC9hPjwvdGg+PHRkIGNsYXNzPSJmaWVsZC1lbWFpbCI+Jm5ic3A7PC90ZD48dGQgY2xhc3M9ImZpZWxkLWZpcnN0X25hbWUiPiZuYnNwOzwvdGQ+PHRkIGNsYXNzPSJmaWVsZC1sYXN0X25hbWUiPiZuYnNwOzwvdGQ+PHRkIGNsYXNzPSJmaWVsZC1pc19zdGFmZiI+PGltZyBzcmM9Ii9hc3NldHMvYWRtaW4vaW1nL2ljb24tbm8uc3ZnIiBhbHQ9IkZhbHNlIiAvPjwvdGQ+PC90cj4KCgo8dHIgY2xhc3M9InJvdzEiPjx0ZCBjbGFzcz0iYWN0aW9uLWNoZWNrYm94Ij48aW5wdXQgY2xhc3M9ImFjdGlvbi1zZWxlY3QiIG5hbWU9Il9zZWxlY3RlZF9hY3Rpb24iIHR5cGU9ImNoZWNrYm94IiB2YWx1ZT0iNCIgLz48L3RkPjx0aCBjbGFzcz0iZmllbGQtdXNlcm5hbWUiPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL3VzZXIvNC9jaGFuZ2UvIj5mYXJoYW5zdXBlcjwvYT48L3RoPjx0ZCBjbGFzcz0iZmllbGQtZW1haWwiPiZuYnNwOzwvdGQ+PHRkIGNsYXNzPSJmaWVsZC1maXJzdF9uYW1lIj4mbmJzcDs8L3RkPjx0ZCBjbGFzcz0iZmllbGQtbGFzdF9uYW1lIj4mbmJzcDs8L3RkPjx0ZCBjbGFzcz0iZmllbGQtaXNfc3RhZmYiPjxpbWcgc3JjPSIvYXNzZXRzL2FkbWluL2ltZy9pY29uLW5vLnN2ZyIgYWx0PSJGYWxzZSIgLz48L3RkPjwvdHI+CgoKPHRyIGNsYXNzPSJyb3cyIj48dGQgY2xhc3M9ImFjdGlvbi1jaGVja2JveCI+PGlucHV0IGNsYXNzPSJhY3Rpb24tc2VsZWN0IiBuYW1lPSJfc2VsZWN0ZWRfYWN0aW9uIiB0eXBlPSJjaGVja2JveCIgdmFsdWU9IjEiIC8+PC90ZD48dGggY2xhc3M9ImZpZWxkLXVzZXJuYW1lIj48YSBocmVmPSIvYWRtaW4vYXV0aC91c2VyLzEvY2hhbmdlLyI+a2FwZTwvYT48L3RoPjx0ZCBjbGFzcz0iZmllbGQtZW1haWwiPmthcGVAa2FwZS5jb208L3RkPjx0ZCBjbGFzcz0iZmllbGQtZmlyc3RfbmFtZSI+Jm5ic3A7PC90ZD48dGQgY2xhc3M9ImZpZWxkLWxhc3RfbmFtZSI+Jm5ic3A7PC90ZD48dGQgY2xhc3M9ImZpZWxkLWlzX3N0YWZmIj48aW1nIHNyYz0iL2Fzc2V0cy9hZG1pbi9pbWcvaWNvbi15ZXMuc3ZnIiBhbHQ9IlRydWUiIC8+PC90ZD48L3RyPgoKPC90Ym9keT4KPC90YWJsZT4KPC9kaXY+CgoKICAgICAgICAgIAogICAgICAKICAgICAgCgo8cCBjbGFzcz0icGFnaW5hdG9yIj4KCjQgdXNlcnMKCgo8L3A+CgogICAgICA8L2Zvcm0+CiAgICA8L2Rpdj4KICA8L2Rpdj4KCiAgICAgICAgCiAgICAgICAgPGJyIGNsYXNzPSJjbGVhciIgLz4KICAgIDwvZGl2PgogICAgPCEtLSBFTkQgQ29udGVudCAtLT4KCiAgICA8ZGl2IGlkPSJmb290ZXIiPjwvZGl2Pgo8L2Rpdj4KPCEtLSBFTkQgQ29udGFpbmVyIC0tPgoKPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 15:57:08 GMT\", \"Expires\": \"Mon, 27 Mar 2017 15:57:08 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "052d67d2-be79-4887-a98d-24959573c158", - "fields": { - "request": "7bece041-aa12-4be9-bfe9-c682b2d93f13", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPkFkZCBzdXBlcnZpc29yIHwgRGphbmdvIHNpdGUgYWRtaW48L3RpdGxlPgo8bGluayByZWw9InN0eWxlc2hlZXQiIHR5cGU9InRleHQvY3NzIiBocmVmPSIvYXNzZXRzL2FkbWluL2Nzcy9iYXNlLmNzcyIgLz4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvZm9ybXMuY3NzIiAvPgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9jb3JlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IvanF1ZXJ5L2pxdWVyeS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvanF1ZXJ5LmluaXQuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2FkbWluL1JlbGF0ZWRPYmplY3RMb29rdXBzLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hY3Rpb25zLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy91cmxpZnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL3ByZXBvcHVsYXRlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IveHJlZ2V4cC94cmVnZXhwLmpzIj48L3NjcmlwdD4KCjxtZXRhIG5hbWU9InJvYm90cyIgY29udGVudD0iTk9ORSxOT0FSQ0hJVkUiIC8+CjwvaGVhZD4KCgo8Ym9keSBjbGFzcz0iIGFwcC1jb3JlIG1vZGVsLXN1cGVydmlzb3IgY2hhbmdlLWZvcm0iCiAgZGF0YS1hZG1pbi11dGMtb2Zmc2V0PSIwIj4KCjwhLS0gQ29udGFpbmVyIC0tPgo8ZGl2IGlkPSJjb250YWluZXIiPgoKICAgIAogICAgPCEtLSBIZWFkZXIgLS0+CiAgICA8ZGl2IGlkPSJoZWFkZXIiPgogICAgICAgIDxkaXYgaWQ9ImJyYW5kaW5nIj4KICAgICAgICAKPGgxIGlkPSJzaXRlLW5hbWUiPjxhIGhyZWY9Ii9hZG1pbi8iPkRqYW5nbyBhZG1pbmlzdHJhdGlvbjwvYT48L2gxPgoKICAgICAgICA8L2Rpdj4KICAgICAgICAKICAgICAgICAKICAgICAgICA8ZGl2IGlkPSJ1c2VyLXRvb2xzIj4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICBXZWxjb21lLAogICAgICAgICAgICAgICAgPHN0cm9uZz5rYXBlPC9zdHJvbmc+LgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvIj5WaWV3IHNpdGU8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL3Bhc3N3b3JkX2NoYW5nZS8iPkNoYW5nZSBwYXNzd29yZDwvYT4gLwogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vbG9nb3V0LyI+TG9nIG91dDwvYT4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgCiAgICA8L2Rpdj4KICAgIDwhLS0gRU5EIEhlYWRlciAtLT4KICAgIAo8ZGl2IGNsYXNzPSJicmVhZGNydW1icyI+CjxhIGhyZWY9Ii9hZG1pbi8iPkhvbWU8L2E+CiZyc2FxdW87IDxhIGhyZWY9Ii9hZG1pbi9jb3JlLyI+Q29yZTwvYT4KJnJzYXF1bzsgPGEgaHJlZj0iL2FkbWluL2NvcmUvc3VwZXJ2aXNvci8iPlN1cGVydmlzb3JzPC9hPgomcnNhcXVvOyBBZGQgc3VwZXJ2aXNvcgo8L2Rpdj4KCiAgICAKCiAgICAKICAgICAgICAKICAgIAoKICAgIDwhLS0gQ29udGVudCAtLT4KICAgIDxkaXYgaWQ9ImNvbnRlbnQiIGNsYXNzPSJjb2xNIj4KICAgICAgICAKICAgICAgICA8aDE+QWRkIHN1cGVydmlzb3I8L2gxPgogICAgICAgIDxkaXYgaWQ9ImNvbnRlbnQtbWFpbiI+CgoKCjxmb3JtIGVuY3R5cGU9Im11bHRpcGFydC9mb3JtLWRhdGEiIGFjdGlvbj0iIiBtZXRob2Q9InBvc3QiIGlkPSJzdXBlcnZpc29yX2Zvcm0iIG5vdmFsaWRhdGU+PGlucHV0IHR5cGU9J2hpZGRlbicgbmFtZT0nY3NyZm1pZGRsZXdhcmV0b2tlbicgdmFsdWU9J2hmSE9wa2NwcTk1M1RNRTJHR0pBY3dEZlV4eDBlZTg2R2xPREJRNGtkNmdzZ1VHdXA3ZTI0ZGtaU3NEUHllNFYnIC8+CjxkaXY+CgoKCgogICAgPHAgY2xhc3M9ImVycm9ybm90ZSI+CiAgICBQbGVhc2UgY29ycmVjdCB0aGUgZXJyb3IgYmVsb3cuCiAgICA8L3A+CiAgICAKCgoKCiAgPGZpZWxkc2V0IGNsYXNzPSJtb2R1bGUgYWxpZ25lZCAiPgogICAgCiAgICAKICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImZvcm0tcm93IGZpZWxkLXVzZXIiPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgY2xhc3M9InJlcXVpcmVkIiBmb3I9ImlkX3VzZXIiPlVzZXI6PC9sYWJlbD4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAKPGRpdiBjbGFzcz0icmVsYXRlZC13aWRnZXQtd3JhcHBlciI+CiAgICA8c2VsZWN0IGlkPSJpZF91c2VyIiBuYW1lPSJ1c2VyIiByZXF1aXJlZD4KPG9wdGlvbiB2YWx1ZT0iIj4tLS0tLS0tLS08L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMiI+ZmFyaGFuPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjMiPmZhcmhhbmNvcnA8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iNCIgc2VsZWN0ZWQ9InNlbGVjdGVkIj5mYXJoYW5zdXBlcjwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIxIj5rYXBlPC9vcHRpb24+Cjwvc2VsZWN0PgogICAgCiAgICAgICAgCiAgICAgICAgPGEgY2xhc3M9InJlbGF0ZWQtd2lkZ2V0LXdyYXBwZXItbGluayBjaGFuZ2UtcmVsYXRlZCIgaWQ9ImNoYW5nZV9pZF91c2VyIgogICAgICAgICAgICBkYXRhLWhyZWYtdGVtcGxhdGU9Ii9hZG1pbi9hdXRoL3VzZXIvX19ma19fL2NoYW5nZS8/X3RvX2ZpZWxkPWlkJmFtcDtfcG9wdXA9MSIKICAgICAgICAgICAgdGl0bGU9IkNoYW5nZSBzZWxlY3RlZCB1c2VyIj4KICAgICAgICAgICAgPGltZyBzcmM9Ii9hc3NldHMvYWRtaW4vaW1nL2ljb24tY2hhbmdlbGluay5zdmciIGFsdD0iQ2hhbmdlIi8+CiAgICAgICAgPC9hPgogICAgICAgIAogICAgICAgIAogICAgICAgIDxhIGNsYXNzPSJyZWxhdGVkLXdpZGdldC13cmFwcGVyLWxpbmsgYWRkLXJlbGF0ZWQiIGlkPSJhZGRfaWRfdXNlciIKICAgICAgICAgICAgaHJlZj0iL2FkbWluL2F1dGgvdXNlci9hZGQvP190b19maWVsZD1pZCZhbXA7X3BvcHVwPTEiCiAgICAgICAgICAgIHRpdGxlPSJBZGQgYW5vdGhlciB1c2VyIj4KICAgICAgICAgICAgPGltZyBzcmM9Ii9hc3NldHMvYWRtaW4vaW1nL2ljb24tYWRkbGluay5zdmciIGFsdD0iQWRkIi8+CiAgICAgICAgPC9hPgogICAgICAgIAogICAgICAgIAogICAgCjwvZGl2PgoKICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBlcnJvcnMgZmllbGQtbmlwIj4KICAgICAgICAgICAgPHVsIGNsYXNzPSJlcnJvcmxpc3QiPjxsaT5FbnN1cmUgdGhpcyB2YWx1ZSBpcyBncmVhdGVyIHRoYW4gb3IgZXF1YWwgdG8gMTAwMDAwMDAwLjwvbGk+PC91bD4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgY2xhc3M9InJlcXVpcmVkIiBmb3I9ImlkX25pcCI+TmlwOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgPGlucHV0IGNsYXNzPSJ2SW50ZWdlckZpZWxkIiBpZD0iaWRfbmlwIiBuYW1lPSJuaXAiIHR5cGU9InRleHQiIHZhbHVlPSIxMjM0IiByZXF1aXJlZCAvPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDwvZGl2PgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgIAo8L2ZpZWxkc2V0PgoKCgoKCgoKCgoKCgoKPGRpdiBjbGFzcz0ic3VibWl0LXJvdyI+CjxpbnB1dCB0eXBlPSJzdWJtaXQiIHZhbHVlPSJTYXZlIiBjbGFzcz0iZGVmYXVsdCIgbmFtZT0iX3NhdmUiIC8+CgoKPGlucHV0IHR5cGU9InN1Ym1pdCIgdmFsdWU9IlNhdmUgYW5kIGFkZCBhbm90aGVyIiBuYW1lPSJfYWRkYW5vdGhlciIgLz4KPGlucHV0IHR5cGU9InN1Ym1pdCIgdmFsdWU9IlNhdmUgYW5kIGNvbnRpbnVlIGVkaXRpbmciIG5hbWU9Il9jb250aW51ZSIgLz4KPC9kaXY+CgoKCiAgICA8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIKICAgICAgICAgICAgaWQ9ImRqYW5nby1hZG1pbi1mb3JtLWFkZC1jb25zdGFudHMiCiAgICAgICAgICAgIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9jaGFuZ2VfZm9ybS5qcyIKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICBkYXRhLW1vZGVsLW5hbWU9InN1cGVydmlzb3IiCiAgICAgICAgICAgID4KICAgIDwvc2NyaXB0PgoKCgoKPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiCiAgICAgICAgaWQ9ImRqYW5nby1hZG1pbi1wcmVwb3B1bGF0ZWQtZmllbGRzLWNvbnN0YW50cyIKICAgICAgICBzcmM9Ii9hc3NldHMvYWRtaW4vanMvcHJlcG9wdWxhdGVfaW5pdC5qcyIKICAgICAgICBkYXRhLXByZXBvcHVsYXRlZC1maWVsZHM9IltdIj4KPC9zY3JpcHQ+CgoKPC9kaXY+CjwvZm9ybT48L2Rpdj4KCiAgICAgICAgCiAgICAgICAgPGJyIGNsYXNzPSJjbGVhciIgLz4KICAgIDwvZGl2PgogICAgPCEtLSBFTkQgQ29udGVudCAtLT4KCiAgICA8ZGl2IGlkPSJmb290ZXIiPjwvZGl2Pgo8L2Rpdj4KPCEtLSBFTkQgQ29udGFpbmVyIC0tPgoKPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 15:22:21 GMT\", \"Expires\": \"Mon, 27 Mar 2017 15:22:21 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "060ccaf0-3ddd-46c5-b8ed-b880d74c0bfe", - "fields": { - "request": "d04920b1-c46a-4567-80f1-befe48310d93", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "062feaa2-3533-4a50-90fc-d8feb21b1085", - "fields": { - "request": "a3966cbe-bf35-4b2f-b9b1-2939432d8b4b", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPlNlbGVjdCB2YWNhbmN5IHRvIGNoYW5nZSB8IERqYW5nbyBzaXRlIGFkbWluPC90aXRsZT4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvYmFzZS5jc3MiIC8+CgogIAogIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvYWRtaW4vY3NzL2NoYW5nZWxpc3RzLmNzcyIgLz4KICAKICAKICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KICAKICAKICAKCgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvY29yZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL2pxdWVyeS9qcXVlcnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2pxdWVyeS5pbml0LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hZG1pbi9SZWxhdGVkT2JqZWN0TG9va3Vwcy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvYWN0aW9ucy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdXJsaWZ5LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9wcmVwb3B1bGF0ZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL3hyZWdleHAveHJlZ2V4cC5qcyI+PC9zY3JpcHQ+Cgo8bWV0YSBuYW1lPSJyb2JvdHMiIGNvbnRlbnQ9Ik5PTkUsTk9BUkNISVZFIiAvPgo8L2hlYWQ+CgoKPGJvZHkgY2xhc3M9IiBhcHAtY29yZSBtb2RlbC12YWNhbmN5IGNoYW5nZS1saXN0IgogIGRhdGEtYWRtaW4tdXRjLW9mZnNldD0iMCI+Cgo8IS0tIENvbnRhaW5lciAtLT4KPGRpdiBpZD0iY29udGFpbmVyIj4KCiAgICAKICAgIDwhLS0gSGVhZGVyIC0tPgogICAgPGRpdiBpZD0iaGVhZGVyIj4KICAgICAgICA8ZGl2IGlkPSJicmFuZGluZyI+CiAgICAgICAgCjxoMSBpZD0ic2l0ZS1uYW1lIj48YSBocmVmPSIvYWRtaW4vIj5EamFuZ28gYWRtaW5pc3RyYXRpb248L2E+PC9oMT4KCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgPGRpdiBpZD0idXNlci10b29scyI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgV2VsY29tZSwKICAgICAgICAgICAgICAgIDxzdHJvbmc+a2FwZTwvc3Ryb25nPi4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iLyI+VmlldyBzaXRlPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9wYXNzd29yZF9jaGFuZ2UvIj5DaGFuZ2UgcGFzc3dvcmQ8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2xvZ291dC8iPkxvZyBvdXQ8L2E+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIAogICAgPC9kaXY+CiAgICA8IS0tIEVORCBIZWFkZXIgLS0+CiAgICAKPGRpdiBjbGFzcz0iYnJlYWRjcnVtYnMiPgo8YSBocmVmPSIvYWRtaW4vIj5Ib21lPC9hPgomcnNhcXVvOyA8YSBocmVmPSIvYWRtaW4vY29yZS8iPkNvcmU8L2E+CiZyc2FxdW87IFZhY2FuY3lzCjwvZGl2PgoKICAgIAoKICAgIAogICAgICAgIAogICAgICAgIDx1bCBjbGFzcz0ibWVzc2FnZWxpc3QiPgogICAgICAgICAgPGxpIGNsYXNzPSJzdWNjZXNzIj5UaGUgdmFjYW5jeSAiPGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS8xL2NoYW5nZS8iPlZhY2FuY3kgb2JqZWN0PC9hPiIgd2FzIGFkZGVkIHN1Y2Nlc3NmdWxseS48L2xpPgogICAgICAgIDwvdWw+CiAgICAgICAgCiAgICAKCiAgICA8IS0tIENvbnRlbnQgLS0+CiAgICA8ZGl2IGlkPSJjb250ZW50IiBjbGFzcz0iZmxleCI+CiAgICAgICAgCiAgICAgICAgPGgxPlNlbGVjdCB2YWNhbmN5IHRvIGNoYW5nZTwvaDE+CiAgICAgICAgCiAgPGRpdiBpZD0iY29udGVudC1tYWluIj4KICAgIAogICAgICAgIDx1bCBjbGFzcz0ib2JqZWN0LXRvb2xzIj4KICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgPGxpPgogICAgICAgICAgICAgIAogICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9jb3JlL3ZhY2FuY3kvYWRkLyIgY2xhc3M9ImFkZGxpbmsiPgogICAgICAgICAgICAgICAgQWRkIHZhY2FuY3kKICAgICAgICAgICAgICA8L2E+CiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgCiAgICAgICAgPC91bD4KICAgIAogICAgCiAgICA8ZGl2IGNsYXNzPSJtb2R1bGUiIGlkPSJjaGFuZ2VsaXN0Ij4KICAgICAgCgoKICAgICAgCgoKICAgICAgCiAgICAgICAgCiAgICAgIAoKICAgICAgPGZvcm0gaWQ9ImNoYW5nZWxpc3QtZm9ybSIgbWV0aG9kPSJwb3N0IiBub3ZhbGlkYXRlPjxpbnB1dCB0eXBlPSdoaWRkZW4nIG5hbWU9J2NzcmZtaWRkbGV3YXJldG9rZW4nIHZhbHVlPSd6QUYxT3hoeTZBbWNibm02WGpMVmxrVUtDNXprZTVjbVlHTVEwMzl0VHh4Qnl2b3lHS2duZDFCdUEwRjl5NThiJyAvPgogICAgICAKCiAgICAgIAogICAgICAgICAgCjxkaXYgY2xhc3M9ImFjdGlvbnMiPgogICAgPGxhYmVsPkFjdGlvbjogPHNlbGVjdCBuYW1lPSJhY3Rpb24iIHJlcXVpcmVkPgo8b3B0aW9uIHZhbHVlPSIiIHNlbGVjdGVkPSJzZWxlY3RlZCI+LS0tLS0tLS0tPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9ImRlbGV0ZV9zZWxlY3RlZCI+RGVsZXRlIHNlbGVjdGVkIHZhY2FuY3lzPC9vcHRpb24+Cjwvc2VsZWN0PjwvbGFiZWw+PGlucHV0IGNsYXNzPSJzZWxlY3QtYWNyb3NzIiBuYW1lPSJzZWxlY3RfYWNyb3NzIiB0eXBlPSJoaWRkZW4iIHZhbHVlPSIwIiAvPgogICAgPGJ1dHRvbiB0eXBlPSJzdWJtaXQiIGNsYXNzPSJidXR0b24iIHRpdGxlPSJSdW4gdGhlIHNlbGVjdGVkIGFjdGlvbiIgbmFtZT0iaW5kZXgiIHZhbHVlPSIwIj5HbzwvYnV0dG9uPgogICAgCiAgICAgICAgPHNwYW4gY2xhc3M9ImFjdGlvbi1jb3VudGVyIiBkYXRhLWFjdGlvbnMtaWNudD0iMSI+MCBvZiAxIHNlbGVjdGVkPC9zcGFuPgogICAgICAgIAogICAgCjwvZGl2PgoKICAgICAgICAgIAoKCjxkaXYgY2xhc3M9InJlc3VsdHMiPgo8dGFibGUgaWQ9InJlc3VsdF9saXN0Ij4KPHRoZWFkPgo8dHI+Cgo8dGggc2NvcGU9ImNvbCIgIGNsYXNzPSJhY3Rpb24tY2hlY2tib3gtY29sdW1uIj4KICAgCiAgIDxkaXYgY2xhc3M9InRleHQiPjxzcGFuPjxpbnB1dCB0eXBlPSJjaGVja2JveCIgaWQ9ImFjdGlvbi10b2dnbGUiIC8+PC9zcGFuPjwvZGl2PgogICA8ZGl2IGNsYXNzPSJjbGVhciI+PC9kaXY+CjwvdGg+Cjx0aCBzY29wZT0iY29sIiAgY2xhc3M9ImNvbHVtbi1fX3N0cl9fIj4KICAgCiAgIDxkaXYgY2xhc3M9InRleHQiPjxzcGFuPlZhY2FuY3k8L3NwYW4+PC9kaXY+CiAgIDxkaXYgY2xhc3M9ImNsZWFyIj48L2Rpdj4KPC90aD4KPC90cj4KPC90aGVhZD4KPHRib2R5PgoKCjx0ciBjbGFzcz0icm93MSI+PHRkIGNsYXNzPSJhY3Rpb24tY2hlY2tib3giPjxpbnB1dCBjbGFzcz0iYWN0aW9uLXNlbGVjdCIgbmFtZT0iX3NlbGVjdGVkX2FjdGlvbiIgdHlwZT0iY2hlY2tib3giIHZhbHVlPSIxIiAvPjwvdGQ+PHRoIGNsYXNzPSJmaWVsZC1fX3N0cl9fIj48YSBocmVmPSIvYWRtaW4vY29yZS92YWNhbmN5LzEvY2hhbmdlLyI+VmFjYW5jeSBvYmplY3Q8L2E+PC90aD48L3RyPgoKPC90Ym9keT4KPC90YWJsZT4KPC9kaXY+CgoKICAgICAgICAgIAogICAgICAKICAgICAgCgo8cCBjbGFzcz0icGFnaW5hdG9yIj4KCjEgdmFjYW5jeQoKCjwvcD4KCiAgICAgIDwvZm9ybT4KICAgIDwvZGl2PgogIDwvZGl2PgoKICAgICAgICAKICAgICAgICA8YnIgY2xhc3M9ImNsZWFyIiAvPgogICAgPC9kaXY+CiAgICA8IS0tIEVORCBDb250ZW50IC0tPgoKICAgIDxkaXYgaWQ9ImZvb3RlciI+PC9kaXY+CjwvZGl2Pgo8IS0tIEVORCBDb250YWluZXIgLS0+Cgo8L2JvZHk+CjwvaHRtbD4K", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 15:23:25 GMT\", \"Expires\": \"Mon, 27 Mar 2017 15:23:25 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "069a9a8e-35ee-49e5-9d46-c18b6ac41483", - "fields": { - "request": "aea8884f-0c9d-41bc-9b5d-d38c0f603ff6", - "status_code": 404, - "raw_body": "eyJkZXRhaWwiOiJOb3QgZm91bmQuIn0=", - "body": "{\n \"detail\": \"Not found.\"\n}", - "encoded_headers": "{\"Content-Type\": \"application/json\", \"Allow\": \"POST, OPTIONS\", \"Vary\": \"Accept\"}" - } -}, -{ - "model": "silk.response", - "pk": "0774ed5c-2f3b-4af1-9079-57b5703e2eba", - "fields": { - "request": "04040352-68e7-45cc-be95-cb45b8efce7c", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPlNpdGUgYWRtaW5pc3RyYXRpb24gfCBEamFuZ28gc2l0ZSBhZG1pbjwvdGl0bGU+CjxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvYWRtaW4vY3NzL2Jhc2UuY3NzIiAvPgo8bGluayByZWw9InN0eWxlc2hlZXQiIHR5cGU9InRleHQvY3NzIiBocmVmPSIvYXNzZXRzL2FkbWluL2Nzcy9kYXNoYm9hcmQuY3NzIiAvPgoKCjxtZXRhIG5hbWU9InJvYm90cyIgY29udGVudD0iTk9ORSxOT0FSQ0hJVkUiIC8+CjwvaGVhZD4KCgo8Ym9keSBjbGFzcz0iIGRhc2hib2FyZCIKICBkYXRhLWFkbWluLXV0Yy1vZmZzZXQ9IjAiPgoKPCEtLSBDb250YWluZXIgLS0+CjxkaXYgaWQ9ImNvbnRhaW5lciI+CgogICAgCiAgICA8IS0tIEhlYWRlciAtLT4KICAgIDxkaXYgaWQ9ImhlYWRlciI+CiAgICAgICAgPGRpdiBpZD0iYnJhbmRpbmciPgogICAgICAgIAo8aDEgaWQ9InNpdGUtbmFtZSI+PGEgaHJlZj0iL2FkbWluLyI+RGphbmdvIGFkbWluaXN0cmF0aW9uPC9hPjwvaDE+CgogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIDxkaXYgaWQ9InVzZXItdG9vbHMiPgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIFdlbGNvbWUsCiAgICAgICAgICAgICAgICA8c3Ryb25nPmthcGU8L3N0cm9uZz4uCiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii8iPlZpZXcgc2l0ZTwvYT4gLwogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vcGFzc3dvcmRfY2hhbmdlLyI+Q2hhbmdlIHBhc3N3b3JkPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9sb2dvdXQvIj5Mb2cgb3V0PC9hPgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgICAgICAKICAgICAgICAKICAgICAgICAKICAgIDwvZGl2PgogICAgPCEtLSBFTkQgSGVhZGVyIC0tPgogICAgCiAgICAKCiAgICAKICAgICAgICAKICAgIAoKICAgIDwhLS0gQ29udGVudCAtLT4KICAgIDxkaXYgaWQ9ImNvbnRlbnQiIGNsYXNzPSJjb2xNUyI+CiAgICAgICAgCiAgICAgICAgPGgxPlNpdGUgYWRtaW5pc3RyYXRpb248L2gxPgogICAgICAgIAo8ZGl2IGlkPSJjb250ZW50LW1haW4iPgoKCiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJhcHAtYXV0aCBtb2R1bGUiPgogICAgICAgIDx0YWJsZT4KICAgICAgICA8Y2FwdGlvbj4KICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2F1dGgvIiBjbGFzcz0ic2VjdGlvbiIgdGl0bGU9Ik1vZGVscyBpbiB0aGUgQXV0aGVudGljYXRpb24gYW5kIEF1dGhvcml6YXRpb24gYXBwbGljYXRpb24iPkF1dGhlbnRpY2F0aW9uIGFuZCBBdXRob3JpemF0aW9uPC9hPgogICAgICAgIDwvY2FwdGlvbj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1ncm91cCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL2dyb3VwLyI+R3JvdXBzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvZ3JvdXAvYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL2dyb3VwLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC11c2VyIj4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8iPlVzZXJzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgPC90YWJsZT4KICAgICAgICA8L2Rpdj4KICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImFwcC1jb3JlIG1vZHVsZSI+CiAgICAgICAgPHRhYmxlPgogICAgICAgIDxjYXB0aW9uPgogICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS8iIGNsYXNzPSJzZWN0aW9uIiB0aXRsZT0iTW9kZWxzIGluIHRoZSBDb3JlIGFwcGxpY2F0aW9uIj5Db3JlPC9hPgogICAgICAgIDwvY2FwdGlvbj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1hcHBsaWNhdGlvbiI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL2FwcGxpY2F0aW9uLyI+QXBwbGljYXRpb25zPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvYXBwbGljYXRpb24vYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL2FwcGxpY2F0aW9uLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1jb21wYW55Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8iPkNvbXBhbnlzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgICAgIDx0ciBjbGFzcz0ibW9kZWwtc3R1ZGVudCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvIj5TdHVkZW50czwvYT48L3RoPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvIiBjbGFzcz0iY2hhbmdlbGluayI+Q2hhbmdlPC9hPjwvdGQ+CiAgICAgICAgICAgIAogICAgICAgICAgICA8L3RyPgogICAgICAgIAogICAgICAgICAgICA8dHIgY2xhc3M9Im1vZGVsLXN1cGVydmlzb3IiPgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0aCBzY29wZT0icm93Ij48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yLyI+U3VwZXJ2aXNvcnM8L2E+PC90aD4KICAgICAgICAgICAgCgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0ZD48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yL2FkZC8iIGNsYXNzPSJhZGRsaW5rIj5BZGQ8L2E+PC90ZD4KICAgICAgICAgICAgCgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0ZD48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC12YWNhbmN5Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS8iPlZhY2FuY3lzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgPC90YWJsZT4KICAgICAgICA8L2Rpdj4KICAgIAoKPC9kaXY+CgogICAgICAgIAo8ZGl2IGlkPSJjb250ZW50LXJlbGF0ZWQiPgogICAgPGRpdiBjbGFzcz0ibW9kdWxlIiBpZD0icmVjZW50LWFjdGlvbnMtbW9kdWxlIj4KICAgICAgICA8aDI+UmVjZW50IGFjdGlvbnM8L2gyPgogICAgICAgIDxoMz5NeSBhY3Rpb25zPC9oMz4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgPHVsIGNsYXNzPSJhY3Rpb25saXN0Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaSBjbGFzcz0iYWRkbGluayI+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS9hcHBsaWNhdGlvbi8xL2NoYW5nZS8iPkFwcGxpY2F0aW9uIG9iamVjdDwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5BcHBsaWNhdGlvbjwvc3Bhbj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgICAgPGxpIGNsYXNzPSJhZGRsaW5rIj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9jb3JlL3ZhY2FuY3kvMS9jaGFuZ2UvIj5WYWNhbmN5IG9iamVjdDwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5WYWNhbmN5PC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8bGkgY2xhc3M9ImFkZGxpbmsiPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2NvcmUvc3VwZXJ2aXNvci8xL2NoYW5nZS8iPlN1cGVydmlzb3Igb2JqZWN0PC9hPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YnIvPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9Im1pbmkgcXVpZXQiPlN1cGVydmlzb3I8L3NwYW4+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgPC9saT4KICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaSBjbGFzcz0iYWRkbGluayI+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS9zdHVkZW50LzEvY2hhbmdlLyI+U3R1ZGVudCBvYmplY3Q8L2E+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxici8+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz0ibWluaSBxdWlldCI+U3R1ZGVudDwvc3Bhbj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgICAgPGxpIGNsYXNzPSJhZGRsaW5rIj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9jb3JlL2NvbXBhbnkvMi9jaGFuZ2UvIj5Db21wYW55IG9iamVjdDwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5Db21wYW55PC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8bGkgY2xhc3M9ImRlbGV0ZWxpbmsiPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgQ29tcGFueSBvYmplY3QKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5Db21wYW55PC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8bGkgY2xhc3M9ImFkZGxpbmsiPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci80L2NoYW5nZS8iPmZhcmhhbnN1cGVyPC9hPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YnIvPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9Im1pbmkgcXVpZXQiPlVzZXI8L3NwYW4+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgPC9saT4KICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaSBjbGFzcz0iYWRkbGluayI+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vYXV0aC91c2VyLzMvY2hhbmdlLyI+ZmFyaGFuY29ycDwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5Vc2VyPC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8bGkgY2xhc3M9ImFkZGxpbmsiPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8yL2NoYW5nZS8iPmZhcmhhbjwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5Vc2VyPC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8bGkgY2xhc3M9ImFkZGxpbmsiPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8xL2NoYW5nZS8iPkNvbXBhbnkgb2JqZWN0PC9hPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YnIvPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9Im1pbmkgcXVpZXQiPkNvbXBhbnk8L3NwYW4+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgPC9saT4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdWw+CiAgICAgICAgICAgIAogICAgPC9kaXY+CjwvZGl2PgoKICAgICAgICA8YnIgY2xhc3M9ImNsZWFyIiAvPgogICAgPC9kaXY+CiAgICA8IS0tIEVORCBDb250ZW50IC0tPgoKICAgIDxkaXYgaWQ9ImZvb3RlciI+PC9kaXY+CjwvZGl2Pgo8IS0tIEVORCBDb250YWluZXIgLS0+Cgo8L2JvZHk+CjwvaHRtbD4K", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 18:16:18 GMT\", \"Expires\": \"Mon, 27 Mar 2017 18:16:18 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\"}" - } -}, -{ - "model": "silk.response", - "pk": "0780dd00-0ab7-407b-aa24-d56d07364e77", - "fields": { - "request": "d4577c81-2b8f-4163-ae1b-1e29d0d161b1", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "07c8f27b-ee6d-4394-851d-a5916b4d0f65", - "fields": { - "request": "4e87e2c8-37bb-4e18-ae40-5fd2f5c2cf4d", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "07e8f954-8423-4db3-8d31-5570980268ca", - "fields": { - "request": "c2f47060-b247-41b1-96a8-7a547070548d", - "status_code": 200, - "raw_body": "W3siaWQiOjEsInZlcmlmaWVkIjpmYWxzZSwib3Blbl90aW1lIjoiMjAxNy0wMy0yN1QxNToyMzoyMFoiLCJjbG9zZV90aW1lIjoiMjAxNy0wMy0yN1QxNToyMzoyMloiLCJjb21wYW55IjoyfV0=", - "body": "[\n {\n \"close_time\": \"2017-03-27T15:23:22Z\",\n \"company\": 2,\n \"id\": 1,\n \"open_time\": \"2017-03-27T15:23:20Z\",\n \"verified\": false\n }\n]", - "encoded_headers": "{\"Content-Type\": \"application/json\", \"Allow\": \"GET, POST, OPTIONS\", \"Vary\": \"Accept\"}" - } -}, -{ - "model": "silk.response", - "pk": "08962dfa-5141-45fd-b75d-0504895a9f2a", - "fields": { - "request": "994f0918-8f9e-4251-a568-e1dce4bec3fa", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPkFkZCBzdHVkZW50IHwgRGphbmdvIHNpdGUgYWRtaW48L3RpdGxlPgo8bGluayByZWw9InN0eWxlc2hlZXQiIHR5cGU9InRleHQvY3NzIiBocmVmPSIvYXNzZXRzL2FkbWluL2Nzcy9iYXNlLmNzcyIgLz4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvZm9ybXMuY3NzIiAvPgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9jb3JlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IvanF1ZXJ5L2pxdWVyeS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvanF1ZXJ5LmluaXQuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2FkbWluL1JlbGF0ZWRPYmplY3RMb29rdXBzLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hY3Rpb25zLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy91cmxpZnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL3ByZXBvcHVsYXRlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IveHJlZ2V4cC94cmVnZXhwLmpzIj48L3NjcmlwdD4KCjxtZXRhIG5hbWU9InJvYm90cyIgY29udGVudD0iTk9ORSxOT0FSQ0hJVkUiIC8+CjwvaGVhZD4KCgo8Ym9keSBjbGFzcz0iIGFwcC1jb3JlIG1vZGVsLXN0dWRlbnQgY2hhbmdlLWZvcm0iCiAgZGF0YS1hZG1pbi11dGMtb2Zmc2V0PSIwIj4KCjwhLS0gQ29udGFpbmVyIC0tPgo8ZGl2IGlkPSJjb250YWluZXIiPgoKICAgIAogICAgPCEtLSBIZWFkZXIgLS0+CiAgICA8ZGl2IGlkPSJoZWFkZXIiPgogICAgICAgIDxkaXYgaWQ9ImJyYW5kaW5nIj4KICAgICAgICAKPGgxIGlkPSJzaXRlLW5hbWUiPjxhIGhyZWY9Ii9hZG1pbi8iPkRqYW5nbyBhZG1pbmlzdHJhdGlvbjwvYT48L2gxPgoKICAgICAgICA8L2Rpdj4KICAgICAgICAKICAgICAgICAKICAgICAgICA8ZGl2IGlkPSJ1c2VyLXRvb2xzIj4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICBXZWxjb21lLAogICAgICAgICAgICAgICAgPHN0cm9uZz5rYXBlPC9zdHJvbmc+LgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvIj5WaWV3IHNpdGU8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL3Bhc3N3b3JkX2NoYW5nZS8iPkNoYW5nZSBwYXNzd29yZDwvYT4gLwogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vbG9nb3V0LyI+TG9nIG91dDwvYT4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgCiAgICA8L2Rpdj4KICAgIDwhLS0gRU5EIEhlYWRlciAtLT4KICAgIAo8ZGl2IGNsYXNzPSJicmVhZGNydW1icyI+CjxhIGhyZWY9Ii9hZG1pbi8iPkhvbWU8L2E+CiZyc2FxdW87IDxhIGhyZWY9Ii9hZG1pbi9jb3JlLyI+Q29yZTwvYT4KJnJzYXF1bzsgPGEgaHJlZj0iL2FkbWluL2NvcmUvc3R1ZGVudC8iPlN0dWRlbnRzPC9hPgomcnNhcXVvOyBBZGQgc3R1ZGVudAo8L2Rpdj4KCiAgICAKCiAgICAKICAgICAgICAKICAgIAoKICAgIDwhLS0gQ29udGVudCAtLT4KICAgIDxkaXYgaWQ9ImNvbnRlbnQiIGNsYXNzPSJjb2xNIj4KICAgICAgICAKICAgICAgICA8aDE+QWRkIHN0dWRlbnQ8L2gxPgogICAgICAgIDxkaXYgaWQ9ImNvbnRlbnQtbWFpbiI+CgoKCjxmb3JtIGVuY3R5cGU9Im11bHRpcGFydC9mb3JtLWRhdGEiIGFjdGlvbj0iIiBtZXRob2Q9InBvc3QiIGlkPSJzdHVkZW50X2Zvcm0iIG5vdmFsaWRhdGU+PGlucHV0IHR5cGU9J2hpZGRlbicgbmFtZT0nY3NyZm1pZGRsZXdhcmV0b2tlbicgdmFsdWU9J3FKNkhFTzFCVVUySjRwNDZVdEQzUGpqWHhCeE1uMVN1UFBkd1FrVHdIUmQ4cng2eURVOHZIMDBIdndEQkgxT2onIC8+CjxkaXY+CgoKCgoKCgogIDxmaWVsZHNldCBjbGFzcz0ibW9kdWxlIGFsaWduZWQgIj4KICAgIAogICAgCiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC11c2VyIj4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGRpdj4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPGxhYmVsIGNsYXNzPSJyZXF1aXJlZCIgZm9yPSJpZF91c2VyIj5Vc2VyOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgCjxkaXYgY2xhc3M9InJlbGF0ZWQtd2lkZ2V0LXdyYXBwZXIiPgogICAgPHNlbGVjdCBpZD0iaWRfdXNlciIgbmFtZT0idXNlciIgcmVxdWlyZWQ+CjxvcHRpb24gdmFsdWU9IiIgc2VsZWN0ZWQ9InNlbGVjdGVkIj4tLS0tLS0tLS08L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMiI+ZmFyaGFuPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjMiPmZhcmhhbmNvcnA8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iNCI+ZmFyaGFuc3VwZXI8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMSI+a2FwZTwvb3B0aW9uPgo8L3NlbGVjdD4KICAgIAogICAgICAgIAogICAgICAgIDxhIGNsYXNzPSJyZWxhdGVkLXdpZGdldC13cmFwcGVyLWxpbmsgY2hhbmdlLXJlbGF0ZWQiIGlkPSJjaGFuZ2VfaWRfdXNlciIKICAgICAgICAgICAgZGF0YS1ocmVmLXRlbXBsYXRlPSIvYWRtaW4vYXV0aC91c2VyL19fZmtfXy9jaGFuZ2UvP190b19maWVsZD1pZCZhbXA7X3BvcHVwPTEiCiAgICAgICAgICAgIHRpdGxlPSJDaGFuZ2Ugc2VsZWN0ZWQgdXNlciI+CiAgICAgICAgICAgIDxpbWcgc3JjPSIvYXNzZXRzL2FkbWluL2ltZy9pY29uLWNoYW5nZWxpbmsuc3ZnIiBhbHQ9IkNoYW5nZSIvPgogICAgICAgIDwvYT4KICAgICAgICAKICAgICAgICAKICAgICAgICA8YSBjbGFzcz0icmVsYXRlZC13aWRnZXQtd3JhcHBlci1saW5rIGFkZC1yZWxhdGVkIiBpZD0iYWRkX2lkX3VzZXIiCiAgICAgICAgICAgIGhyZWY9Ii9hZG1pbi9hdXRoL3VzZXIvYWRkLz9fdG9fZmllbGQ9aWQmYW1wO19wb3B1cD0xIgogICAgICAgICAgICB0aXRsZT0iQWRkIGFub3RoZXIgdXNlciI+CiAgICAgICAgICAgIDxpbWcgc3JjPSIvYXNzZXRzL2FkbWluL2ltZy9pY29uLWFkZGxpbmsuc3ZnIiBhbHQ9IkFkZCIvPgogICAgICAgIDwvYT4KICAgICAgICAKICAgICAgICAKICAgIAo8L2Rpdj4KCiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPC9kaXY+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgCiAgICAgICAgPGRpdiBjbGFzcz0iZm9ybS1yb3cgZmllbGQtbnBtIj4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGRpdj4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPGxhYmVsIGNsYXNzPSJyZXF1aXJlZCIgZm9yPSJpZF9ucG0iPk5wbTo8L2xhYmVsPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxpbnB1dCBjbGFzcz0idkludGVnZXJGaWVsZCIgaWQ9ImlkX25wbSIgbmFtZT0ibnBtIiB0eXBlPSJ0ZXh0IiByZXF1aXJlZCAvPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDwvZGl2PgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImZvcm0tcm93IGZpZWxkLXJlc3VtZSI+CiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXY+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxsYWJlbCBmb3I9ImlkX3Jlc3VtZSI+UmVzdW1lOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgPGlucHV0IGlkPSJpZF9yZXN1bWUiIG5hbWU9InJlc3VtZSIgdHlwZT0iZmlsZSIgLz4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC1waG9uZV9udW1iZXIiPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgZm9yPSJpZF9waG9uZV9udW1iZXIiPlBob25lIG51bWJlcjo8L2xhYmVsPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxpbnB1dCBjbGFzcz0idlRleHRGaWVsZCIgaWQ9ImlkX3Bob25lX251bWJlciIgbWF4bGVuZ3RoPSIxMDAiIG5hbWU9InBob25lX251bWJlciIgdHlwZT0idGV4dCIgLz4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC1ib29rbWFya2VkX3ZhY2FuY2llcyI+CiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXY+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxsYWJlbCBjbGFzcz0icmVxdWlyZWQiIGZvcj0iaWRfYm9va21hcmtlZF92YWNhbmNpZXMiPkJvb2ttYXJrZWQgdmFjYW5jaWVzOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgCjxkaXYgY2xhc3M9InJlbGF0ZWQtd2lkZ2V0LXdyYXBwZXIiPgogICAgPHNlbGVjdCBtdWx0aXBsZT0ibXVsdGlwbGUiIGlkPSJpZF9ib29rbWFya2VkX3ZhY2FuY2llcyIgbmFtZT0iYm9va21hcmtlZF92YWNhbmNpZXMiIHJlcXVpcmVkPgo8L3NlbGVjdD4KICAgIAogICAgICAgIAogICAgICAgIAogICAgICAgIDxhIGNsYXNzPSJyZWxhdGVkLXdpZGdldC13cmFwcGVyLWxpbmsgYWRkLXJlbGF0ZWQiIGlkPSJhZGRfaWRfYm9va21hcmtlZF92YWNhbmNpZXMiCiAgICAgICAgICAgIGhyZWY9Ii9hZG1pbi9jb3JlL3ZhY2FuY3kvYWRkLz9fdG9fZmllbGQ9aWQmYW1wO19wb3B1cD0xIgogICAgICAgICAgICB0aXRsZT0iQWRkIGFub3RoZXIgdmFjYW5jeSI+CiAgICAgICAgICAgIDxpbWcgc3JjPSIvYXNzZXRzL2FkbWluL2ltZy9pY29uLWFkZGxpbmsuc3ZnIiBhbHQ9IkFkZCIvPgogICAgICAgIDwvYT4KICAgICAgICAKICAgICAgICAKICAgIAo8L2Rpdj4KCiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8cCBjbGFzcz0iaGVscCI+SG9sZCBkb3duICJDb250cm9sIiwgb3IgIkNvbW1hbmQiIG9uIGEgTWFjLCB0byBzZWxlY3QgbW9yZSB0aGFuIG9uZS48L3A+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKPC9maWVsZHNldD4KCgoKCgoKCgoKCgoKCjxkaXYgY2xhc3M9InN1Ym1pdC1yb3ciPgo8aW5wdXQgdHlwZT0ic3VibWl0IiB2YWx1ZT0iU2F2ZSIgY2xhc3M9ImRlZmF1bHQiIG5hbWU9Il9zYXZlIiAvPgoKCjxpbnB1dCB0eXBlPSJzdWJtaXQiIHZhbHVlPSJTYXZlIGFuZCBhZGQgYW5vdGhlciIgbmFtZT0iX2FkZGFub3RoZXIiIC8+CjxpbnB1dCB0eXBlPSJzdWJtaXQiIHZhbHVlPSJTYXZlIGFuZCBjb250aW51ZSBlZGl0aW5nIiBuYW1lPSJfY29udGludWUiIC8+CjwvZGl2PgoKCgogICAgPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiCiAgICAgICAgICAgIGlkPSJkamFuZ28tYWRtaW4tZm9ybS1hZGQtY29uc3RhbnRzIgogICAgICAgICAgICBzcmM9Ii9hc3NldHMvYWRtaW4vanMvY2hhbmdlX2Zvcm0uanMiCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgZGF0YS1tb2RlbC1uYW1lPSJzdHVkZW50IgogICAgICAgICAgICA+CiAgICA8L3NjcmlwdD4KCgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IgogICAgICAgIGlkPSJkamFuZ28tYWRtaW4tcHJlcG9wdWxhdGVkLWZpZWxkcy1jb25zdGFudHMiCiAgICAgICAgc3JjPSIvYXNzZXRzL2FkbWluL2pzL3ByZXBvcHVsYXRlX2luaXQuanMiCiAgICAgICAgZGF0YS1wcmVwb3B1bGF0ZWQtZmllbGRzPSJbXSI+Cjwvc2NyaXB0PgoKCjwvZGl2Pgo8L2Zvcm0+PC9kaXY+CgogICAgICAgIAogICAgICAgIDxiciBjbGFzcz0iY2xlYXIiIC8+CiAgICA8L2Rpdj4KICAgIDwhLS0gRU5EIENvbnRlbnQgLS0+CgogICAgPGRpdiBpZD0iZm9vdGVyIj48L2Rpdj4KPC9kaXY+CjwhLS0gRU5EIENvbnRhaW5lciAtLT4KCjwvYm9keT4KPC9odG1sPgo=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 14:56:29 GMT\", \"Expires\": \"Mon, 27 Mar 2017 14:56:29 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "0917107e-8b0c-4c8f-b552-5548ae4021aa", - "fields": { - "request": "e2a9f704-7cd6-4ee2-af9d-cb6e0a3f114f", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "0a16c709-d71f-44c9-a56a-79c25df13031", - "fields": { - "request": "0b0d1a97-7449-475e-b2be-fe3b1c19df58", - "status_code": 200, - "raw_body": "W3siaWQiOjEsInZlcmlmaWVkIjpmYWxzZSwib3Blbl90aW1lIjoiMjAxNy0wMy0yN1QxNToyMzoyMFoiLCJjbG9zZV90aW1lIjoiMjAxNy0wMy0yN1QxNToyMzoyMloiLCJjb21wYW55IjoyfV0=", - "body": "[\n {\n \"close_time\": \"2017-03-27T15:23:22Z\",\n \"company\": 2,\n \"id\": 1,\n \"open_time\": \"2017-03-27T15:23:20Z\",\n \"verified\": false\n }\n]", - "encoded_headers": "{\"Content-Type\": \"application/json\", \"Allow\": \"GET, POST, OPTIONS\", \"Vary\": \"Accept\"}" - } -}, -{ - "model": "silk.response", - "pk": "0bf4e845-e743-4f73-9d55-c1a97f28a22f", - "fields": { - "request": "f433947a-a358-4e40-a5cd-e5caa094aa62", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPlNlbGVjdCB1c2VyIHRvIGNoYW5nZSB8IERqYW5nbyBzaXRlIGFkbWluPC90aXRsZT4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvYmFzZS5jc3MiIC8+CgogIAogIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvYWRtaW4vY3NzL2NoYW5nZWxpc3RzLmNzcyIgLz4KICAKICAKICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KICAKICAKICAKCgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvY29yZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL2pxdWVyeS9qcXVlcnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2pxdWVyeS5pbml0LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hZG1pbi9SZWxhdGVkT2JqZWN0TG9va3Vwcy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvYWN0aW9ucy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdXJsaWZ5LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9wcmVwb3B1bGF0ZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL3hyZWdleHAveHJlZ2V4cC5qcyI+PC9zY3JpcHQ+Cgo8bWV0YSBuYW1lPSJyb2JvdHMiIGNvbnRlbnQ9Ik5PTkUsTk9BUkNISVZFIiAvPgo8L2hlYWQ+CgoKPGJvZHkgY2xhc3M9IiBhcHAtYXV0aCBtb2RlbC11c2VyIGNoYW5nZS1saXN0IgogIGRhdGEtYWRtaW4tdXRjLW9mZnNldD0iMCI+Cgo8IS0tIENvbnRhaW5lciAtLT4KPGRpdiBpZD0iY29udGFpbmVyIj4KCiAgICAKICAgIDwhLS0gSGVhZGVyIC0tPgogICAgPGRpdiBpZD0iaGVhZGVyIj4KICAgICAgICA8ZGl2IGlkPSJicmFuZGluZyI+CiAgICAgICAgCjxoMSBpZD0ic2l0ZS1uYW1lIj48YSBocmVmPSIvYWRtaW4vIj5EamFuZ28gYWRtaW5pc3RyYXRpb248L2E+PC9oMT4KCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgPGRpdiBpZD0idXNlci10b29scyI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgV2VsY29tZSwKICAgICAgICAgICAgICAgIDxzdHJvbmc+a2FwZTwvc3Ryb25nPi4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iLyI+VmlldyBzaXRlPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9wYXNzd29yZF9jaGFuZ2UvIj5DaGFuZ2UgcGFzc3dvcmQ8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2xvZ291dC8iPkxvZyBvdXQ8L2E+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIAogICAgPC9kaXY+CiAgICA8IS0tIEVORCBIZWFkZXIgLS0+CiAgICAKPGRpdiBjbGFzcz0iYnJlYWRjcnVtYnMiPgo8YSBocmVmPSIvYWRtaW4vIj5Ib21lPC9hPgomcnNhcXVvOyA8YSBocmVmPSIvYWRtaW4vYXV0aC8iPkF1dGhlbnRpY2F0aW9uIGFuZCBBdXRob3JpemF0aW9uPC9hPgomcnNhcXVvOyBVc2Vycwo8L2Rpdj4KCiAgICAKCiAgICAKICAgICAgICAKICAgIAoKICAgIDwhLS0gQ29udGVudCAtLT4KICAgIDxkaXYgaWQ9ImNvbnRlbnQiIGNsYXNzPSJmbGV4Ij4KICAgICAgICAKICAgICAgICA8aDE+U2VsZWN0IHVzZXIgdG8gY2hhbmdlPC9oMT4KICAgICAgICAKICA8ZGl2IGlkPSJjb250ZW50LW1haW4iPgogICAgCiAgICAgICAgPHVsIGNsYXNzPSJvYmplY3QtdG9vbHMiPgogICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICA8bGk+CiAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci9hZGQvIiBjbGFzcz0iYWRkbGluayI+CiAgICAgICAgICAgICAgICBBZGQgdXNlcgogICAgICAgICAgICAgIDwvYT4KICAgICAgICAgICAgPC9saT4KICAgICAgICAgICAgCiAgICAgICAgICAKICAgICAgICA8L3VsPgogICAgCiAgICAKICAgIDxkaXYgY2xhc3M9Im1vZHVsZSBmaWx0ZXJlZCIgaWQ9ImNoYW5nZWxpc3QiPgogICAgICAKCjxkaXYgaWQ9InRvb2xiYXIiPjxmb3JtIGlkPSJjaGFuZ2VsaXN0LXNlYXJjaCIgbWV0aG9kPSJnZXQiPgo8ZGl2PjwhLS0gRElWIG5lZWRlZCBmb3IgdmFsaWQgSFRNTCAtLT4KPGxhYmVsIGZvcj0ic2VhcmNoYmFyIj48aW1nIHNyYz0iL2Fzc2V0cy9hZG1pbi9pbWcvc2VhcmNoLnN2ZyIgYWx0PSJTZWFyY2giIC8+PC9sYWJlbD4KPGlucHV0IHR5cGU9InRleHQiIHNpemU9IjQwIiBuYW1lPSJxIiB2YWx1ZT0iIiBpZD0ic2VhcmNoYmFyIiBhdXRvZm9jdXMgLz4KPGlucHV0IHR5cGU9InN1Ym1pdCIgdmFsdWU9IlNlYXJjaCIgLz4KCgo8L2Rpdj4KPC9mb3JtPjwvZGl2PgoKCiAgICAgIAoKCiAgICAgIAogICAgICAgIAogICAgICAgICAgPGRpdiBpZD0iY2hhbmdlbGlzdC1maWx0ZXIiPgogICAgICAgICAgICA8aDI+RmlsdGVyPC9oMj4KICAgICAgICAgICAgCjxoMz4gQnkgc3RhZmYgc3RhdHVzIDwvaDM+Cjx1bD4KCiAgICA8bGkgY2xhc3M9InNlbGVjdGVkIj4KICAgIDxhIGhyZWY9Ij8iPkFsbDwvYT48L2xpPgoKICAgIDxsaT4KICAgIDxhIGhyZWY9Ij9pc19zdGFmZl9fZXhhY3Q9MSI+WWVzPC9hPjwvbGk+CgogICAgPGxpPgogICAgPGEgaHJlZj0iP2lzX3N0YWZmX19leGFjdD0wIj5ObzwvYT48L2xpPgoKPC91bD4KCjxoMz4gQnkgc3VwZXJ1c2VyIHN0YXR1cyA8L2gzPgo8dWw+CgogICAgPGxpIGNsYXNzPSJzZWxlY3RlZCI+CiAgICA8YSBocmVmPSI/Ij5BbGw8L2E+PC9saT4KCiAgICA8bGk+CiAgICA8YSBocmVmPSI/aXNfc3VwZXJ1c2VyX19leGFjdD0xIj5ZZXM8L2E+PC9saT4KCiAgICA8bGk+CiAgICA8YSBocmVmPSI/aXNfc3VwZXJ1c2VyX19leGFjdD0wIj5ObzwvYT48L2xpPgoKPC91bD4KCjxoMz4gQnkgYWN0aXZlIDwvaDM+Cjx1bD4KCiAgICA8bGkgY2xhc3M9InNlbGVjdGVkIj4KICAgIDxhIGhyZWY9Ij8iPkFsbDwvYT48L2xpPgoKICAgIDxsaT4KICAgIDxhIGhyZWY9Ij9pc19hY3RpdmVfX2V4YWN0PTEiPlllczwvYT48L2xpPgoKICAgIDxsaT4KICAgIDxhIGhyZWY9Ij9pc19hY3RpdmVfX2V4YWN0PTAiPk5vPC9hPjwvbGk+Cgo8L3VsPgoKICAgICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAKCiAgICAgIDxmb3JtIGlkPSJjaGFuZ2VsaXN0LWZvcm0iIG1ldGhvZD0icG9zdCIgbm92YWxpZGF0ZT48aW5wdXQgdHlwZT0naGlkZGVuJyBuYW1lPSdjc3JmbWlkZGxld2FyZXRva2VuJyB2YWx1ZT0nUklObFluQWxPWVc5ZWhValZnc0UybWt0NWQxTUtMakFnT1VhYVRzZ0JWN3lCcFdMRUhYNlUzMWQzODdCNExmcCcgLz4KICAgICAgCgogICAgICAKICAgICAgICAgIAo8ZGl2IGNsYXNzPSJhY3Rpb25zIj4KICAgIDxsYWJlbD5BY3Rpb246IDxzZWxlY3QgbmFtZT0iYWN0aW9uIiByZXF1aXJlZD4KPG9wdGlvbiB2YWx1ZT0iIiBzZWxlY3RlZD0ic2VsZWN0ZWQiPi0tLS0tLS0tLTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSJkZWxldGVfc2VsZWN0ZWQiPkRlbGV0ZSBzZWxlY3RlZCB1c2Vyczwvb3B0aW9uPgo8L3NlbGVjdD48L2xhYmVsPjxpbnB1dCBjbGFzcz0ic2VsZWN0LWFjcm9zcyIgbmFtZT0ic2VsZWN0X2Fjcm9zcyIgdHlwZT0iaGlkZGVuIiB2YWx1ZT0iMCIgLz4KICAgIDxidXR0b24gdHlwZT0ic3VibWl0IiBjbGFzcz0iYnV0dG9uIiB0aXRsZT0iUnVuIHRoZSBzZWxlY3RlZCBhY3Rpb24iIG5hbWU9ImluZGV4IiB2YWx1ZT0iMCI+R288L2J1dHRvbj4KICAgIAogICAgICAgIDxzcGFuIGNsYXNzPSJhY3Rpb24tY291bnRlciIgZGF0YS1hY3Rpb25zLWljbnQ9IjQiPjAgb2YgNCBzZWxlY3RlZDwvc3Bhbj4KICAgICAgICAKICAgIAo8L2Rpdj4KCiAgICAgICAgICAKCgo8ZGl2IGNsYXNzPSJyZXN1bHRzIj4KPHRhYmxlIGlkPSJyZXN1bHRfbGlzdCI+Cjx0aGVhZD4KPHRyPgoKPHRoIHNjb3BlPSJjb2wiICBjbGFzcz0iYWN0aW9uLWNoZWNrYm94LWNvbHVtbiI+CiAgIAogICA8ZGl2IGNsYXNzPSJ0ZXh0Ij48c3Bhbj48aW5wdXQgdHlwZT0iY2hlY2tib3giIGlkPSJhY3Rpb24tdG9nZ2xlIiAvPjwvc3Bhbj48L2Rpdj4KICAgPGRpdiBjbGFzcz0iY2xlYXIiPjwvZGl2Pgo8L3RoPgo8dGggc2NvcGU9ImNvbCIgIGNsYXNzPSJzb3J0YWJsZSBjb2x1bW4tdXNlcm5hbWUgc29ydGVkIGFzY2VuZGluZyI+CiAgIAogICAgIAogICAgICAgPGRpdiBjbGFzcz0ic29ydG9wdGlvbnMiPgogICAgICAgICA8YSBjbGFzcz0ic29ydHJlbW92ZSIgaHJlZj0iP289IiB0aXRsZT0iUmVtb3ZlIGZyb20gc29ydGluZyI+PC9hPgogICAgICAgICAKICAgICAgICAgPGEgaHJlZj0iP289LTEiIGNsYXNzPSJ0b2dnbGUgYXNjZW5kaW5nIiB0aXRsZT0iVG9nZ2xlIHNvcnRpbmciPjwvYT4KICAgICAgIDwvZGl2PgogICAgIAogICAKICAgPGRpdiBjbGFzcz0idGV4dCI+PGEgaHJlZj0iP289LTEiPlVzZXJuYW1lPC9hPjwvZGl2PgogICA8ZGl2IGNsYXNzPSJjbGVhciI+PC9kaXY+CjwvdGg+Cjx0aCBzY29wZT0iY29sIiAgY2xhc3M9InNvcnRhYmxlIGNvbHVtbi1lbWFpbCI+CiAgIAogICAgIAogICAKICAgPGRpdiBjbGFzcz0idGV4dCI+PGEgaHJlZj0iP289Mi4xIj5FbWFpbCBhZGRyZXNzPC9hPjwvZGl2PgogICA8ZGl2IGNsYXNzPSJjbGVhciI+PC9kaXY+CjwvdGg+Cjx0aCBzY29wZT0iY29sIiAgY2xhc3M9InNvcnRhYmxlIGNvbHVtbi1maXJzdF9uYW1lIj4KICAgCiAgICAgCiAgIAogICA8ZGl2IGNsYXNzPSJ0ZXh0Ij48YSBocmVmPSI/bz0zLjEiPkZpcnN0IG5hbWU8L2E+PC9kaXY+CiAgIDxkaXYgY2xhc3M9ImNsZWFyIj48L2Rpdj4KPC90aD4KPHRoIHNjb3BlPSJjb2wiICBjbGFzcz0ic29ydGFibGUgY29sdW1uLWxhc3RfbmFtZSI+CiAgIAogICAgIAogICAKICAgPGRpdiBjbGFzcz0idGV4dCI+PGEgaHJlZj0iP289NC4xIj5MYXN0IG5hbWU8L2E+PC9kaXY+CiAgIDxkaXYgY2xhc3M9ImNsZWFyIj48L2Rpdj4KPC90aD4KPHRoIHNjb3BlPSJjb2wiICBjbGFzcz0ic29ydGFibGUgY29sdW1uLWlzX3N0YWZmIj4KICAgCiAgICAgCiAgIAogICA8ZGl2IGNsYXNzPSJ0ZXh0Ij48YSBocmVmPSI/bz01LjEiPlN0YWZmIHN0YXR1czwvYT48L2Rpdj4KICAgPGRpdiBjbGFzcz0iY2xlYXIiPjwvZGl2Pgo8L3RoPgo8L3RyPgo8L3RoZWFkPgo8dGJvZHk+CgoKPHRyIGNsYXNzPSJyb3cxIj48dGQgY2xhc3M9ImFjdGlvbi1jaGVja2JveCI+PGlucHV0IGNsYXNzPSJhY3Rpb24tc2VsZWN0IiBuYW1lPSJfc2VsZWN0ZWRfYWN0aW9uIiB0eXBlPSJjaGVja2JveCIgdmFsdWU9IjIiIC8+PC90ZD48dGggY2xhc3M9ImZpZWxkLXVzZXJuYW1lIj48YSBocmVmPSIvYWRtaW4vYXV0aC91c2VyLzIvY2hhbmdlLyI+ZmFyaGFuPC9hPjwvdGg+PHRkIGNsYXNzPSJmaWVsZC1lbWFpbCI+Jm5ic3A7PC90ZD48dGQgY2xhc3M9ImZpZWxkLWZpcnN0X25hbWUiPiZuYnNwOzwvdGQ+PHRkIGNsYXNzPSJmaWVsZC1sYXN0X25hbWUiPiZuYnNwOzwvdGQ+PHRkIGNsYXNzPSJmaWVsZC1pc19zdGFmZiI+PGltZyBzcmM9Ii9hc3NldHMvYWRtaW4vaW1nL2ljb24tbm8uc3ZnIiBhbHQ9IkZhbHNlIiAvPjwvdGQ+PC90cj4KCgo8dHIgY2xhc3M9InJvdzIiPjx0ZCBjbGFzcz0iYWN0aW9uLWNoZWNrYm94Ij48aW5wdXQgY2xhc3M9ImFjdGlvbi1zZWxlY3QiIG5hbWU9Il9zZWxlY3RlZF9hY3Rpb24iIHR5cGU9ImNoZWNrYm94IiB2YWx1ZT0iMyIgLz48L3RkPjx0aCBjbGFzcz0iZmllbGQtdXNlcm5hbWUiPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL3VzZXIvMy9jaGFuZ2UvIj5mYXJoYW5jb3JwPC9hPjwvdGg+PHRkIGNsYXNzPSJmaWVsZC1lbWFpbCI+Jm5ic3A7PC90ZD48dGQgY2xhc3M9ImZpZWxkLWZpcnN0X25hbWUiPiZuYnNwOzwvdGQ+PHRkIGNsYXNzPSJmaWVsZC1sYXN0X25hbWUiPiZuYnNwOzwvdGQ+PHRkIGNsYXNzPSJmaWVsZC1pc19zdGFmZiI+PGltZyBzcmM9Ii9hc3NldHMvYWRtaW4vaW1nL2ljb24tbm8uc3ZnIiBhbHQ9IkZhbHNlIiAvPjwvdGQ+PC90cj4KCgo8dHIgY2xhc3M9InJvdzEiPjx0ZCBjbGFzcz0iYWN0aW9uLWNoZWNrYm94Ij48aW5wdXQgY2xhc3M9ImFjdGlvbi1zZWxlY3QiIG5hbWU9Il9zZWxlY3RlZF9hY3Rpb24iIHR5cGU9ImNoZWNrYm94IiB2YWx1ZT0iNCIgLz48L3RkPjx0aCBjbGFzcz0iZmllbGQtdXNlcm5hbWUiPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL3VzZXIvNC9jaGFuZ2UvIj5mYXJoYW5zdXBlcjwvYT48L3RoPjx0ZCBjbGFzcz0iZmllbGQtZW1haWwiPiZuYnNwOzwvdGQ+PHRkIGNsYXNzPSJmaWVsZC1maXJzdF9uYW1lIj4mbmJzcDs8L3RkPjx0ZCBjbGFzcz0iZmllbGQtbGFzdF9uYW1lIj4mbmJzcDs8L3RkPjx0ZCBjbGFzcz0iZmllbGQtaXNfc3RhZmYiPjxpbWcgc3JjPSIvYXNzZXRzL2FkbWluL2ltZy9pY29uLW5vLnN2ZyIgYWx0PSJGYWxzZSIgLz48L3RkPjwvdHI+CgoKPHRyIGNsYXNzPSJyb3cyIj48dGQgY2xhc3M9ImFjdGlvbi1jaGVja2JveCI+PGlucHV0IGNsYXNzPSJhY3Rpb24tc2VsZWN0IiBuYW1lPSJfc2VsZWN0ZWRfYWN0aW9uIiB0eXBlPSJjaGVja2JveCIgdmFsdWU9IjEiIC8+PC90ZD48dGggY2xhc3M9ImZpZWxkLXVzZXJuYW1lIj48YSBocmVmPSIvYWRtaW4vYXV0aC91c2VyLzEvY2hhbmdlLyI+a2FwZTwvYT48L3RoPjx0ZCBjbGFzcz0iZmllbGQtZW1haWwiPmthcGVAa2FwZS5jb208L3RkPjx0ZCBjbGFzcz0iZmllbGQtZmlyc3RfbmFtZSI+Jm5ic3A7PC90ZD48dGQgY2xhc3M9ImZpZWxkLWxhc3RfbmFtZSI+Jm5ic3A7PC90ZD48dGQgY2xhc3M9ImZpZWxkLWlzX3N0YWZmIj48aW1nIHNyYz0iL2Fzc2V0cy9hZG1pbi9pbWcvaWNvbi15ZXMuc3ZnIiBhbHQ9IlRydWUiIC8+PC90ZD48L3RyPgoKPC90Ym9keT4KPC90YWJsZT4KPC9kaXY+CgoKICAgICAgICAgIAogICAgICAKICAgICAgCgo8cCBjbGFzcz0icGFnaW5hdG9yIj4KCjQgdXNlcnMKCgo8L3A+CgogICAgICA8L2Zvcm0+CiAgICA8L2Rpdj4KICA8L2Rpdj4KCiAgICAgICAgCiAgICAgICAgPGJyIGNsYXNzPSJjbGVhciIgLz4KICAgIDwvZGl2PgogICAgPCEtLSBFTkQgQ29udGVudCAtLT4KCiAgICA8ZGl2IGlkPSJmb290ZXIiPjwvZGl2Pgo8L2Rpdj4KPCEtLSBFTkQgQ29udGFpbmVyIC0tPgoKPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 17:15:30 GMT\", \"Expires\": \"Mon, 27 Mar 2017 17:15:30 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "0e0b5829-2212-4fd2-9157-76a736662460", - "fields": { - "request": "bb2bd743-cabe-4460-baf9-0f0ce03a6c7f", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "0eac4120-0609-4d95-b52c-af89053df636", - "fields": { - "request": "e6e5a6a2-7aa1-467d-8ea7-76e51bbdec78", - "status_code": 302, - "raw_body": "", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Location\": \"/admin/core/company/\", \"Last-Modified\": \"Mon, 27 Mar 2017 14:55:44 GMT\", \"Expires\": \"Mon, 27 Mar 2017 14:55:44 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\"}" - } -}, -{ - "model": "silk.response", - "pk": "0edf357b-0911-4975-b90d-856420c3b798", - "fields": { - "request": "eee3dd70-c963-48ef-8933-bbf1ca9e8bb2", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "0fb4654f-39f0-4908-a14d-a1b988a75913", - "fields": { - "request": "b1732f2a-9b94-4bbb-8354-c3cdf802df47", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPkFkZCBzdXBlcnZpc29yIHwgRGphbmdvIHNpdGUgYWRtaW48L3RpdGxlPgo8bGluayByZWw9InN0eWxlc2hlZXQiIHR5cGU9InRleHQvY3NzIiBocmVmPSIvYXNzZXRzL2FkbWluL2Nzcy9iYXNlLmNzcyIgLz4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvZm9ybXMuY3NzIiAvPgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9jb3JlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IvanF1ZXJ5L2pxdWVyeS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvanF1ZXJ5LmluaXQuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2FkbWluL1JlbGF0ZWRPYmplY3RMb29rdXBzLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hY3Rpb25zLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy91cmxpZnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL3ByZXBvcHVsYXRlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IveHJlZ2V4cC94cmVnZXhwLmpzIj48L3NjcmlwdD4KCjxtZXRhIG5hbWU9InJvYm90cyIgY29udGVudD0iTk9ORSxOT0FSQ0hJVkUiIC8+CjwvaGVhZD4KCgo8Ym9keSBjbGFzcz0iIGFwcC1jb3JlIG1vZGVsLXN1cGVydmlzb3IgY2hhbmdlLWZvcm0iCiAgZGF0YS1hZG1pbi11dGMtb2Zmc2V0PSIwIj4KCjwhLS0gQ29udGFpbmVyIC0tPgo8ZGl2IGlkPSJjb250YWluZXIiPgoKICAgIAogICAgPCEtLSBIZWFkZXIgLS0+CiAgICA8ZGl2IGlkPSJoZWFkZXIiPgogICAgICAgIDxkaXYgaWQ9ImJyYW5kaW5nIj4KICAgICAgICAKPGgxIGlkPSJzaXRlLW5hbWUiPjxhIGhyZWY9Ii9hZG1pbi8iPkRqYW5nbyBhZG1pbmlzdHJhdGlvbjwvYT48L2gxPgoKICAgICAgICA8L2Rpdj4KICAgICAgICAKICAgICAgICAKICAgICAgICA8ZGl2IGlkPSJ1c2VyLXRvb2xzIj4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICBXZWxjb21lLAogICAgICAgICAgICAgICAgPHN0cm9uZz5rYXBlPC9zdHJvbmc+LgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvIj5WaWV3IHNpdGU8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL3Bhc3N3b3JkX2NoYW5nZS8iPkNoYW5nZSBwYXNzd29yZDwvYT4gLwogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vbG9nb3V0LyI+TG9nIG91dDwvYT4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgCiAgICA8L2Rpdj4KICAgIDwhLS0gRU5EIEhlYWRlciAtLT4KICAgIAo8ZGl2IGNsYXNzPSJicmVhZGNydW1icyI+CjxhIGhyZWY9Ii9hZG1pbi8iPkhvbWU8L2E+CiZyc2FxdW87IDxhIGhyZWY9Ii9hZG1pbi9jb3JlLyI+Q29yZTwvYT4KJnJzYXF1bzsgPGEgaHJlZj0iL2FkbWluL2NvcmUvc3VwZXJ2aXNvci8iPlN1cGVydmlzb3JzPC9hPgomcnNhcXVvOyBBZGQgc3VwZXJ2aXNvcgo8L2Rpdj4KCiAgICAKCiAgICAKICAgICAgICAKICAgIAoKICAgIDwhLS0gQ29udGVudCAtLT4KICAgIDxkaXYgaWQ9ImNvbnRlbnQiIGNsYXNzPSJjb2xNIj4KICAgICAgICAKICAgICAgICA8aDE+QWRkIHN1cGVydmlzb3I8L2gxPgogICAgICAgIDxkaXYgaWQ9ImNvbnRlbnQtbWFpbiI+CgoKCjxmb3JtIGVuY3R5cGU9Im11bHRpcGFydC9mb3JtLWRhdGEiIGFjdGlvbj0iIiBtZXRob2Q9InBvc3QiIGlkPSJzdXBlcnZpc29yX2Zvcm0iIG5vdmFsaWRhdGU+PGlucHV0IHR5cGU9J2hpZGRlbicgbmFtZT0nY3NyZm1pZGRsZXdhcmV0b2tlbicgdmFsdWU9J1FyYkxmY1dvVmE2aDR0STYzdUhlSkZhV1VZSjUwRGlyZnhpQXJJT2pJN2hHckJLeU1WY0dCbVJHU1RQVWtEZWcnIC8+CjxkaXY+CgoKCgoKCgogIDxmaWVsZHNldCBjbGFzcz0ibW9kdWxlIGFsaWduZWQgIj4KICAgIAogICAgCiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC11c2VyIj4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGRpdj4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPGxhYmVsIGNsYXNzPSJyZXF1aXJlZCIgZm9yPSJpZF91c2VyIj5Vc2VyOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgCjxkaXYgY2xhc3M9InJlbGF0ZWQtd2lkZ2V0LXdyYXBwZXIiPgogICAgPHNlbGVjdCBpZD0iaWRfdXNlciIgbmFtZT0idXNlciIgcmVxdWlyZWQ+CjxvcHRpb24gdmFsdWU9IiIgc2VsZWN0ZWQ9InNlbGVjdGVkIj4tLS0tLS0tLS08L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMiI+ZmFyaGFuPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjMiPmZhcmhhbmNvcnA8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iNCI+ZmFyaGFuc3VwZXI8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMSI+a2FwZTwvb3B0aW9uPgo8L3NlbGVjdD4KICAgIAogICAgICAgIAogICAgICAgIDxhIGNsYXNzPSJyZWxhdGVkLXdpZGdldC13cmFwcGVyLWxpbmsgY2hhbmdlLXJlbGF0ZWQiIGlkPSJjaGFuZ2VfaWRfdXNlciIKICAgICAgICAgICAgZGF0YS1ocmVmLXRlbXBsYXRlPSIvYWRtaW4vYXV0aC91c2VyL19fZmtfXy9jaGFuZ2UvP190b19maWVsZD1pZCZhbXA7X3BvcHVwPTEiCiAgICAgICAgICAgIHRpdGxlPSJDaGFuZ2Ugc2VsZWN0ZWQgdXNlciI+CiAgICAgICAgICAgIDxpbWcgc3JjPSIvYXNzZXRzL2FkbWluL2ltZy9pY29uLWNoYW5nZWxpbmsuc3ZnIiBhbHQ9IkNoYW5nZSIvPgogICAgICAgIDwvYT4KICAgICAgICAKICAgICAgICAKICAgICAgICA8YSBjbGFzcz0icmVsYXRlZC13aWRnZXQtd3JhcHBlci1saW5rIGFkZC1yZWxhdGVkIiBpZD0iYWRkX2lkX3VzZXIiCiAgICAgICAgICAgIGhyZWY9Ii9hZG1pbi9hdXRoL3VzZXIvYWRkLz9fdG9fZmllbGQ9aWQmYW1wO19wb3B1cD0xIgogICAgICAgICAgICB0aXRsZT0iQWRkIGFub3RoZXIgdXNlciI+CiAgICAgICAgICAgIDxpbWcgc3JjPSIvYXNzZXRzL2FkbWluL2ltZy9pY29uLWFkZGxpbmsuc3ZnIiBhbHQ9IkFkZCIvPgogICAgICAgIDwvYT4KICAgICAgICAKICAgICAgICAKICAgIAo8L2Rpdj4KCiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPC9kaXY+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgCiAgICAgICAgPGRpdiBjbGFzcz0iZm9ybS1yb3cgZmllbGQtbmlwIj4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGRpdj4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPGxhYmVsIGNsYXNzPSJyZXF1aXJlZCIgZm9yPSJpZF9uaXAiPk5pcDo8L2xhYmVsPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxpbnB1dCBjbGFzcz0idkludGVnZXJGaWVsZCIgaWQ9ImlkX25pcCIgbmFtZT0ibmlwIiB0eXBlPSJ0ZXh0IiByZXF1aXJlZCAvPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDwvZGl2PgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgIAo8L2ZpZWxkc2V0PgoKCgoKCgoKCgoKCgoKPGRpdiBjbGFzcz0ic3VibWl0LXJvdyI+CjxpbnB1dCB0eXBlPSJzdWJtaXQiIHZhbHVlPSJTYXZlIiBjbGFzcz0iZGVmYXVsdCIgbmFtZT0iX3NhdmUiIC8+CgoKPGlucHV0IHR5cGU9InN1Ym1pdCIgdmFsdWU9IlNhdmUgYW5kIGFkZCBhbm90aGVyIiBuYW1lPSJfYWRkYW5vdGhlciIgLz4KPGlucHV0IHR5cGU9InN1Ym1pdCIgdmFsdWU9IlNhdmUgYW5kIGNvbnRpbnVlIGVkaXRpbmciIG5hbWU9Il9jb250aW51ZSIgLz4KPC9kaXY+CgoKCiAgICA8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIKICAgICAgICAgICAgaWQ9ImRqYW5nby1hZG1pbi1mb3JtLWFkZC1jb25zdGFudHMiCiAgICAgICAgICAgIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9jaGFuZ2VfZm9ybS5qcyIKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICBkYXRhLW1vZGVsLW5hbWU9InN1cGVydmlzb3IiCiAgICAgICAgICAgID4KICAgIDwvc2NyaXB0PgoKCgoKPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiCiAgICAgICAgaWQ9ImRqYW5nby1hZG1pbi1wcmVwb3B1bGF0ZWQtZmllbGRzLWNvbnN0YW50cyIKICAgICAgICBzcmM9Ii9hc3NldHMvYWRtaW4vanMvcHJlcG9wdWxhdGVfaW5pdC5qcyIKICAgICAgICBkYXRhLXByZXBvcHVsYXRlZC1maWVsZHM9IltdIj4KPC9zY3JpcHQ+CgoKPC9kaXY+CjwvZm9ybT48L2Rpdj4KCiAgICAgICAgCiAgICAgICAgPGJyIGNsYXNzPSJjbGVhciIgLz4KICAgIDwvZGl2PgogICAgPCEtLSBFTkQgQ29udGVudCAtLT4KCiAgICA8ZGl2IGlkPSJmb290ZXIiPjwvZGl2Pgo8L2Rpdj4KPCEtLSBFTkQgQ29udGFpbmVyIC0tPgoKPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 15:22:13 GMT\", \"Expires\": \"Mon, 27 Mar 2017 15:22:13 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "10aea0e0-edd0-48ce-9684-503974a24b70", - "fields": { - "request": "a6066c3f-cd00-4ef8-9269-6f7a0dbd5705", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "10ec8adc-2fd2-4cc2-8e60-219a14915954", - "fields": { - "request": "8c99b503-6191-4988-9cd1-4cfd8bf70594", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPlNpdGUgYWRtaW5pc3RyYXRpb24gfCBEamFuZ28gc2l0ZSBhZG1pbjwvdGl0bGU+CjxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvYWRtaW4vY3NzL2Jhc2UuY3NzIiAvPgo8bGluayByZWw9InN0eWxlc2hlZXQiIHR5cGU9InRleHQvY3NzIiBocmVmPSIvYXNzZXRzL2FkbWluL2Nzcy9kYXNoYm9hcmQuY3NzIiAvPgoKCjxtZXRhIG5hbWU9InJvYm90cyIgY29udGVudD0iTk9ORSxOT0FSQ0hJVkUiIC8+CjwvaGVhZD4KCgo8Ym9keSBjbGFzcz0iIGRhc2hib2FyZCIKICBkYXRhLWFkbWluLXV0Yy1vZmZzZXQ9IjAiPgoKPCEtLSBDb250YWluZXIgLS0+CjxkaXYgaWQ9ImNvbnRhaW5lciI+CgogICAgCiAgICA8IS0tIEhlYWRlciAtLT4KICAgIDxkaXYgaWQ9ImhlYWRlciI+CiAgICAgICAgPGRpdiBpZD0iYnJhbmRpbmciPgogICAgICAgIAo8aDEgaWQ9InNpdGUtbmFtZSI+PGEgaHJlZj0iL2FkbWluLyI+RGphbmdvIGFkbWluaXN0cmF0aW9uPC9hPjwvaDE+CgogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIDxkaXYgaWQ9InVzZXItdG9vbHMiPgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIFdlbGNvbWUsCiAgICAgICAgICAgICAgICA8c3Ryb25nPmthcGU8L3N0cm9uZz4uCiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii8iPlZpZXcgc2l0ZTwvYT4gLwogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vcGFzc3dvcmRfY2hhbmdlLyI+Q2hhbmdlIHBhc3N3b3JkPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9sb2dvdXQvIj5Mb2cgb3V0PC9hPgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgICAgICAKICAgICAgICAKICAgICAgICAKICAgIDwvZGl2PgogICAgPCEtLSBFTkQgSGVhZGVyIC0tPgogICAgCiAgICAKCiAgICAKICAgICAgICAKICAgIAoKICAgIDwhLS0gQ29udGVudCAtLT4KICAgIDxkaXYgaWQ9ImNvbnRlbnQiIGNsYXNzPSJjb2xNUyI+CiAgICAgICAgCiAgICAgICAgPGgxPlNpdGUgYWRtaW5pc3RyYXRpb248L2gxPgogICAgICAgIAo8ZGl2IGlkPSJjb250ZW50LW1haW4iPgoKCiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJhcHAtYXV0aCBtb2R1bGUiPgogICAgICAgIDx0YWJsZT4KICAgICAgICA8Y2FwdGlvbj4KICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2F1dGgvIiBjbGFzcz0ic2VjdGlvbiIgdGl0bGU9Ik1vZGVscyBpbiB0aGUgQXV0aGVudGljYXRpb24gYW5kIEF1dGhvcml6YXRpb24gYXBwbGljYXRpb24iPkF1dGhlbnRpY2F0aW9uIGFuZCBBdXRob3JpemF0aW9uPC9hPgogICAgICAgIDwvY2FwdGlvbj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1ncm91cCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL2dyb3VwLyI+R3JvdXBzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvZ3JvdXAvYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL2dyb3VwLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC11c2VyIj4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8iPlVzZXJzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgPC90YWJsZT4KICAgICAgICA8L2Rpdj4KICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImFwcC1jb3JlIG1vZHVsZSI+CiAgICAgICAgPHRhYmxlPgogICAgICAgIDxjYXB0aW9uPgogICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS8iIGNsYXNzPSJzZWN0aW9uIiB0aXRsZT0iTW9kZWxzIGluIHRoZSBDb3JlIGFwcGxpY2F0aW9uIj5Db3JlPC9hPgogICAgICAgIDwvY2FwdGlvbj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1hcHBsaWNhdGlvbiI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL2FwcGxpY2F0aW9uLyI+QXBwbGljYXRpb25zPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvYXBwbGljYXRpb24vYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL2FwcGxpY2F0aW9uLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1jb21wYW55Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8iPkNvbXBhbnlzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgICAgIDx0ciBjbGFzcz0ibW9kZWwtc3R1ZGVudCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvIj5TdHVkZW50czwvYT48L3RoPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvIiBjbGFzcz0iY2hhbmdlbGluayI+Q2hhbmdlPC9hPjwvdGQ+CiAgICAgICAgICAgIAogICAgICAgICAgICA8L3RyPgogICAgICAgIAogICAgICAgICAgICA8dHIgY2xhc3M9Im1vZGVsLXN1cGVydmlzb3IiPgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0aCBzY29wZT0icm93Ij48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yLyI+U3VwZXJ2aXNvcnM8L2E+PC90aD4KICAgICAgICAgICAgCgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0ZD48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yL2FkZC8iIGNsYXNzPSJhZGRsaW5rIj5BZGQ8L2E+PC90ZD4KICAgICAgICAgICAgCgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0ZD48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC12YWNhbmN5Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS8iPlZhY2FuY3lzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgPC90YWJsZT4KICAgICAgICA8L2Rpdj4KICAgIAoKPC9kaXY+CgogICAgICAgIAo8ZGl2IGlkPSJjb250ZW50LXJlbGF0ZWQiPgogICAgPGRpdiBjbGFzcz0ibW9kdWxlIiBpZD0icmVjZW50LWFjdGlvbnMtbW9kdWxlIj4KICAgICAgICA8aDI+UmVjZW50IGFjdGlvbnM8L2gyPgogICAgICAgIDxoMz5NeSBhY3Rpb25zPC9oMz4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgPHA+Tm9uZSBhdmFpbGFibGU8L3A+CiAgICAgICAgICAgIAogICAgPC9kaXY+CjwvZGl2PgoKICAgICAgICA8YnIgY2xhc3M9ImNsZWFyIiAvPgogICAgPC9kaXY+CiAgICA8IS0tIEVORCBDb250ZW50IC0tPgoKICAgIDxkaXYgaWQ9ImZvb3RlciI+PC9kaXY+CjwvZGl2Pgo8IS0tIEVORCBDb250YWluZXIgLS0+Cgo8L2JvZHk+CjwvaHRtbD4K", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 14:33:12 GMT\", \"Expires\": \"Mon, 27 Mar 2017 14:33:12 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\"}" - } -}, -{ - "model": "silk.response", - "pk": "1247ba57-3cd2-4f69-81bf-3c4e5271f8da", - "fields": { - "request": "c5ada41e-e4c5-4cea-aa3a-c3caef48fe7e", - "status_code": 200, - "raw_body": "W3siaWQiOjEsImNvbXBhbnkiOnsiaWQiOjIsInVzZXIiOnsidXJsIjoiaHR0cDovLzEyNy4wLjAuMTo4MDAwL2FwaS91c2Vycy8zLyIsInVzZXJuYW1lIjoiZmFyaGFuY29ycCIsImVtYWlsIjoiIiwiaXNfc3RhZmYiOmZhbHNlfSwibmFtZSI6ImZhcmhhbmNvcnAiLCJjcmVhdGVkIjoiMjAxNy0wMy0yN1QxNDo1NTo0NC42NzkwMDBaIiwidXBkYXRlZCI6IjIwMTctMDMtMjdUMTQ6NTU6NDQuNjc5MDAwWiIsImRlc2NyaXB0aW9uIjoiZmFyaGFuY29ycCIsInZlcmlmaWVkIjpmYWxzZSwibG9nbyI6bnVsbCwiYWxhbWF0IjpudWxsfSwidmVyaWZpZWQiOmZhbHNlLCJvcGVuX3RpbWUiOiIyMDE3LTAzLTI3VDE1OjIzOjIwWiIsImRlc2NyaXB0aW9uIjoiIiwiY2xvc2VfdGltZSI6IjIwMTctMDMtMjdUMTU6MjM6MjJaIn1d", - "body": "[\n {\n \"close_time\": \"2017-03-27T15:23:22Z\",\n \"company\": {\n \"alamat\": null,\n \"created\": \"2017-03-27T14:55:44.679000Z\",\n \"description\": \"farhancorp\",\n \"id\": 2,\n \"logo\": null,\n \"name\": \"farhancorp\",\n \"updated\": \"2017-03-27T14:55:44.679000Z\",\n \"user\": {\n \"email\": \"\",\n \"is_staff\": false,\n \"url\": \"http://127.0.0.1:8000/api/users/3/\",\n \"username\": \"farhancorp\"\n },\n \"verified\": false\n },\n \"description\": \"\",\n \"id\": 1,\n \"open_time\": \"2017-03-27T15:23:20Z\",\n \"verified\": false\n }\n]", - "encoded_headers": "{\"Content-Type\": \"application/json\", \"Allow\": \"GET, POST, OPTIONS\", \"Vary\": \"Accept\"}" - } -}, -{ - "model": "silk.response", - "pk": "13a9dba7-e6b2-4893-aff9-ab96e9c8e9c0", - "fields": { - "request": "8059761b-b901-46a8-91f5-ea11fe1b0ebd", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "13defa2e-38d0-47ae-8824-a0f40531734e", - "fields": { - "request": "1d5d0c23-fd3f-44da-9141-f0ed95bb2803", - "status_code": 302, - "raw_body": "", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Location\": \"/admin/auth/user/2/change/\", \"Last-Modified\": \"Mon, 27 Mar 2017 14:52:34 GMT\", \"Expires\": \"Mon, 27 Mar 2017 14:52:34 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\"}" - } -}, -{ - "model": "silk.response", - "pk": "14763c70-29ae-4ab8-87dd-f549b69c4ffe", - "fields": { - "request": "ad052a13-c249-4d3c-9c28-45b911e1c100", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "164c634c-004b-42c0-8e07-3f4b422a31f7", - "fields": { - "request": "e688b22c-4aa4-4254-b2fc-542dc6e70eb5", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPkFkZCBzdHVkZW50IHwgRGphbmdvIHNpdGUgYWRtaW48L3RpdGxlPgo8bGluayByZWw9InN0eWxlc2hlZXQiIHR5cGU9InRleHQvY3NzIiBocmVmPSIvYXNzZXRzL2FkbWluL2Nzcy9iYXNlLmNzcyIgLz4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvZm9ybXMuY3NzIiAvPgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9jb3JlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IvanF1ZXJ5L2pxdWVyeS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvanF1ZXJ5LmluaXQuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2FkbWluL1JlbGF0ZWRPYmplY3RMb29rdXBzLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hY3Rpb25zLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy91cmxpZnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL3ByZXBvcHVsYXRlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IveHJlZ2V4cC94cmVnZXhwLmpzIj48L3NjcmlwdD4KCjxtZXRhIG5hbWU9InJvYm90cyIgY29udGVudD0iTk9ORSxOT0FSQ0hJVkUiIC8+CjwvaGVhZD4KCgo8Ym9keSBjbGFzcz0iIGFwcC1jb3JlIG1vZGVsLXN0dWRlbnQgY2hhbmdlLWZvcm0iCiAgZGF0YS1hZG1pbi11dGMtb2Zmc2V0PSIwIj4KCjwhLS0gQ29udGFpbmVyIC0tPgo8ZGl2IGlkPSJjb250YWluZXIiPgoKICAgIAogICAgPCEtLSBIZWFkZXIgLS0+CiAgICA8ZGl2IGlkPSJoZWFkZXIiPgogICAgICAgIDxkaXYgaWQ9ImJyYW5kaW5nIj4KICAgICAgICAKPGgxIGlkPSJzaXRlLW5hbWUiPjxhIGhyZWY9Ii9hZG1pbi8iPkRqYW5nbyBhZG1pbmlzdHJhdGlvbjwvYT48L2gxPgoKICAgICAgICA8L2Rpdj4KICAgICAgICAKICAgICAgICAKICAgICAgICA8ZGl2IGlkPSJ1c2VyLXRvb2xzIj4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICBXZWxjb21lLAogICAgICAgICAgICAgICAgPHN0cm9uZz5rYXBlPC9zdHJvbmc+LgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvIj5WaWV3IHNpdGU8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL3Bhc3N3b3JkX2NoYW5nZS8iPkNoYW5nZSBwYXNzd29yZDwvYT4gLwogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vbG9nb3V0LyI+TG9nIG91dDwvYT4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgCiAgICA8L2Rpdj4KICAgIDwhLS0gRU5EIEhlYWRlciAtLT4KICAgIAo8ZGl2IGNsYXNzPSJicmVhZGNydW1icyI+CjxhIGhyZWY9Ii9hZG1pbi8iPkhvbWU8L2E+CiZyc2FxdW87IDxhIGhyZWY9Ii9hZG1pbi9jb3JlLyI+Q29yZTwvYT4KJnJzYXF1bzsgPGEgaHJlZj0iL2FkbWluL2NvcmUvc3R1ZGVudC8iPlN0dWRlbnRzPC9hPgomcnNhcXVvOyBBZGQgc3R1ZGVudAo8L2Rpdj4KCiAgICAKCiAgICAKICAgICAgICAKICAgIAoKICAgIDwhLS0gQ29udGVudCAtLT4KICAgIDxkaXYgaWQ9ImNvbnRlbnQiIGNsYXNzPSJjb2xNIj4KICAgICAgICAKICAgICAgICA8aDE+QWRkIHN0dWRlbnQ8L2gxPgogICAgICAgIDxkaXYgaWQ9ImNvbnRlbnQtbWFpbiI+CgoKCjxmb3JtIGVuY3R5cGU9Im11bHRpcGFydC9mb3JtLWRhdGEiIGFjdGlvbj0iIiBtZXRob2Q9InBvc3QiIGlkPSJzdHVkZW50X2Zvcm0iIG5vdmFsaWRhdGU+PGlucHV0IHR5cGU9J2hpZGRlbicgbmFtZT0nY3NyZm1pZGRsZXdhcmV0b2tlbicgdmFsdWU9J2hZWXg0VTlCQzU1Z1M1THFHR3h5TWlrbHNYMXNXQXRKRzQ1bWdxMXdwMmdGZmROU3A3MjBFWjE1cVM3aGdBcHknIC8+CjxkaXY+CgoKCgogICAgPHAgY2xhc3M9ImVycm9ybm90ZSI+CiAgICBQbGVhc2UgY29ycmVjdCB0aGUgZXJyb3IgYmVsb3cuCiAgICA8L3A+CiAgICAKCgoKCiAgPGZpZWxkc2V0IGNsYXNzPSJtb2R1bGUgYWxpZ25lZCAiPgogICAgCiAgICAKICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImZvcm0tcm93IGZpZWxkLXVzZXIiPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgY2xhc3M9InJlcXVpcmVkIiBmb3I9ImlkX3VzZXIiPlVzZXI6PC9sYWJlbD4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAKPGRpdiBjbGFzcz0icmVsYXRlZC13aWRnZXQtd3JhcHBlciI+CiAgICA8c2VsZWN0IGlkPSJpZF91c2VyIiBuYW1lPSJ1c2VyIiByZXF1aXJlZD4KPG9wdGlvbiB2YWx1ZT0iIj4tLS0tLS0tLS08L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMiIgc2VsZWN0ZWQ9InNlbGVjdGVkIj5mYXJoYW48L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMyI+ZmFyaGFuY29ycDwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSI0Ij5mYXJoYW5zdXBlcjwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIxIj5rYXBlPC9vcHRpb24+Cjwvc2VsZWN0PgogICAgCiAgICAgICAgCiAgICAgICAgPGEgY2xhc3M9InJlbGF0ZWQtd2lkZ2V0LXdyYXBwZXItbGluayBjaGFuZ2UtcmVsYXRlZCIgaWQ9ImNoYW5nZV9pZF91c2VyIgogICAgICAgICAgICBkYXRhLWhyZWYtdGVtcGxhdGU9Ii9hZG1pbi9hdXRoL3VzZXIvX19ma19fL2NoYW5nZS8/X3RvX2ZpZWxkPWlkJmFtcDtfcG9wdXA9MSIKICAgICAgICAgICAgdGl0bGU9IkNoYW5nZSBzZWxlY3RlZCB1c2VyIj4KICAgICAgICAgICAgPGltZyBzcmM9Ii9hc3NldHMvYWRtaW4vaW1nL2ljb24tY2hhbmdlbGluay5zdmciIGFsdD0iQ2hhbmdlIi8+CiAgICAgICAgPC9hPgogICAgICAgIAogICAgICAgIAogICAgICAgIDxhIGNsYXNzPSJyZWxhdGVkLXdpZGdldC13cmFwcGVyLWxpbmsgYWRkLXJlbGF0ZWQiIGlkPSJhZGRfaWRfdXNlciIKICAgICAgICAgICAgaHJlZj0iL2FkbWluL2F1dGgvdXNlci9hZGQvP190b19maWVsZD1pZCZhbXA7X3BvcHVwPTEiCiAgICAgICAgICAgIHRpdGxlPSJBZGQgYW5vdGhlciB1c2VyIj4KICAgICAgICAgICAgPGltZyBzcmM9Ii9hc3NldHMvYWRtaW4vaW1nL2ljb24tYWRkbGluay5zdmciIGFsdD0iQWRkIi8+CiAgICAgICAgPC9hPgogICAgICAgIAogICAgICAgIAogICAgCjwvZGl2PgoKICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC1ucG0iPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgY2xhc3M9InJlcXVpcmVkIiBmb3I9ImlkX25wbSI+TnBtOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgPGlucHV0IGNsYXNzPSJ2SW50ZWdlckZpZWxkIiBpZD0iaWRfbnBtIiBuYW1lPSJucG0iIHR5cGU9InRleHQiIHZhbHVlPSIxNDA2NTcyMzIxIiByZXF1aXJlZCAvPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDwvZGl2PgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImZvcm0tcm93IGZpZWxkLXJlc3VtZSI+CiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXY+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxsYWJlbCBmb3I9ImlkX3Jlc3VtZSI+UmVzdW1lOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgPGlucHV0IGlkPSJpZF9yZXN1bWUiIG5hbWU9InJlc3VtZSIgdHlwZT0iZmlsZSIgLz4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC1waG9uZV9udW1iZXIiPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgZm9yPSJpZF9waG9uZV9udW1iZXIiPlBob25lIG51bWJlcjo8L2xhYmVsPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxpbnB1dCBjbGFzcz0idlRleHRGaWVsZCIgaWQ9ImlkX3Bob25lX251bWJlciIgbWF4bGVuZ3RoPSIxMDAiIG5hbWU9InBob25lX251bWJlciIgdHlwZT0idGV4dCIgdmFsdWU9IjEyMzEiIC8+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPC9kaXY+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgCiAgICAgICAgPGRpdiBjbGFzcz0iZm9ybS1yb3cgZXJyb3JzIGZpZWxkLWJvb2ttYXJrZWRfdmFjYW5jaWVzIj4KICAgICAgICAgICAgPHVsIGNsYXNzPSJlcnJvcmxpc3QiPjxsaT5UaGlzIGZpZWxkIGlzIHJlcXVpcmVkLjwvbGk+PC91bD4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgY2xhc3M9InJlcXVpcmVkIiBmb3I9ImlkX2Jvb2ttYXJrZWRfdmFjYW5jaWVzIj5Cb29rbWFya2VkIHZhY2FuY2llczo8L2xhYmVsPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIAo8ZGl2IGNsYXNzPSJyZWxhdGVkLXdpZGdldC13cmFwcGVyIj4KICAgIDxzZWxlY3QgbXVsdGlwbGU9Im11bHRpcGxlIiBpZD0iaWRfYm9va21hcmtlZF92YWNhbmNpZXMiIG5hbWU9ImJvb2ttYXJrZWRfdmFjYW5jaWVzIiByZXF1aXJlZD4KPC9zZWxlY3Q+CiAgICAKICAgICAgICAKICAgICAgICAKICAgICAgICA8YSBjbGFzcz0icmVsYXRlZC13aWRnZXQtd3JhcHBlci1saW5rIGFkZC1yZWxhdGVkIiBpZD0iYWRkX2lkX2Jvb2ttYXJrZWRfdmFjYW5jaWVzIgogICAgICAgICAgICBocmVmPSIvYWRtaW4vY29yZS92YWNhbmN5L2FkZC8/X3RvX2ZpZWxkPWlkJmFtcDtfcG9wdXA9MSIKICAgICAgICAgICAgdGl0bGU9IkFkZCBhbm90aGVyIHZhY2FuY3kiPgogICAgICAgICAgICA8aW1nIHNyYz0iL2Fzc2V0cy9hZG1pbi9pbWcvaWNvbi1hZGRsaW5rLnN2ZyIgYWx0PSJBZGQiLz4KICAgICAgICA8L2E+CiAgICAgICAgCiAgICAgICAgCiAgICAKPC9kaXY+CgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPHAgY2xhc3M9ImhlbHAiPkhvbGQgZG93biAiQ29udHJvbCIsIG9yICJDb21tYW5kIiBvbiBhIE1hYywgdG8gc2VsZWN0IG1vcmUgdGhhbiBvbmUuPC9wPgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPC9kaXY+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgCjwvZmllbGRzZXQ+CgoKCgoKCgoKCgoKCgo8ZGl2IGNsYXNzPSJzdWJtaXQtcm93Ij4KPGlucHV0IHR5cGU9InN1Ym1pdCIgdmFsdWU9IlNhdmUiIGNsYXNzPSJkZWZhdWx0IiBuYW1lPSJfc2F2ZSIgLz4KCgo8aW5wdXQgdHlwZT0ic3VibWl0IiB2YWx1ZT0iU2F2ZSBhbmQgYWRkIGFub3RoZXIiIG5hbWU9Il9hZGRhbm90aGVyIiAvPgo8aW5wdXQgdHlwZT0ic3VibWl0IiB2YWx1ZT0iU2F2ZSBhbmQgY29udGludWUgZWRpdGluZyIgbmFtZT0iX2NvbnRpbnVlIiAvPgo8L2Rpdj4KCgoKICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IgogICAgICAgICAgICBpZD0iZGphbmdvLWFkbWluLWZvcm0tYWRkLWNvbnN0YW50cyIKICAgICAgICAgICAgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2NoYW5nZV9mb3JtLmpzIgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIGRhdGEtbW9kZWwtbmFtZT0ic3R1ZGVudCIKICAgICAgICAgICAgPgogICAgPC9zY3JpcHQ+CgoKCgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIKICAgICAgICBpZD0iZGphbmdvLWFkbWluLXByZXBvcHVsYXRlZC1maWVsZHMtY29uc3RhbnRzIgogICAgICAgIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9wcmVwb3B1bGF0ZV9pbml0LmpzIgogICAgICAgIGRhdGEtcHJlcG9wdWxhdGVkLWZpZWxkcz0iW10iPgo8L3NjcmlwdD4KCgo8L2Rpdj4KPC9mb3JtPjwvZGl2PgoKICAgICAgICAKICAgICAgICA8YnIgY2xhc3M9ImNsZWFyIiAvPgogICAgPC9kaXY+CiAgICA8IS0tIEVORCBDb250ZW50IC0tPgoKICAgIDxkaXYgaWQ9ImZvb3RlciI+PC9kaXY+CjwvZGl2Pgo8IS0tIEVORCBDb250YWluZXIgLS0+Cgo8L2JvZHk+CjwvaHRtbD4K", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 15:16:22 GMT\", \"Expires\": \"Mon, 27 Mar 2017 15:16:22 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "17107a8a-0010-425d-a048-3da87929292a", - "fields": { - "request": "20a1e1ca-292c-457f-8c2b-e51f4ed7d3af", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPlNlbGVjdCBzdXBlcnZpc29yIHRvIGNoYW5nZSB8IERqYW5nbyBzaXRlIGFkbWluPC90aXRsZT4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvYmFzZS5jc3MiIC8+CgogIAogIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvYWRtaW4vY3NzL2NoYW5nZWxpc3RzLmNzcyIgLz4KICAKICAKICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KICAKICAKICAKCgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvY29yZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL2pxdWVyeS9qcXVlcnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2pxdWVyeS5pbml0LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hZG1pbi9SZWxhdGVkT2JqZWN0TG9va3Vwcy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvYWN0aW9ucy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdXJsaWZ5LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9wcmVwb3B1bGF0ZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL3hyZWdleHAveHJlZ2V4cC5qcyI+PC9zY3JpcHQ+Cgo8bWV0YSBuYW1lPSJyb2JvdHMiIGNvbnRlbnQ9Ik5PTkUsTk9BUkNISVZFIiAvPgo8L2hlYWQ+CgoKPGJvZHkgY2xhc3M9IiBhcHAtY29yZSBtb2RlbC1zdXBlcnZpc29yIGNoYW5nZS1saXN0IgogIGRhdGEtYWRtaW4tdXRjLW9mZnNldD0iMCI+Cgo8IS0tIENvbnRhaW5lciAtLT4KPGRpdiBpZD0iY29udGFpbmVyIj4KCiAgICAKICAgIDwhLS0gSGVhZGVyIC0tPgogICAgPGRpdiBpZD0iaGVhZGVyIj4KICAgICAgICA8ZGl2IGlkPSJicmFuZGluZyI+CiAgICAgICAgCjxoMSBpZD0ic2l0ZS1uYW1lIj48YSBocmVmPSIvYWRtaW4vIj5EamFuZ28gYWRtaW5pc3RyYXRpb248L2E+PC9oMT4KCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgPGRpdiBpZD0idXNlci10b29scyI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgV2VsY29tZSwKICAgICAgICAgICAgICAgIDxzdHJvbmc+a2FwZTwvc3Ryb25nPi4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iLyI+VmlldyBzaXRlPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9wYXNzd29yZF9jaGFuZ2UvIj5DaGFuZ2UgcGFzc3dvcmQ8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2xvZ291dC8iPkxvZyBvdXQ8L2E+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIAogICAgPC9kaXY+CiAgICA8IS0tIEVORCBIZWFkZXIgLS0+CiAgICAKPGRpdiBjbGFzcz0iYnJlYWRjcnVtYnMiPgo8YSBocmVmPSIvYWRtaW4vIj5Ib21lPC9hPgomcnNhcXVvOyA8YSBocmVmPSIvYWRtaW4vY29yZS8iPkNvcmU8L2E+CiZyc2FxdW87IFN1cGVydmlzb3JzCjwvZGl2PgoKICAgIAoKICAgIAogICAgICAgIAogICAgCgogICAgPCEtLSBDb250ZW50IC0tPgogICAgPGRpdiBpZD0iY29udGVudCIgY2xhc3M9ImZsZXgiPgogICAgICAgIAogICAgICAgIDxoMT5TZWxlY3Qgc3VwZXJ2aXNvciB0byBjaGFuZ2U8L2gxPgogICAgICAgIAogIDxkaXYgaWQ9ImNvbnRlbnQtbWFpbiI+CiAgICAKICAgICAgICA8dWwgY2xhc3M9Im9iamVjdC10b29scyI+CiAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaT4KICAgICAgICAgICAgICAKICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yL2FkZC8iIGNsYXNzPSJhZGRsaW5rIj4KICAgICAgICAgICAgICAgIEFkZCBzdXBlcnZpc29yCiAgICAgICAgICAgICAgPC9hPgogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgIAogICAgICAgIDwvdWw+CiAgICAKICAgIAogICAgPGRpdiBjbGFzcz0ibW9kdWxlIiBpZD0iY2hhbmdlbGlzdCI+CiAgICAgIAoKCiAgICAgIAoKCiAgICAgIAogICAgICAgIAogICAgICAKCiAgICAgIDxmb3JtIGlkPSJjaGFuZ2VsaXN0LWZvcm0iIG1ldGhvZD0icG9zdCIgbm92YWxpZGF0ZT48aW5wdXQgdHlwZT0naGlkZGVuJyBuYW1lPSdjc3JmbWlkZGxld2FyZXRva2VuJyB2YWx1ZT0nbWkwZFJ1QVpHZkhTVzBGMGdrckE3c2VmZjc1am9EWnJMbzcyMzBzVXRjU2hqOEhzWkxXMlo5VlpkMmI4SURWZycgLz4KICAgICAgCgogICAgICAKICAgICAgICAgIAogICAgICAgICAgCgoKCiAgICAgICAgICAKICAgICAgCiAgICAgIAoKPHAgY2xhc3M9InBhZ2luYXRvciI+CgowIHN1cGVydmlzb3JzCgoKPC9wPgoKICAgICAgPC9mb3JtPgogICAgPC9kaXY+CiAgPC9kaXY+CgogICAgICAgIAogICAgICAgIDxiciBjbGFzcz0iY2xlYXIiIC8+CiAgICA8L2Rpdj4KICAgIDwhLS0gRU5EIENvbnRlbnQgLS0+CgogICAgPGRpdiBpZD0iZm9vdGVyIj48L2Rpdj4KPC9kaXY+CjwhLS0gRU5EIENvbnRhaW5lciAtLT4KCjwvYm9keT4KPC9odG1sPgo=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 15:22:11 GMT\", \"Expires\": \"Mon, 27 Mar 2017 15:22:11 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "189aa009-b11a-48fc-a720-61c9b1095e9f", - "fields": { - "request": "0e9a89ef-c0f2-4302-a043-bcdafe6016e5", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPkFkZCBzdHVkZW50IHwgRGphbmdvIHNpdGUgYWRtaW48L3RpdGxlPgo8bGluayByZWw9InN0eWxlc2hlZXQiIHR5cGU9InRleHQvY3NzIiBocmVmPSIvYXNzZXRzL2FkbWluL2Nzcy9iYXNlLmNzcyIgLz4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvZm9ybXMuY3NzIiAvPgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9jb3JlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IvanF1ZXJ5L2pxdWVyeS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvanF1ZXJ5LmluaXQuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2FkbWluL1JlbGF0ZWRPYmplY3RMb29rdXBzLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hY3Rpb25zLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy91cmxpZnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL3ByZXBvcHVsYXRlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IveHJlZ2V4cC94cmVnZXhwLmpzIj48L3NjcmlwdD4KCjxtZXRhIG5hbWU9InJvYm90cyIgY29udGVudD0iTk9ORSxOT0FSQ0hJVkUiIC8+CjwvaGVhZD4KCgo8Ym9keSBjbGFzcz0iIGFwcC1jb3JlIG1vZGVsLXN0dWRlbnQgY2hhbmdlLWZvcm0iCiAgZGF0YS1hZG1pbi11dGMtb2Zmc2V0PSIwIj4KCjwhLS0gQ29udGFpbmVyIC0tPgo8ZGl2IGlkPSJjb250YWluZXIiPgoKICAgIAogICAgPCEtLSBIZWFkZXIgLS0+CiAgICA8ZGl2IGlkPSJoZWFkZXIiPgogICAgICAgIDxkaXYgaWQ9ImJyYW5kaW5nIj4KICAgICAgICAKPGgxIGlkPSJzaXRlLW5hbWUiPjxhIGhyZWY9Ii9hZG1pbi8iPkRqYW5nbyBhZG1pbmlzdHJhdGlvbjwvYT48L2gxPgoKICAgICAgICA8L2Rpdj4KICAgICAgICAKICAgICAgICAKICAgICAgICA8ZGl2IGlkPSJ1c2VyLXRvb2xzIj4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICBXZWxjb21lLAogICAgICAgICAgICAgICAgPHN0cm9uZz5rYXBlPC9zdHJvbmc+LgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvIj5WaWV3IHNpdGU8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL3Bhc3N3b3JkX2NoYW5nZS8iPkNoYW5nZSBwYXNzd29yZDwvYT4gLwogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vbG9nb3V0LyI+TG9nIG91dDwvYT4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgCiAgICA8L2Rpdj4KICAgIDwhLS0gRU5EIEhlYWRlciAtLT4KICAgIAo8ZGl2IGNsYXNzPSJicmVhZGNydW1icyI+CjxhIGhyZWY9Ii9hZG1pbi8iPkhvbWU8L2E+CiZyc2FxdW87IDxhIGhyZWY9Ii9hZG1pbi9jb3JlLyI+Q29yZTwvYT4KJnJzYXF1bzsgPGEgaHJlZj0iL2FkbWluL2NvcmUvc3R1ZGVudC8iPlN0dWRlbnRzPC9hPgomcnNhcXVvOyBBZGQgc3R1ZGVudAo8L2Rpdj4KCiAgICAKCiAgICAKICAgICAgICAKICAgIAoKICAgIDwhLS0gQ29udGVudCAtLT4KICAgIDxkaXYgaWQ9ImNvbnRlbnQiIGNsYXNzPSJjb2xNIj4KICAgICAgICAKICAgICAgICA8aDE+QWRkIHN0dWRlbnQ8L2gxPgogICAgICAgIDxkaXYgaWQ9ImNvbnRlbnQtbWFpbiI+CgoKCjxmb3JtIGVuY3R5cGU9Im11bHRpcGFydC9mb3JtLWRhdGEiIGFjdGlvbj0iIiBtZXRob2Q9InBvc3QiIGlkPSJzdHVkZW50X2Zvcm0iIG5vdmFsaWRhdGU+PGlucHV0IHR5cGU9J2hpZGRlbicgbmFtZT0nY3NyZm1pZGRsZXdhcmV0b2tlbicgdmFsdWU9J0U2MlZwdmFpUWoxcVBaVURTYXAzZndudFRTM000TlRkM2M5S0IxMmREZ2NQYzdXNUJCVXY3ZDRkUk45Qm9OUDInIC8+CjxkaXY+CgoKCgoKCgogIDxmaWVsZHNldCBjbGFzcz0ibW9kdWxlIGFsaWduZWQgIj4KICAgIAogICAgCiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC11c2VyIj4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGRpdj4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPGxhYmVsIGNsYXNzPSJyZXF1aXJlZCIgZm9yPSJpZF91c2VyIj5Vc2VyOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgCjxkaXYgY2xhc3M9InJlbGF0ZWQtd2lkZ2V0LXdyYXBwZXIiPgogICAgPHNlbGVjdCBpZD0iaWRfdXNlciIgbmFtZT0idXNlciIgcmVxdWlyZWQ+CjxvcHRpb24gdmFsdWU9IiIgc2VsZWN0ZWQ9InNlbGVjdGVkIj4tLS0tLS0tLS08L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMiI+ZmFyaGFuPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjMiPmZhcmhhbmNvcnA8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iNCI+ZmFyaGFuc3VwZXI8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMSI+a2FwZTwvb3B0aW9uPgo8L3NlbGVjdD4KICAgIAogICAgICAgIAogICAgICAgIDxhIGNsYXNzPSJyZWxhdGVkLXdpZGdldC13cmFwcGVyLWxpbmsgY2hhbmdlLXJlbGF0ZWQiIGlkPSJjaGFuZ2VfaWRfdXNlciIKICAgICAgICAgICAgZGF0YS1ocmVmLXRlbXBsYXRlPSIvYWRtaW4vYXV0aC91c2VyL19fZmtfXy9jaGFuZ2UvP190b19maWVsZD1pZCZhbXA7X3BvcHVwPTEiCiAgICAgICAgICAgIHRpdGxlPSJDaGFuZ2Ugc2VsZWN0ZWQgdXNlciI+CiAgICAgICAgICAgIDxpbWcgc3JjPSIvYXNzZXRzL2FkbWluL2ltZy9pY29uLWNoYW5nZWxpbmsuc3ZnIiBhbHQ9IkNoYW5nZSIvPgogICAgICAgIDwvYT4KICAgICAgICAKICAgICAgICAKICAgICAgICA8YSBjbGFzcz0icmVsYXRlZC13aWRnZXQtd3JhcHBlci1saW5rIGFkZC1yZWxhdGVkIiBpZD0iYWRkX2lkX3VzZXIiCiAgICAgICAgICAgIGhyZWY9Ii9hZG1pbi9hdXRoL3VzZXIvYWRkLz9fdG9fZmllbGQ9aWQmYW1wO19wb3B1cD0xIgogICAgICAgICAgICB0aXRsZT0iQWRkIGFub3RoZXIgdXNlciI+CiAgICAgICAgICAgIDxpbWcgc3JjPSIvYXNzZXRzL2FkbWluL2ltZy9pY29uLWFkZGxpbmsuc3ZnIiBhbHQ9IkFkZCIvPgogICAgICAgIDwvYT4KICAgICAgICAKICAgICAgICAKICAgIAo8L2Rpdj4KCiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPC9kaXY+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgCiAgICAgICAgPGRpdiBjbGFzcz0iZm9ybS1yb3cgZmllbGQtbnBtIj4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGRpdj4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPGxhYmVsIGNsYXNzPSJyZXF1aXJlZCIgZm9yPSJpZF9ucG0iPk5wbTo8L2xhYmVsPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxpbnB1dCBjbGFzcz0idkludGVnZXJGaWVsZCIgaWQ9ImlkX25wbSIgbmFtZT0ibnBtIiB0eXBlPSJ0ZXh0IiByZXF1aXJlZCAvPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDwvZGl2PgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImZvcm0tcm93IGZpZWxkLXJlc3VtZSI+CiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXY+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxsYWJlbCBmb3I9ImlkX3Jlc3VtZSI+UmVzdW1lOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgPGlucHV0IGlkPSJpZF9yZXN1bWUiIG5hbWU9InJlc3VtZSIgdHlwZT0iZmlsZSIgLz4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC1waG9uZV9udW1iZXIiPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgZm9yPSJpZF9waG9uZV9udW1iZXIiPlBob25lIG51bWJlcjo8L2xhYmVsPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxpbnB1dCBjbGFzcz0idlRleHRGaWVsZCIgaWQ9ImlkX3Bob25lX251bWJlciIgbWF4bGVuZ3RoPSIxMDAiIG5hbWU9InBob25lX251bWJlciIgdHlwZT0idGV4dCIgLz4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC1ib29rbWFya2VkX3ZhY2FuY2llcyI+CiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXY+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxsYWJlbCBmb3I9ImlkX2Jvb2ttYXJrZWRfdmFjYW5jaWVzIj5Cb29rbWFya2VkIHZhY2FuY2llczo8L2xhYmVsPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIAo8ZGl2IGNsYXNzPSJyZWxhdGVkLXdpZGdldC13cmFwcGVyIj4KICAgIDxzZWxlY3QgbXVsdGlwbGU9Im11bHRpcGxlIiBpZD0iaWRfYm9va21hcmtlZF92YWNhbmNpZXMiIG5hbWU9ImJvb2ttYXJrZWRfdmFjYW5jaWVzIj4KPC9zZWxlY3Q+CiAgICAKICAgICAgICAKICAgICAgICAKICAgICAgICA8YSBjbGFzcz0icmVsYXRlZC13aWRnZXQtd3JhcHBlci1saW5rIGFkZC1yZWxhdGVkIiBpZD0iYWRkX2lkX2Jvb2ttYXJrZWRfdmFjYW5jaWVzIgogICAgICAgICAgICBocmVmPSIvYWRtaW4vY29yZS92YWNhbmN5L2FkZC8/X3RvX2ZpZWxkPWlkJmFtcDtfcG9wdXA9MSIKICAgICAgICAgICAgdGl0bGU9IkFkZCBhbm90aGVyIHZhY2FuY3kiPgogICAgICAgICAgICA8aW1nIHNyYz0iL2Fzc2V0cy9hZG1pbi9pbWcvaWNvbi1hZGRsaW5rLnN2ZyIgYWx0PSJBZGQiLz4KICAgICAgICA8L2E+CiAgICAgICAgCiAgICAgICAgCiAgICAKPC9kaXY+CgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPHAgY2xhc3M9ImhlbHAiPkhvbGQgZG93biAiQ29udHJvbCIsIG9yICJDb21tYW5kIiBvbiBhIE1hYywgdG8gc2VsZWN0IG1vcmUgdGhhbiBvbmUuPC9wPgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPC9kaXY+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgCjwvZmllbGRzZXQ+CgoKCgoKCgoKCgoKCgo8ZGl2IGNsYXNzPSJzdWJtaXQtcm93Ij4KPGlucHV0IHR5cGU9InN1Ym1pdCIgdmFsdWU9IlNhdmUiIGNsYXNzPSJkZWZhdWx0IiBuYW1lPSJfc2F2ZSIgLz4KCgo8aW5wdXQgdHlwZT0ic3VibWl0IiB2YWx1ZT0iU2F2ZSBhbmQgYWRkIGFub3RoZXIiIG5hbWU9Il9hZGRhbm90aGVyIiAvPgo8aW5wdXQgdHlwZT0ic3VibWl0IiB2YWx1ZT0iU2F2ZSBhbmQgY29udGludWUgZWRpdGluZyIgbmFtZT0iX2NvbnRpbnVlIiAvPgo8L2Rpdj4KCgoKICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IgogICAgICAgICAgICBpZD0iZGphbmdvLWFkbWluLWZvcm0tYWRkLWNvbnN0YW50cyIKICAgICAgICAgICAgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2NoYW5nZV9mb3JtLmpzIgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIGRhdGEtbW9kZWwtbmFtZT0ic3R1ZGVudCIKICAgICAgICAgICAgPgogICAgPC9zY3JpcHQ+CgoKCgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIKICAgICAgICBpZD0iZGphbmdvLWFkbWluLXByZXBvcHVsYXRlZC1maWVsZHMtY29uc3RhbnRzIgogICAgICAgIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9wcmVwb3B1bGF0ZV9pbml0LmpzIgogICAgICAgIGRhdGEtcHJlcG9wdWxhdGVkLWZpZWxkcz0iW10iPgo8L3NjcmlwdD4KCgo8L2Rpdj4KPC9mb3JtPjwvZGl2PgoKICAgICAgICAKICAgICAgICA8YnIgY2xhc3M9ImNsZWFyIiAvPgogICAgPC9kaXY+CiAgICA8IS0tIEVORCBDb250ZW50IC0tPgoKICAgIDxkaXYgaWQ9ImZvb3RlciI+PC9kaXY+CjwvZGl2Pgo8IS0tIEVORCBDb250YWluZXIgLS0+Cgo8L2JvZHk+CjwvaHRtbD4K", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 15:21:49 GMT\", \"Expires\": \"Mon, 27 Mar 2017 15:21:49 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "191f3f77-6f49-4bff-8f43-0cebc31130ac", - "fields": { - "request": "61cdb88b-5504-4a53-aab7-7fb04278e75b", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPkFkZCBzdHVkZW50IHwgRGphbmdvIHNpdGUgYWRtaW48L3RpdGxlPgo8bGluayByZWw9InN0eWxlc2hlZXQiIHR5cGU9InRleHQvY3NzIiBocmVmPSIvYXNzZXRzL2FkbWluL2Nzcy9iYXNlLmNzcyIgLz4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvZm9ybXMuY3NzIiAvPgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9jb3JlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IvanF1ZXJ5L2pxdWVyeS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvanF1ZXJ5LmluaXQuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2FkbWluL1JlbGF0ZWRPYmplY3RMb29rdXBzLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hY3Rpb25zLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy91cmxpZnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL3ByZXBvcHVsYXRlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IveHJlZ2V4cC94cmVnZXhwLmpzIj48L3NjcmlwdD4KCjxtZXRhIG5hbWU9InJvYm90cyIgY29udGVudD0iTk9ORSxOT0FSQ0hJVkUiIC8+CjwvaGVhZD4KCgo8Ym9keSBjbGFzcz0iIGFwcC1jb3JlIG1vZGVsLXN0dWRlbnQgY2hhbmdlLWZvcm0iCiAgZGF0YS1hZG1pbi11dGMtb2Zmc2V0PSIwIj4KCjwhLS0gQ29udGFpbmVyIC0tPgo8ZGl2IGlkPSJjb250YWluZXIiPgoKICAgIAogICAgPCEtLSBIZWFkZXIgLS0+CiAgICA8ZGl2IGlkPSJoZWFkZXIiPgogICAgICAgIDxkaXYgaWQ9ImJyYW5kaW5nIj4KICAgICAgICAKPGgxIGlkPSJzaXRlLW5hbWUiPjxhIGhyZWY9Ii9hZG1pbi8iPkRqYW5nbyBhZG1pbmlzdHJhdGlvbjwvYT48L2gxPgoKICAgICAgICA8L2Rpdj4KICAgICAgICAKICAgICAgICAKICAgICAgICA8ZGl2IGlkPSJ1c2VyLXRvb2xzIj4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICBXZWxjb21lLAogICAgICAgICAgICAgICAgPHN0cm9uZz5rYXBlPC9zdHJvbmc+LgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvIj5WaWV3IHNpdGU8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL3Bhc3N3b3JkX2NoYW5nZS8iPkNoYW5nZSBwYXNzd29yZDwvYT4gLwogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vbG9nb3V0LyI+TG9nIG91dDwvYT4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgCiAgICA8L2Rpdj4KICAgIDwhLS0gRU5EIEhlYWRlciAtLT4KICAgIAo8ZGl2IGNsYXNzPSJicmVhZGNydW1icyI+CjxhIGhyZWY9Ii9hZG1pbi8iPkhvbWU8L2E+CiZyc2FxdW87IDxhIGhyZWY9Ii9hZG1pbi9jb3JlLyI+Q29yZTwvYT4KJnJzYXF1bzsgPGEgaHJlZj0iL2FkbWluL2NvcmUvc3R1ZGVudC8iPlN0dWRlbnRzPC9hPgomcnNhcXVvOyBBZGQgc3R1ZGVudAo8L2Rpdj4KCiAgICAKCiAgICAKICAgICAgICAKICAgIAoKICAgIDwhLS0gQ29udGVudCAtLT4KICAgIDxkaXYgaWQ9ImNvbnRlbnQiIGNsYXNzPSJjb2xNIj4KICAgICAgICAKICAgICAgICA8aDE+QWRkIHN0dWRlbnQ8L2gxPgogICAgICAgIDxkaXYgaWQ9ImNvbnRlbnQtbWFpbiI+CgoKCjxmb3JtIGVuY3R5cGU9Im11bHRpcGFydC9mb3JtLWRhdGEiIGFjdGlvbj0iIiBtZXRob2Q9InBvc3QiIGlkPSJzdHVkZW50X2Zvcm0iIG5vdmFsaWRhdGU+PGlucHV0IHR5cGU9J2hpZGRlbicgbmFtZT0nY3NyZm1pZGRsZXdhcmV0b2tlbicgdmFsdWU9J0MwYndPV0pSeU5wbDNGODlLSGpWQVl6aVl4TUVFelhtMTZpbDBzQk1sS0FLcU5hQnQ4T25zRmcyV3NTdFl6VGInIC8+CjxkaXY+CgoKCgoKCgogIDxmaWVsZHNldCBjbGFzcz0ibW9kdWxlIGFsaWduZWQgIj4KICAgIAogICAgCiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC11c2VyIj4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGRpdj4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPGxhYmVsIGNsYXNzPSJyZXF1aXJlZCIgZm9yPSJpZF91c2VyIj5Vc2VyOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgCjxkaXYgY2xhc3M9InJlbGF0ZWQtd2lkZ2V0LXdyYXBwZXIiPgogICAgPHNlbGVjdCBpZD0iaWRfdXNlciIgbmFtZT0idXNlciIgcmVxdWlyZWQ+CjxvcHRpb24gdmFsdWU9IiIgc2VsZWN0ZWQ9InNlbGVjdGVkIj4tLS0tLS0tLS08L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMiI+ZmFyaGFuPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjMiPmZhcmhhbmNvcnA8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iNCI+ZmFyaGFuc3VwZXI8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMSI+a2FwZTwvb3B0aW9uPgo8L3NlbGVjdD4KICAgIAogICAgICAgIAogICAgICAgIDxhIGNsYXNzPSJyZWxhdGVkLXdpZGdldC13cmFwcGVyLWxpbmsgY2hhbmdlLXJlbGF0ZWQiIGlkPSJjaGFuZ2VfaWRfdXNlciIKICAgICAgICAgICAgZGF0YS1ocmVmLXRlbXBsYXRlPSIvYWRtaW4vYXV0aC91c2VyL19fZmtfXy9jaGFuZ2UvP190b19maWVsZD1pZCZhbXA7X3BvcHVwPTEiCiAgICAgICAgICAgIHRpdGxlPSJDaGFuZ2Ugc2VsZWN0ZWQgdXNlciI+CiAgICAgICAgICAgIDxpbWcgc3JjPSIvYXNzZXRzL2FkbWluL2ltZy9pY29uLWNoYW5nZWxpbmsuc3ZnIiBhbHQ9IkNoYW5nZSIvPgogICAgICAgIDwvYT4KICAgICAgICAKICAgICAgICAKICAgICAgICA8YSBjbGFzcz0icmVsYXRlZC13aWRnZXQtd3JhcHBlci1saW5rIGFkZC1yZWxhdGVkIiBpZD0iYWRkX2lkX3VzZXIiCiAgICAgICAgICAgIGhyZWY9Ii9hZG1pbi9hdXRoL3VzZXIvYWRkLz9fdG9fZmllbGQ9aWQmYW1wO19wb3B1cD0xIgogICAgICAgICAgICB0aXRsZT0iQWRkIGFub3RoZXIgdXNlciI+CiAgICAgICAgICAgIDxpbWcgc3JjPSIvYXNzZXRzL2FkbWluL2ltZy9pY29uLWFkZGxpbmsuc3ZnIiBhbHQ9IkFkZCIvPgogICAgICAgIDwvYT4KICAgICAgICAKICAgICAgICAKICAgIAo8L2Rpdj4KCiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPC9kaXY+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgCiAgICAgICAgPGRpdiBjbGFzcz0iZm9ybS1yb3cgZmllbGQtbnBtIj4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGRpdj4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPGxhYmVsIGNsYXNzPSJyZXF1aXJlZCIgZm9yPSJpZF9ucG0iPk5wbTo8L2xhYmVsPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxpbnB1dCBjbGFzcz0idkludGVnZXJGaWVsZCIgaWQ9ImlkX25wbSIgbmFtZT0ibnBtIiB0eXBlPSJ0ZXh0IiByZXF1aXJlZCAvPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDwvZGl2PgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImZvcm0tcm93IGZpZWxkLXJlc3VtZSI+CiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXY+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxsYWJlbCBmb3I9ImlkX3Jlc3VtZSI+UmVzdW1lOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgPGlucHV0IGlkPSJpZF9yZXN1bWUiIG5hbWU9InJlc3VtZSIgdHlwZT0iZmlsZSIgLz4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC1waG9uZV9udW1iZXIiPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgZm9yPSJpZF9waG9uZV9udW1iZXIiPlBob25lIG51bWJlcjo8L2xhYmVsPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxpbnB1dCBjbGFzcz0idlRleHRGaWVsZCIgaWQ9ImlkX3Bob25lX251bWJlciIgbWF4bGVuZ3RoPSIxMDAiIG5hbWU9InBob25lX251bWJlciIgdHlwZT0idGV4dCIgLz4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC1ib29rbWFya2VkX3ZhY2FuY2llcyI+CiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXY+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxsYWJlbCBjbGFzcz0icmVxdWlyZWQiIGZvcj0iaWRfYm9va21hcmtlZF92YWNhbmNpZXMiPkJvb2ttYXJrZWQgdmFjYW5jaWVzOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgCjxkaXYgY2xhc3M9InJlbGF0ZWQtd2lkZ2V0LXdyYXBwZXIiPgogICAgPHNlbGVjdCBtdWx0aXBsZT0ibXVsdGlwbGUiIGlkPSJpZF9ib29rbWFya2VkX3ZhY2FuY2llcyIgbmFtZT0iYm9va21hcmtlZF92YWNhbmNpZXMiIHJlcXVpcmVkPgo8L3NlbGVjdD4KICAgIAogICAgICAgIAogICAgICAgIAogICAgICAgIDxhIGNsYXNzPSJyZWxhdGVkLXdpZGdldC13cmFwcGVyLWxpbmsgYWRkLXJlbGF0ZWQiIGlkPSJhZGRfaWRfYm9va21hcmtlZF92YWNhbmNpZXMiCiAgICAgICAgICAgIGhyZWY9Ii9hZG1pbi9jb3JlL3ZhY2FuY3kvYWRkLz9fdG9fZmllbGQ9aWQmYW1wO19wb3B1cD0xIgogICAgICAgICAgICB0aXRsZT0iQWRkIGFub3RoZXIgdmFjYW5jeSI+CiAgICAgICAgICAgIDxpbWcgc3JjPSIvYXNzZXRzL2FkbWluL2ltZy9pY29uLWFkZGxpbmsuc3ZnIiBhbHQ9IkFkZCIvPgogICAgICAgIDwvYT4KICAgICAgICAKICAgICAgICAKICAgIAo8L2Rpdj4KCiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8cCBjbGFzcz0iaGVscCI+SG9sZCBkb3duICJDb250cm9sIiwgb3IgIkNvbW1hbmQiIG9uIGEgTWFjLCB0byBzZWxlY3QgbW9yZSB0aGFuIG9uZS48L3A+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKPC9maWVsZHNldD4KCgoKCgoKCgoKCgoKCjxkaXYgY2xhc3M9InN1Ym1pdC1yb3ciPgo8aW5wdXQgdHlwZT0ic3VibWl0IiB2YWx1ZT0iU2F2ZSIgY2xhc3M9ImRlZmF1bHQiIG5hbWU9Il9zYXZlIiAvPgoKCjxpbnB1dCB0eXBlPSJzdWJtaXQiIHZhbHVlPSJTYXZlIGFuZCBhZGQgYW5vdGhlciIgbmFtZT0iX2FkZGFub3RoZXIiIC8+CjxpbnB1dCB0eXBlPSJzdWJtaXQiIHZhbHVlPSJTYXZlIGFuZCBjb250aW51ZSBlZGl0aW5nIiBuYW1lPSJfY29udGludWUiIC8+CjwvZGl2PgoKCgogICAgPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiCiAgICAgICAgICAgIGlkPSJkamFuZ28tYWRtaW4tZm9ybS1hZGQtY29uc3RhbnRzIgogICAgICAgICAgICBzcmM9Ii9hc3NldHMvYWRtaW4vanMvY2hhbmdlX2Zvcm0uanMiCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgZGF0YS1tb2RlbC1uYW1lPSJzdHVkZW50IgogICAgICAgICAgICA+CiAgICA8L3NjcmlwdD4KCgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IgogICAgICAgIGlkPSJkamFuZ28tYWRtaW4tcHJlcG9wdWxhdGVkLWZpZWxkcy1jb25zdGFudHMiCiAgICAgICAgc3JjPSIvYXNzZXRzL2FkbWluL2pzL3ByZXBvcHVsYXRlX2luaXQuanMiCiAgICAgICAgZGF0YS1wcmVwb3B1bGF0ZWQtZmllbGRzPSJbXSI+Cjwvc2NyaXB0PgoKCjwvZGl2Pgo8L2Zvcm0+PC9kaXY+CgogICAgICAgIAogICAgICAgIDxiciBjbGFzcz0iY2xlYXIiIC8+CiAgICA8L2Rpdj4KICAgIDwhLS0gRU5EIENvbnRlbnQgLS0+CgogICAgPGRpdiBpZD0iZm9vdGVyIj48L2Rpdj4KPC9kaXY+CjwhLS0gRU5EIENvbnRhaW5lciAtLT4KCjwvYm9keT4KPC9odG1sPgo=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 14:55:56 GMT\", \"Expires\": \"Mon, 27 Mar 2017 14:55:56 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "193e24e0-82ba-4331-944c-a8b475c38938", - "fields": { - "request": "f280e8b5-1fa6-4c06-aa6e-bcecbb918ead", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPlNpdGUgYWRtaW5pc3RyYXRpb24gfCBEamFuZ28gc2l0ZSBhZG1pbjwvdGl0bGU+CjxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvYWRtaW4vY3NzL2Jhc2UuY3NzIiAvPgo8bGluayByZWw9InN0eWxlc2hlZXQiIHR5cGU9InRleHQvY3NzIiBocmVmPSIvYXNzZXRzL2FkbWluL2Nzcy9kYXNoYm9hcmQuY3NzIiAvPgoKCjxtZXRhIG5hbWU9InJvYm90cyIgY29udGVudD0iTk9ORSxOT0FSQ0hJVkUiIC8+CjwvaGVhZD4KCgo8Ym9keSBjbGFzcz0iIGRhc2hib2FyZCIKICBkYXRhLWFkbWluLXV0Yy1vZmZzZXQ9IjAiPgoKPCEtLSBDb250YWluZXIgLS0+CjxkaXYgaWQ9ImNvbnRhaW5lciI+CgogICAgCiAgICA8IS0tIEhlYWRlciAtLT4KICAgIDxkaXYgaWQ9ImhlYWRlciI+CiAgICAgICAgPGRpdiBpZD0iYnJhbmRpbmciPgogICAgICAgIAo8aDEgaWQ9InNpdGUtbmFtZSI+PGEgaHJlZj0iL2FkbWluLyI+RGphbmdvIGFkbWluaXN0cmF0aW9uPC9hPjwvaDE+CgogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIDxkaXYgaWQ9InVzZXItdG9vbHMiPgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIFdlbGNvbWUsCiAgICAgICAgICAgICAgICA8c3Ryb25nPmthcGU8L3N0cm9uZz4uCiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii8iPlZpZXcgc2l0ZTwvYT4gLwogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vcGFzc3dvcmRfY2hhbmdlLyI+Q2hhbmdlIHBhc3N3b3JkPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9sb2dvdXQvIj5Mb2cgb3V0PC9hPgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgICAgICAKICAgICAgICAKICAgICAgICAKICAgIDwvZGl2PgogICAgPCEtLSBFTkQgSGVhZGVyIC0tPgogICAgCiAgICAKCiAgICAKICAgICAgICAKICAgIAoKICAgIDwhLS0gQ29udGVudCAtLT4KICAgIDxkaXYgaWQ9ImNvbnRlbnQiIGNsYXNzPSJjb2xNUyI+CiAgICAgICAgCiAgICAgICAgPGgxPlNpdGUgYWRtaW5pc3RyYXRpb248L2gxPgogICAgICAgIAo8ZGl2IGlkPSJjb250ZW50LW1haW4iPgoKCiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJhcHAtYXV0aCBtb2R1bGUiPgogICAgICAgIDx0YWJsZT4KICAgICAgICA8Y2FwdGlvbj4KICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2F1dGgvIiBjbGFzcz0ic2VjdGlvbiIgdGl0bGU9Ik1vZGVscyBpbiB0aGUgQXV0aGVudGljYXRpb24gYW5kIEF1dGhvcml6YXRpb24gYXBwbGljYXRpb24iPkF1dGhlbnRpY2F0aW9uIGFuZCBBdXRob3JpemF0aW9uPC9hPgogICAgICAgIDwvY2FwdGlvbj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1ncm91cCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL2dyb3VwLyI+R3JvdXBzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvZ3JvdXAvYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL2dyb3VwLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC11c2VyIj4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8iPlVzZXJzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgPC90YWJsZT4KICAgICAgICA8L2Rpdj4KICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImFwcC1jb3JlIG1vZHVsZSI+CiAgICAgICAgPHRhYmxlPgogICAgICAgIDxjYXB0aW9uPgogICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS8iIGNsYXNzPSJzZWN0aW9uIiB0aXRsZT0iTW9kZWxzIGluIHRoZSBDb3JlIGFwcGxpY2F0aW9uIj5Db3JlPC9hPgogICAgICAgIDwvY2FwdGlvbj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1hcHBsaWNhdGlvbiI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL2FwcGxpY2F0aW9uLyI+QXBwbGljYXRpb25zPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvYXBwbGljYXRpb24vYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL2FwcGxpY2F0aW9uLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1jb21wYW55Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8iPkNvbXBhbnlzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgICAgIDx0ciBjbGFzcz0ibW9kZWwtc3R1ZGVudCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvIj5TdHVkZW50czwvYT48L3RoPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvIiBjbGFzcz0iY2hhbmdlbGluayI+Q2hhbmdlPC9hPjwvdGQ+CiAgICAgICAgICAgIAogICAgICAgICAgICA8L3RyPgogICAgICAgIAogICAgICAgICAgICA8dHIgY2xhc3M9Im1vZGVsLXN1cGVydmlzb3IiPgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0aCBzY29wZT0icm93Ij48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yLyI+U3VwZXJ2aXNvcnM8L2E+PC90aD4KICAgICAgICAgICAgCgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0ZD48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yL2FkZC8iIGNsYXNzPSJhZGRsaW5rIj5BZGQ8L2E+PC90ZD4KICAgICAgICAgICAgCgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0ZD48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC12YWNhbmN5Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS8iPlZhY2FuY3lzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgPC90YWJsZT4KICAgICAgICA8L2Rpdj4KICAgIAoKPC9kaXY+CgogICAgICAgIAo8ZGl2IGlkPSJjb250ZW50LXJlbGF0ZWQiPgogICAgPGRpdiBjbGFzcz0ibW9kdWxlIiBpZD0icmVjZW50LWFjdGlvbnMtbW9kdWxlIj4KICAgICAgICA8aDI+UmVjZW50IGFjdGlvbnM8L2gyPgogICAgICAgIDxoMz5NeSBhY3Rpb25zPC9oMz4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgPHA+Tm9uZSBhdmFpbGFibGU8L3A+CiAgICAgICAgICAgIAogICAgPC9kaXY+CjwvZGl2PgoKICAgICAgICA8YnIgY2xhc3M9ImNsZWFyIiAvPgogICAgPC9kaXY+CiAgICA8IS0tIEVORCBDb250ZW50IC0tPgoKICAgIDxkaXYgaWQ9ImZvb3RlciI+PC9kaXY+CjwvZGl2Pgo8IS0tIEVORCBDb250YWluZXIgLS0+Cgo8L2JvZHk+CjwvaHRtbD4K", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 14:33:35 GMT\", \"Expires\": \"Mon, 27 Mar 2017 14:33:35 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\"}" - } -}, -{ - "model": "silk.response", - "pk": "1a08c664-66ac-4969-a70f-4cb3b37e4f5f", - "fields": { - "request": "163cce20-655e-4b83-871b-43f05df9c2d9", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPkNoYW5nZSB1c2VyIHwgRGphbmdvIHNpdGUgYWRtaW48L3RpdGxlPgo8bGluayByZWw9InN0eWxlc2hlZXQiIHR5cGU9InRleHQvY3NzIiBocmVmPSIvYXNzZXRzL2FkbWluL2Nzcy9iYXNlLmNzcyIgLz4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvZm9ybXMuY3NzIiAvPgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9jb3JlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IvanF1ZXJ5L2pxdWVyeS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvanF1ZXJ5LmluaXQuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2FkbWluL1JlbGF0ZWRPYmplY3RMb29rdXBzLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hY3Rpb25zLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy91cmxpZnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL3ByZXBvcHVsYXRlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IveHJlZ2V4cC94cmVnZXhwLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9TZWxlY3RCb3guanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL1NlbGVjdEZpbHRlcjIuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2NhbGVuZGFyLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hZG1pbi9EYXRlVGltZVNob3J0Y3V0cy5qcyI+PC9zY3JpcHQ+Cgo8bWV0YSBuYW1lPSJyb2JvdHMiIGNvbnRlbnQ9Ik5PTkUsTk9BUkNISVZFIiAvPgo8L2hlYWQ+CgoKPGJvZHkgY2xhc3M9IiBhcHAtYXV0aCBtb2RlbC11c2VyIGNoYW5nZS1mb3JtIgogIGRhdGEtYWRtaW4tdXRjLW9mZnNldD0iMCI+Cgo8IS0tIENvbnRhaW5lciAtLT4KPGRpdiBpZD0iY29udGFpbmVyIj4KCiAgICAKICAgIDwhLS0gSGVhZGVyIC0tPgogICAgPGRpdiBpZD0iaGVhZGVyIj4KICAgICAgICA8ZGl2IGlkPSJicmFuZGluZyI+CiAgICAgICAgCjxoMSBpZD0ic2l0ZS1uYW1lIj48YSBocmVmPSIvYWRtaW4vIj5EamFuZ28gYWRtaW5pc3RyYXRpb248L2E+PC9oMT4KCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgPGRpdiBpZD0idXNlci10b29scyI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgV2VsY29tZSwKICAgICAgICAgICAgICAgIDxzdHJvbmc+a2FwZTwvc3Ryb25nPi4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iLyI+VmlldyBzaXRlPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9wYXNzd29yZF9jaGFuZ2UvIj5DaGFuZ2UgcGFzc3dvcmQ8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2xvZ291dC8iPkxvZyBvdXQ8L2E+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIAogICAgPC9kaXY+CiAgICA8IS0tIEVORCBIZWFkZXIgLS0+CiAgICAKPGRpdiBjbGFzcz0iYnJlYWRjcnVtYnMiPgo8YSBocmVmPSIvYWRtaW4vIj5Ib21lPC9hPgomcnNhcXVvOyA8YSBocmVmPSIvYWRtaW4vYXV0aC8iPkF1dGhlbnRpY2F0aW9uIGFuZCBBdXRob3JpemF0aW9uPC9hPgomcnNhcXVvOyA8YSBocmVmPSIvYWRtaW4vYXV0aC91c2VyLyI+VXNlcnM8L2E+CiZyc2FxdW87IGZhcmhhbmNvcnAKPC9kaXY+CgogICAgCgogICAgCiAgICAgICAgCiAgICAKCiAgICA8IS0tIENvbnRlbnQgLS0+CiAgICA8ZGl2IGlkPSJjb250ZW50IiBjbGFzcz0iY29sTSI+CiAgICAgICAgCiAgICAgICAgPGgxPkNoYW5nZSB1c2VyPC9oMT4KICAgICAgICA8ZGl2IGlkPSJjb250ZW50LW1haW4iPgoKCiAgPHVsIGNsYXNzPSJvYmplY3QtdG9vbHMiPgogICAgCiAgICA8bGk+CiAgICAgICAgCiAgICAgICAgPGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8zL2hpc3RvcnkvIiBjbGFzcz0iaGlzdG9yeWxpbmsiPkhpc3Rvcnk8L2E+CiAgICA8L2xpPgogICAgCiAgICAKICA8L3VsPgoKCjxmb3JtIGVuY3R5cGU9Im11bHRpcGFydC9mb3JtLWRhdGEiIGFjdGlvbj0iIiBtZXRob2Q9InBvc3QiIGlkPSJ1c2VyX2Zvcm0iIG5vdmFsaWRhdGU+PGlucHV0IHR5cGU9J2hpZGRlbicgbmFtZT0nY3NyZm1pZGRsZXdhcmV0b2tlbicgdmFsdWU9J3ZlMGNrZGlnMzQ5NE1sdUN3OHc5UDhmRHVBMEt2NkhEVWs3MXdKYWJRMWt0OXR3NGZ6MUJIUFduc3Y2elA2RHMnIC8+CjxkaXY+CgoKCgoKCgogIDxmaWVsZHNldCBjbGFzcz0ibW9kdWxlIGFsaWduZWQgIj4KICAgIAogICAgCiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC11c2VybmFtZSI+CiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXY+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxsYWJlbCBjbGFzcz0icmVxdWlyZWQiIGZvcj0iaWRfdXNlcm5hbWUiPlVzZXJuYW1lOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgPGlucHV0IGNsYXNzPSJ2VGV4dEZpZWxkIiBpZD0iaWRfdXNlcm5hbWUiIG1heGxlbmd0aD0iMTUwIiBuYW1lPSJ1c2VybmFtZSIgdHlwZT0idGV4dCIgdmFsdWU9ImZhcmhhbmNvcnAiIHJlcXVpcmVkIC8+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8cCBjbGFzcz0iaGVscCI+UmVxdWlyZWQuIDE1MCBjaGFyYWN0ZXJzIG9yIGZld2VyLiBMZXR0ZXJzLCBkaWdpdHMgYW5kIEAvLi8rLy0vXyBvbmx5LjwvcD4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDwvZGl2PgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImZvcm0tcm93IGZpZWxkLXBhc3N3b3JkIj4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGRpdj4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPGxhYmVsIGZvcj0iaWRfcGFzc3dvcmQiPlBhc3N3b3JkOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgPGRpdiBpZD0iaWRfcGFzc3dvcmQiPjxzdHJvbmc+YWxnb3JpdGhtPC9zdHJvbmc+OiBwYmtkZjJfc2hhMjU2IDxzdHJvbmc+aXRlcmF0aW9uczwvc3Ryb25nPjogMzAwMDAgPHN0cm9uZz5zYWx0PC9zdHJvbmc+OiB0SU56M2gqKioqKiogPHN0cm9uZz5oYXNoPC9zdHJvbmc+OiBrV2ZoWk4qKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKiA8L2Rpdj4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxwIGNsYXNzPSJoZWxwIj5SYXcgcGFzc3dvcmRzIGFyZSBub3Qgc3RvcmVkLCBzbyB0aGVyZSBpcyBubyB3YXkgdG8gc2VlIHRoaXMgdXNlcidzIHBhc3N3b3JkLCBidXQgeW91IGNhbiBjaGFuZ2UgdGhlIHBhc3N3b3JkIHVzaW5nIDxhIGhyZWY9Ii4uL3Bhc3N3b3JkLyI+dGhpcyBmb3JtPC9hPi48L3A+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKPC9maWVsZHNldD4KCgogIDxmaWVsZHNldCBjbGFzcz0ibW9kdWxlIGFsaWduZWQgIj4KICAgIDxoMj5QZXJzb25hbCBpbmZvPC9oMj4KICAgIAogICAgCiAgICAgICAgPGRpdiBjbGFzcz0iZm9ybS1yb3cgZmllbGQtZmlyc3RfbmFtZSI+CiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXY+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxsYWJlbCBmb3I9ImlkX2ZpcnN0X25hbWUiPkZpcnN0IG5hbWU6PC9sYWJlbD4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8aW5wdXQgY2xhc3M9InZUZXh0RmllbGQiIGlkPSJpZF9maXJzdF9uYW1lIiBtYXhsZW5ndGg9IjMwIiBuYW1lPSJmaXJzdF9uYW1lIiB0eXBlPSJ0ZXh0IiAvPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDwvZGl2PgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImZvcm0tcm93IGZpZWxkLWxhc3RfbmFtZSI+CiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXY+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxsYWJlbCBmb3I9ImlkX2xhc3RfbmFtZSI+TGFzdCBuYW1lOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgPGlucHV0IGNsYXNzPSJ2VGV4dEZpZWxkIiBpZD0iaWRfbGFzdF9uYW1lIiBtYXhsZW5ndGg9IjMwIiBuYW1lPSJsYXN0X25hbWUiIHR5cGU9InRleHQiIC8+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPC9kaXY+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgCiAgICAgICAgPGRpdiBjbGFzcz0iZm9ybS1yb3cgZmllbGQtZW1haWwiPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgZm9yPSJpZF9lbWFpbCI+RW1haWwgYWRkcmVzczo8L2xhYmVsPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxpbnB1dCBjbGFzcz0idlRleHRGaWVsZCIgaWQ9ImlkX2VtYWlsIiBtYXhsZW5ndGg9IjI1NCIgbmFtZT0iZW1haWwiIHR5cGU9ImVtYWlsIiAvPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDwvZGl2PgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgIAo8L2ZpZWxkc2V0PgoKCiAgPGZpZWxkc2V0IGNsYXNzPSJtb2R1bGUgYWxpZ25lZCAiPgogICAgPGgyPlBlcm1pc3Npb25zPC9oMj4KICAgIAogICAgCiAgICAgICAgPGRpdiBjbGFzcz0iZm9ybS1yb3cgZmllbGQtaXNfYWN0aXZlIj4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGRpdiBjbGFzcz0iY2hlY2tib3gtcm93Ij4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPGlucHV0IGNoZWNrZWQ9ImNoZWNrZWQiIGlkPSJpZF9pc19hY3RpdmUiIG5hbWU9ImlzX2FjdGl2ZSIgdHlwZT0iY2hlY2tib3giIC8+PGxhYmVsIGNsYXNzPSJ2Q2hlY2tib3hMYWJlbCIgZm9yPSJpZF9pc19hY3RpdmUiPkFjdGl2ZTwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxwIGNsYXNzPSJoZWxwIj5EZXNpZ25hdGVzIHdoZXRoZXIgdGhpcyB1c2VyIHNob3VsZCBiZSB0cmVhdGVkIGFzIGFjdGl2ZS4gVW5zZWxlY3QgdGhpcyBpbnN0ZWFkIG9mIGRlbGV0aW5nIGFjY291bnRzLjwvcD4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDwvZGl2PgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImZvcm0tcm93IGZpZWxkLWlzX3N0YWZmIj4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGRpdiBjbGFzcz0iY2hlY2tib3gtcm93Ij4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPGlucHV0IGlkPSJpZF9pc19zdGFmZiIgbmFtZT0iaXNfc3RhZmYiIHR5cGU9ImNoZWNrYm94IiAvPjxsYWJlbCBjbGFzcz0idkNoZWNrYm94TGFiZWwiIGZvcj0iaWRfaXNfc3RhZmYiPlN0YWZmIHN0YXR1czwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxwIGNsYXNzPSJoZWxwIj5EZXNpZ25hdGVzIHdoZXRoZXIgdGhlIHVzZXIgY2FuIGxvZyBpbnRvIHRoaXMgYWRtaW4gc2l0ZS48L3A+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC1pc19zdXBlcnVzZXIiPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPSJjaGVja2JveC1yb3ciPgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8aW5wdXQgaWQ9ImlkX2lzX3N1cGVydXNlciIgbmFtZT0iaXNfc3VwZXJ1c2VyIiB0eXBlPSJjaGVja2JveCIgLz48bGFiZWwgY2xhc3M9InZDaGVja2JveExhYmVsIiBmb3I9ImlkX2lzX3N1cGVydXNlciI+U3VwZXJ1c2VyIHN0YXR1czwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxwIGNsYXNzPSJoZWxwIj5EZXNpZ25hdGVzIHRoYXQgdGhpcyB1c2VyIGhhcyBhbGwgcGVybWlzc2lvbnMgd2l0aG91dCBleHBsaWNpdGx5IGFzc2lnbmluZyB0aGVtLjwvcD4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDwvZGl2PgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImZvcm0tcm93IGZpZWxkLWdyb3VwcyI+CiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXY+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxsYWJlbCBmb3I9ImlkX2dyb3VwcyI+R3JvdXBzOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgCjxkaXYgY2xhc3M9InJlbGF0ZWQtd2lkZ2V0LXdyYXBwZXIiPgogICAgPHNlbGVjdCBtdWx0aXBsZT0ibXVsdGlwbGUiIGNsYXNzPSJzZWxlY3RmaWx0ZXIiIGRhdGEtZmllbGQtbmFtZT0iZ3JvdXBzIiBkYXRhLWlzLXN0YWNrZWQ9IjAiIGlkPSJpZF9ncm91cHMiIG5hbWU9Imdyb3VwcyI+Cjwvc2VsZWN0PgogICAgCiAgICAgICAgCiAgICAgICAgCiAgICAgICAgPGEgY2xhc3M9InJlbGF0ZWQtd2lkZ2V0LXdyYXBwZXItbGluayBhZGQtcmVsYXRlZCIgaWQ9ImFkZF9pZF9ncm91cHMiCiAgICAgICAgICAgIGhyZWY9Ii9hZG1pbi9hdXRoL2dyb3VwL2FkZC8/X3RvX2ZpZWxkPWlkJmFtcDtfcG9wdXA9MSIKICAgICAgICAgICAgdGl0bGU9IkFkZCBhbm90aGVyIGdyb3VwIj4KICAgICAgICAgICAgPGltZyBzcmM9Ii9hc3NldHMvYWRtaW4vaW1nL2ljb24tYWRkbGluay5zdmciIGFsdD0iQWRkIi8+CiAgICAgICAgPC9hPgogICAgICAgIAogICAgICAgIAogICAgCjwvZGl2PgoKICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxwIGNsYXNzPSJoZWxwIj5UaGUgZ3JvdXBzIHRoaXMgdXNlciBiZWxvbmdzIHRvLiBBIHVzZXIgd2lsbCBnZXQgYWxsIHBlcm1pc3Npb25zIGdyYW50ZWQgdG8gZWFjaCBvZiB0aGVpciBncm91cHMuIEhvbGQgZG93biAiQ29udHJvbCIsIG9yICJDb21tYW5kIiBvbiBhIE1hYywgdG8gc2VsZWN0IG1vcmUgdGhhbiBvbmUuPC9wPgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPC9kaXY+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgCiAgICAgICAgPGRpdiBjbGFzcz0iZm9ybS1yb3cgZmllbGQtdXNlcl9wZXJtaXNzaW9ucyI+CiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXY+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxsYWJlbCBmb3I9ImlkX3VzZXJfcGVybWlzc2lvbnMiPlVzZXIgcGVybWlzc2lvbnM6PC9sYWJlbD4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAKPGRpdiBjbGFzcz0icmVsYXRlZC13aWRnZXQtd3JhcHBlciI+CiAgICA8c2VsZWN0IG11bHRpcGxlPSJtdWx0aXBsZSIgY2xhc3M9InNlbGVjdGZpbHRlciIgZGF0YS1maWVsZC1uYW1lPSJ1c2VyIHBlcm1pc3Npb25zIiBkYXRhLWlzLXN0YWNrZWQ9IjAiIGlkPSJpZF91c2VyX3Blcm1pc3Npb25zIiBuYW1lPSJ1c2VyX3Blcm1pc3Npb25zIj4KPG9wdGlvbiB2YWx1ZT0iMSI+YWRtaW4gfCBsb2cgZW50cnkgfCBDYW4gYWRkIGxvZyBlbnRyeTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIyIj5hZG1pbiB8IGxvZyBlbnRyeSB8IENhbiBjaGFuZ2UgbG9nIGVudHJ5PC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjMiPmFkbWluIHwgbG9nIGVudHJ5IHwgQ2FuIGRlbGV0ZSBsb2cgZW50cnk8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMTAiPmF1dGggfCBncm91cCB8IENhbiBhZGQgZ3JvdXA8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMTEiPmF1dGggfCBncm91cCB8IENhbiBjaGFuZ2UgZ3JvdXA8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMTIiPmF1dGggfCBncm91cCB8IENhbiBkZWxldGUgZ3JvdXA8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iNCI+YXV0aCB8IHBlcm1pc3Npb24gfCBDYW4gYWRkIHBlcm1pc3Npb248L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iNSI+YXV0aCB8IHBlcm1pc3Npb24gfCBDYW4gY2hhbmdlIHBlcm1pc3Npb248L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iNiI+YXV0aCB8IHBlcm1pc3Npb24gfCBDYW4gZGVsZXRlIHBlcm1pc3Npb248L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iNyI+YXV0aCB8IHVzZXIgfCBDYW4gYWRkIHVzZXI8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iOCI+YXV0aCB8IHVzZXIgfCBDYW4gY2hhbmdlIHVzZXI8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iOSI+YXV0aCB8IHVzZXIgfCBDYW4gZGVsZXRlIHVzZXI8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMTMiPmNvbnRlbnR0eXBlcyB8IGNvbnRlbnQgdHlwZSB8IENhbiBhZGQgY29udGVudCB0eXBlPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjE0Ij5jb250ZW50dHlwZXMgfCBjb250ZW50IHR5cGUgfCBDYW4gY2hhbmdlIGNvbnRlbnQgdHlwZTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIxNSI+Y29udGVudHR5cGVzIHwgY29udGVudCB0eXBlIHwgQ2FuIGRlbGV0ZSBjb250ZW50IHR5cGU8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMjUiPmNvcmUgfCBhcHBsaWNhdGlvbiB8IENhbiBhZGQgYXBwbGljYXRpb248L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMjYiPmNvcmUgfCBhcHBsaWNhdGlvbiB8IENhbiBjaGFuZ2UgYXBwbGljYXRpb248L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMjciPmNvcmUgfCBhcHBsaWNhdGlvbiB8IENhbiBkZWxldGUgYXBwbGljYXRpb248L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMTkiPmNvcmUgfCBjb21wYW55IHwgQ2FuIGFkZCBjb21wYW55PC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjIwIj5jb3JlIHwgY29tcGFueSB8IENhbiBjaGFuZ2UgY29tcGFueTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIyMSI+Y29yZSB8IGNvbXBhbnkgfCBDYW4gZGVsZXRlIGNvbXBhbnk8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMjIiPmNvcmUgfCBzdHVkZW50IHwgQ2FuIGFkZCBzdHVkZW50PC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjIzIj5jb3JlIHwgc3R1ZGVudCB8IENhbiBjaGFuZ2Ugc3R1ZGVudDwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIyNCI+Y29yZSB8IHN0dWRlbnQgfCBDYW4gZGVsZXRlIHN0dWRlbnQ8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMjgiPmNvcmUgfCBzdXBlcnZpc29yIHwgQ2FuIGFkZCBzdXBlcnZpc29yPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjI5Ij5jb3JlIHwgc3VwZXJ2aXNvciB8IENhbiBjaGFuZ2Ugc3VwZXJ2aXNvcjwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIzMCI+Y29yZSB8IHN1cGVydmlzb3IgfCBDYW4gZGVsZXRlIHN1cGVydmlzb3I8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMzEiPmNvcmUgfCB2YWNhbmN5IHwgQ2FuIGFkZCB2YWNhbmN5PC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjMyIj5jb3JlIHwgdmFjYW5jeSB8IENhbiBjaGFuZ2UgdmFjYW5jeTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIzMyI+Y29yZSB8IHZhY2FuY3kgfCBDYW4gZGVsZXRlIHZhY2FuY3k8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMTYiPnNlc3Npb25zIHwgc2Vzc2lvbiB8IENhbiBhZGQgc2Vzc2lvbjwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIxNyI+c2Vzc2lvbnMgfCBzZXNzaW9uIHwgQ2FuIGNoYW5nZSBzZXNzaW9uPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjE4Ij5zZXNzaW9ucyB8IHNlc3Npb24gfCBDYW4gZGVsZXRlIHNlc3Npb248L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iNDMiPnNpbGsgfCBwcm9maWxlIHwgQ2FuIGFkZCBwcm9maWxlPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjQ0Ij5zaWxrIHwgcHJvZmlsZSB8IENhbiBjaGFuZ2UgcHJvZmlsZTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSI0NSI+c2lsayB8IHByb2ZpbGUgfCBDYW4gZGVsZXRlIHByb2ZpbGU8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMzQiPnNpbGsgfCByZXF1ZXN0IHwgQ2FuIGFkZCByZXF1ZXN0PC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjM1Ij5zaWxrIHwgcmVxdWVzdCB8IENhbiBjaGFuZ2UgcmVxdWVzdDwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIzNiI+c2lsayB8IHJlcXVlc3QgfCBDYW4gZGVsZXRlIHJlcXVlc3Q8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iNDAiPnNpbGsgfCByZXNwb25zZSB8IENhbiBhZGQgcmVzcG9uc2U8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iNDEiPnNpbGsgfCByZXNwb25zZSB8IENhbiBjaGFuZ2UgcmVzcG9uc2U8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iNDIiPnNpbGsgfCByZXNwb25zZSB8IENhbiBkZWxldGUgcmVzcG9uc2U8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMzciPnNpbGsgfCBzcWwgcXVlcnkgfCBDYW4gYWRkIHNxbCBxdWVyeTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIzOCI+c2lsayB8IHNxbCBxdWVyeSB8IENhbiBjaGFuZ2Ugc3FsIHF1ZXJ5PC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjM5Ij5zaWxrIHwgc3FsIHF1ZXJ5IHwgQ2FuIGRlbGV0ZSBzcWwgcXVlcnk8L29wdGlvbj4KPC9zZWxlY3Q+CiAgICAKICAgICAgICAKICAgICAgICAKICAgICAgICAKICAgIAo8L2Rpdj4KCiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8cCBjbGFzcz0iaGVscCI+U3BlY2lmaWMgcGVybWlzc2lvbnMgZm9yIHRoaXMgdXNlci4gSG9sZCBkb3duICJDb250cm9sIiwgb3IgIkNvbW1hbmQiIG9uIGEgTWFjLCB0byBzZWxlY3QgbW9yZSB0aGFuIG9uZS48L3A+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKPC9maWVsZHNldD4KCgogIDxmaWVsZHNldCBjbGFzcz0ibW9kdWxlIGFsaWduZWQgIj4KICAgIDxoMj5JbXBvcnRhbnQgZGF0ZXM8L2gyPgogICAgCiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC1sYXN0X2xvZ2luIj4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGRpdj4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPGxhYmVsIGZvcj0iaWRfbGFzdF9sb2dpbl8wIj5MYXN0IGxvZ2luOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgPHAgY2xhc3M9ImRhdGV0aW1lIj5EYXRlOiA8aW5wdXQgY2xhc3M9InZEYXRlRmllbGQiIGlkPSJpZF9sYXN0X2xvZ2luXzAiIG5hbWU9Imxhc3RfbG9naW5fMCIgc2l6ZT0iMTAiIHR5cGU9InRleHQiIC8+PGJyIC8+VGltZTogPGlucHV0IGNsYXNzPSJ2VGltZUZpZWxkIiBpZD0iaWRfbGFzdF9sb2dpbl8xIiBuYW1lPSJsYXN0X2xvZ2luXzEiIHNpemU9IjgiIHR5cGU9InRleHQiIC8+PC9wPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDwvZGl2PgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImZvcm0tcm93IGZpZWxkLWRhdGVfam9pbmVkIj4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGRpdj4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPGxhYmVsIGNsYXNzPSJyZXF1aXJlZCIgZm9yPSJpZF9kYXRlX2pvaW5lZF8wIj5EYXRlIGpvaW5lZDo8L2xhYmVsPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxwIGNsYXNzPSJkYXRldGltZSI+RGF0ZTogPGlucHV0IGNsYXNzPSJ2RGF0ZUZpZWxkIiBpZD0iaWRfZGF0ZV9qb2luZWRfMCIgbmFtZT0iZGF0ZV9qb2luZWRfMCIgc2l6ZT0iMTAiIHR5cGU9InRleHQiIHZhbHVlPSIyMDE3LTAzLTI3IiByZXF1aXJlZCAvPjxiciAvPlRpbWU6IDxpbnB1dCBjbGFzcz0idlRpbWVGaWVsZCIgaWQ9ImlkX2RhdGVfam9pbmVkXzEiIG5hbWU9ImRhdGVfam9pbmVkXzEiIHNpemU9IjgiIHR5cGU9InRleHQiIHZhbHVlPSIxNDo1MzozOSIgcmVxdWlyZWQgLz48L3A+PGlucHV0IGlkPSJpbml0aWFsLWlkX2RhdGVfam9pbmVkXzAiIG5hbWU9ImluaXRpYWwtZGF0ZV9qb2luZWRfMCIgdHlwZT0iaGlkZGVuIiB2YWx1ZT0iMjAxNy0wMy0yNyIgLz48aW5wdXQgaWQ9ImluaXRpYWwtaWRfZGF0ZV9qb2luZWRfMSIgbmFtZT0iaW5pdGlhbC1kYXRlX2pvaW5lZF8xIiB0eXBlPSJoaWRkZW4iIHZhbHVlPSIxNDo1MzozOSIgLz4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKPC9maWVsZHNldD4KCgoKCgoKCgoKCgoKCjxkaXYgY2xhc3M9InN1Ym1pdC1yb3ciPgo8aW5wdXQgdHlwZT0ic3VibWl0IiB2YWx1ZT0iU2F2ZSIgY2xhc3M9ImRlZmF1bHQiIG5hbWU9Il9zYXZlIiAvPgoKICAgIAogICAgPHAgY2xhc3M9ImRlbGV0ZWxpbmstYm94Ij48YSBocmVmPSIvYWRtaW4vYXV0aC91c2VyLzMvZGVsZXRlLyIgY2xhc3M9ImRlbGV0ZWxpbmsiPkRlbGV0ZTwvYT48L3A+CgoKPGlucHV0IHR5cGU9InN1Ym1pdCIgdmFsdWU9IlNhdmUgYW5kIGFkZCBhbm90aGVyIiBuYW1lPSJfYWRkYW5vdGhlciIgLz4KPGlucHV0IHR5cGU9InN1Ym1pdCIgdmFsdWU9IlNhdmUgYW5kIGNvbnRpbnVlIGVkaXRpbmciIG5hbWU9Il9jb250aW51ZSIgLz4KPC9kaXY+CgoKCiAgICA8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIKICAgICAgICAgICAgaWQ9ImRqYW5nby1hZG1pbi1mb3JtLWFkZC1jb25zdGFudHMiCiAgICAgICAgICAgIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9jaGFuZ2VfZm9ybS5qcyIKICAgICAgICAgICAgPgogICAgPC9zY3JpcHQ+CgoKCgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIKICAgICAgICBpZD0iZGphbmdvLWFkbWluLXByZXBvcHVsYXRlZC1maWVsZHMtY29uc3RhbnRzIgogICAgICAgIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9wcmVwb3B1bGF0ZV9pbml0LmpzIgogICAgICAgIGRhdGEtcHJlcG9wdWxhdGVkLWZpZWxkcz0iW10iPgo8L3NjcmlwdD4KCgo8L2Rpdj4KPC9mb3JtPjwvZGl2PgoKICAgICAgICAKICAgICAgICA8YnIgY2xhc3M9ImNsZWFyIiAvPgogICAgPC9kaXY+CiAgICA8IS0tIEVORCBDb250ZW50IC0tPgoKICAgIDxkaXYgaWQ9ImZvb3RlciI+PC9kaXY+CjwvZGl2Pgo8IS0tIEVORCBDb250YWluZXIgLS0+Cgo8L2JvZHk+CjwvaHRtbD4K", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 17:15:32 GMT\", \"Expires\": \"Mon, 27 Mar 2017 17:15:32 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "1c30331a-739d-4b81-8944-7ec457ecbcb4", - "fields": { - "request": "a6de7863-f116-46cd-b4da-4316130a94de", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPkFkZCB1c2VyIHwgRGphbmdvIHNpdGUgYWRtaW48L3RpdGxlPgo8bGluayByZWw9InN0eWxlc2hlZXQiIHR5cGU9InRleHQvY3NzIiBocmVmPSIvYXNzZXRzL2FkbWluL2Nzcy9iYXNlLmNzcyIgLz4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvZm9ybXMuY3NzIiAvPgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9jb3JlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IvanF1ZXJ5L2pxdWVyeS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvanF1ZXJ5LmluaXQuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2FkbWluL1JlbGF0ZWRPYmplY3RMb29rdXBzLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hY3Rpb25zLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy91cmxpZnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL3ByZXBvcHVsYXRlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IveHJlZ2V4cC94cmVnZXhwLmpzIj48L3NjcmlwdD4KCjxtZXRhIG5hbWU9InJvYm90cyIgY29udGVudD0iTk9ORSxOT0FSQ0hJVkUiIC8+CjwvaGVhZD4KCgo8Ym9keSBjbGFzcz0iIGFwcC1hdXRoIG1vZGVsLXVzZXIgY2hhbmdlLWZvcm0iCiAgZGF0YS1hZG1pbi11dGMtb2Zmc2V0PSIwIj4KCjwhLS0gQ29udGFpbmVyIC0tPgo8ZGl2IGlkPSJjb250YWluZXIiPgoKICAgIAogICAgPCEtLSBIZWFkZXIgLS0+CiAgICA8ZGl2IGlkPSJoZWFkZXIiPgogICAgICAgIDxkaXYgaWQ9ImJyYW5kaW5nIj4KICAgICAgICAKPGgxIGlkPSJzaXRlLW5hbWUiPjxhIGhyZWY9Ii9hZG1pbi8iPkRqYW5nbyBhZG1pbmlzdHJhdGlvbjwvYT48L2gxPgoKICAgICAgICA8L2Rpdj4KICAgICAgICAKICAgICAgICAKICAgICAgICA8ZGl2IGlkPSJ1c2VyLXRvb2xzIj4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICBXZWxjb21lLAogICAgICAgICAgICAgICAgPHN0cm9uZz5rYXBlPC9zdHJvbmc+LgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvIj5WaWV3IHNpdGU8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL3Bhc3N3b3JkX2NoYW5nZS8iPkNoYW5nZSBwYXNzd29yZDwvYT4gLwogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vbG9nb3V0LyI+TG9nIG91dDwvYT4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgCiAgICA8L2Rpdj4KICAgIDwhLS0gRU5EIEhlYWRlciAtLT4KICAgIAo8ZGl2IGNsYXNzPSJicmVhZGNydW1icyI+CjxhIGhyZWY9Ii9hZG1pbi8iPkhvbWU8L2E+CiZyc2FxdW87IDxhIGhyZWY9Ii9hZG1pbi9hdXRoLyI+QXV0aGVudGljYXRpb24gYW5kIEF1dGhvcml6YXRpb248L2E+CiZyc2FxdW87IDxhIGhyZWY9Ii9hZG1pbi9hdXRoL3VzZXIvIj5Vc2VyczwvYT4KJnJzYXF1bzsgQWRkIHVzZXIKPC9kaXY+CgogICAgCgogICAgCiAgICAgICAgCiAgICAKCiAgICA8IS0tIENvbnRlbnQgLS0+CiAgICA8ZGl2IGlkPSJjb250ZW50IiBjbGFzcz0iY29sTSI+CiAgICAgICAgCiAgICAgICAgPGgxPkFkZCB1c2VyPC9oMT4KICAgICAgICA8ZGl2IGlkPSJjb250ZW50LW1haW4iPgoKCgo8Zm9ybSBlbmN0eXBlPSJtdWx0aXBhcnQvZm9ybS1kYXRhIiBhY3Rpb249IiIgbWV0aG9kPSJwb3N0IiBpZD0idXNlcl9mb3JtIiBub3ZhbGlkYXRlPjxpbnB1dCB0eXBlPSdoaWRkZW4nIG5hbWU9J2NzcmZtaWRkbGV3YXJldG9rZW4nIHZhbHVlPSdlWmtadVptQ3hFenZVek1vMzFzbGFFTEg1OHI4dENSTkQ1ck9HdmV4a0JLVWhIT1FNc1hOMmxzcjMzeFhOQ05DJyAvPgogIAogICAgPHA+Rmlyc3QsIGVudGVyIGEgdXNlcm5hbWUgYW5kIHBhc3N3b3JkLiBUaGVuLCB5b3UnbGwgYmUgYWJsZSB0byBlZGl0IG1vcmUgdXNlciBvcHRpb25zLjwvcD4KICAKCjxkaXY+CgoKCgogICAgPHAgY2xhc3M9ImVycm9ybm90ZSI+CiAgICBQbGVhc2UgY29ycmVjdCB0aGUgZXJyb3IgYmVsb3cuCiAgICA8L3A+CiAgICAKCgoKCiAgPGZpZWxkc2V0IGNsYXNzPSJtb2R1bGUgYWxpZ25lZCB3aWRlIj4KICAgIAogICAgCiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC11c2VybmFtZSI+CiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXY+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxsYWJlbCBjbGFzcz0icmVxdWlyZWQiIGZvcj0iaWRfdXNlcm5hbWUiPlVzZXJuYW1lOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgPGlucHV0IGF1dG9mb2N1cz0iIiBjbGFzcz0idlRleHRGaWVsZCIgaWQ9ImlkX3VzZXJuYW1lIiBtYXhsZW5ndGg9IjE1MCIgbmFtZT0idXNlcm5hbWUiIHR5cGU9InRleHQiIHZhbHVlPSJmYXJoYW5zdXBlciIgcmVxdWlyZWQgLz4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxwIGNsYXNzPSJoZWxwIj5SZXF1aXJlZC4gMTUwIGNoYXJhY3RlcnMgb3IgZmV3ZXIuIExldHRlcnMsIGRpZ2l0cyBhbmQgQC8uLysvLS9fIG9ubHkuPC9wPgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPC9kaXY+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgCiAgICAgICAgPGRpdiBjbGFzcz0iZm9ybS1yb3cgZmllbGQtcGFzc3dvcmQxIj4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGRpdj4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPGxhYmVsIGNsYXNzPSJyZXF1aXJlZCIgZm9yPSJpZF9wYXNzd29yZDEiPlBhc3N3b3JkOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgPGlucHV0IGlkPSJpZF9wYXNzd29yZDEiIG5hbWU9InBhc3N3b3JkMSIgdHlwZT0icGFzc3dvcmQiIHJlcXVpcmVkIC8+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPC9kaXY+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgCiAgICAgICAgPGRpdiBjbGFzcz0iZm9ybS1yb3cgZXJyb3JzIGZpZWxkLXBhc3N3b3JkMiI+CiAgICAgICAgICAgIDx1bCBjbGFzcz0iZXJyb3JsaXN0Ij48bGk+VGhlIHR3byBwYXNzd29yZCBmaWVsZHMgZGlkbiYjMzk7dCBtYXRjaC48L2xpPjwvdWw+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGRpdj4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPGxhYmVsIGNsYXNzPSJyZXF1aXJlZCIgZm9yPSJpZF9wYXNzd29yZDIiPlBhc3N3b3JkIGNvbmZpcm1hdGlvbjo8L2xhYmVsPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxpbnB1dCBpZD0iaWRfcGFzc3dvcmQyIiBuYW1lPSJwYXNzd29yZDIiIHR5cGU9InBhc3N3b3JkIiByZXF1aXJlZCAvPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPHAgY2xhc3M9ImhlbHAiPkVudGVyIHRoZSBzYW1lIHBhc3N3b3JkIGFzIGJlZm9yZSwgZm9yIHZlcmlmaWNhdGlvbi48L3A+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKPC9maWVsZHNldD4KCgoKCgoKCgoKCgoKCjxkaXYgY2xhc3M9InN1Ym1pdC1yb3ciPgo8aW5wdXQgdHlwZT0ic3VibWl0IiB2YWx1ZT0iU2F2ZSIgY2xhc3M9ImRlZmF1bHQiIG5hbWU9Il9zYXZlIiAvPgoKCjxpbnB1dCB0eXBlPSJzdWJtaXQiIHZhbHVlPSJTYXZlIGFuZCBhZGQgYW5vdGhlciIgbmFtZT0iX2FkZGFub3RoZXIiIC8+CjxpbnB1dCB0eXBlPSJzdWJtaXQiIHZhbHVlPSJTYXZlIGFuZCBjb250aW51ZSBlZGl0aW5nIiBuYW1lPSJfY29udGludWUiIC8+CjwvZGl2PgoKCgogICAgPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiCiAgICAgICAgICAgIGlkPSJkamFuZ28tYWRtaW4tZm9ybS1hZGQtY29uc3RhbnRzIgogICAgICAgICAgICBzcmM9Ii9hc3NldHMvYWRtaW4vanMvY2hhbmdlX2Zvcm0uanMiCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgZGF0YS1tb2RlbC1uYW1lPSJ1c2VyIgogICAgICAgICAgICA+CiAgICA8L3NjcmlwdD4KCgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IgogICAgICAgIGlkPSJkamFuZ28tYWRtaW4tcHJlcG9wdWxhdGVkLWZpZWxkcy1jb25zdGFudHMiCiAgICAgICAgc3JjPSIvYXNzZXRzL2FkbWluL2pzL3ByZXBvcHVsYXRlX2luaXQuanMiCiAgICAgICAgZGF0YS1wcmVwb3B1bGF0ZWQtZmllbGRzPSJbXSI+Cjwvc2NyaXB0PgoKCjwvZGl2Pgo8L2Zvcm0+PC9kaXY+CgogICAgICAgIAogICAgICAgIDxiciBjbGFzcz0iY2xlYXIiIC8+CiAgICA8L2Rpdj4KICAgIDwhLS0gRU5EIENvbnRlbnQgLS0+CgogICAgPGRpdiBpZD0iZm9vdGVyIj48L2Rpdj4KPC9kaXY+CjwhLS0gRU5EIENvbnRhaW5lciAtLT4KCjwvYm9keT4KPC9odG1sPgo=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 14:55:00 GMT\", \"Expires\": \"Mon, 27 Mar 2017 14:55:00 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "1c6d4597-625d-4597-9d15-4490d511e207", - "fields": { - "request": "b3bfbf86-5cb6-4b75-8585-ee31decac147", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "1cda54f5-7fb0-49e2-a309-1fbe978b5207", - "fields": { - "request": "1ac76b97-c801-4f6d-92f4-2bf46c7d8028", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "1e4f46f1-2da2-4839-a01f-0f7d24616375", - "fields": { - "request": "67cc51e5-4297-4765-afe5-b2b5f8676eec", - "status_code": 404, - "raw_body": "eyJkZXRhaWwiOiJOb3QgZm91bmQuIn0=", - "body": "{\n \"detail\": \"Not found.\"\n}", - "encoded_headers": "{\"Content-Type\": \"application/json\", \"Allow\": \"POST, OPTIONS\", \"Vary\": \"Accept\"}" - } -}, -{ - "model": "silk.response", - "pk": "20d263fd-7124-4110-8422-a4f9a1524c5b", - "fields": { - "request": "80d3ca5d-b7ae-4380-882f-2f7eea60b27c", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "213912a4-5cec-41c5-90c8-ba6cffce3cbe", - "fields": { - "request": "9e637c23-852f-4051-a7a2-fdb2315a1db7", - "status_code": 404, - "raw_body": "eyJkZXRhaWwiOiJOb3QgZm91bmQuIn0=", - "body": "{\n \"detail\": \"Not found.\"\n}", - "encoded_headers": "{\"Content-Type\": \"application/json\", \"Allow\": \"POST, OPTIONS\", \"Vary\": \"Accept\"}" - } -}, -{ - "model": "silk.response", - "pk": "2226f1dd-475d-4a7f-944e-c9a30e97bfb4", - "fields": { - "request": "29fdb262-174c-4e28-953d-94819f8b09d6", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "22907e34-ea14-432d-9a52-3156bb84e1b7", - "fields": { - "request": "32dad80d-8c1a-4d75-96ae-8cb1811fcd3f", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPlNlbGVjdCBzdHVkZW50IHRvIGNoYW5nZSB8IERqYW5nbyBzaXRlIGFkbWluPC90aXRsZT4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvYmFzZS5jc3MiIC8+CgogIAogIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvYWRtaW4vY3NzL2NoYW5nZWxpc3RzLmNzcyIgLz4KICAKICAKICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KICAKICAKICAKCgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvY29yZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL2pxdWVyeS9qcXVlcnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2pxdWVyeS5pbml0LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hZG1pbi9SZWxhdGVkT2JqZWN0TG9va3Vwcy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvYWN0aW9ucy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdXJsaWZ5LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9wcmVwb3B1bGF0ZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL3hyZWdleHAveHJlZ2V4cC5qcyI+PC9zY3JpcHQ+Cgo8bWV0YSBuYW1lPSJyb2JvdHMiIGNvbnRlbnQ9Ik5PTkUsTk9BUkNISVZFIiAvPgo8L2hlYWQ+CgoKPGJvZHkgY2xhc3M9IiBhcHAtY29yZSBtb2RlbC1zdHVkZW50IGNoYW5nZS1saXN0IgogIGRhdGEtYWRtaW4tdXRjLW9mZnNldD0iMCI+Cgo8IS0tIENvbnRhaW5lciAtLT4KPGRpdiBpZD0iY29udGFpbmVyIj4KCiAgICAKICAgIDwhLS0gSGVhZGVyIC0tPgogICAgPGRpdiBpZD0iaGVhZGVyIj4KICAgICAgICA8ZGl2IGlkPSJicmFuZGluZyI+CiAgICAgICAgCjxoMSBpZD0ic2l0ZS1uYW1lIj48YSBocmVmPSIvYWRtaW4vIj5EamFuZ28gYWRtaW5pc3RyYXRpb248L2E+PC9oMT4KCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgPGRpdiBpZD0idXNlci10b29scyI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgV2VsY29tZSwKICAgICAgICAgICAgICAgIDxzdHJvbmc+a2FwZTwvc3Ryb25nPi4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iLyI+VmlldyBzaXRlPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9wYXNzd29yZF9jaGFuZ2UvIj5DaGFuZ2UgcGFzc3dvcmQ8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2xvZ291dC8iPkxvZyBvdXQ8L2E+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIAogICAgPC9kaXY+CiAgICA8IS0tIEVORCBIZWFkZXIgLS0+CiAgICAKPGRpdiBjbGFzcz0iYnJlYWRjcnVtYnMiPgo8YSBocmVmPSIvYWRtaW4vIj5Ib21lPC9hPgomcnNhcXVvOyA8YSBocmVmPSIvYWRtaW4vY29yZS8iPkNvcmU8L2E+CiZyc2FxdW87IFN0dWRlbnRzCjwvZGl2PgoKICAgIAoKICAgIAogICAgICAgIAogICAgCgogICAgPCEtLSBDb250ZW50IC0tPgogICAgPGRpdiBpZD0iY29udGVudCIgY2xhc3M9ImZsZXgiPgogICAgICAgIAogICAgICAgIDxoMT5TZWxlY3Qgc3R1ZGVudCB0byBjaGFuZ2U8L2gxPgogICAgICAgIAogIDxkaXYgaWQ9ImNvbnRlbnQtbWFpbiI+CiAgICAKICAgICAgICA8dWwgY2xhc3M9Im9iamVjdC10b29scyI+CiAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaT4KICAgICAgICAgICAgICAKICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS9zdHVkZW50L2FkZC8iIGNsYXNzPSJhZGRsaW5rIj4KICAgICAgICAgICAgICAgIEFkZCBzdHVkZW50CiAgICAgICAgICAgICAgPC9hPgogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgIAogICAgICAgIDwvdWw+CiAgICAKICAgIAogICAgPGRpdiBjbGFzcz0ibW9kdWxlIiBpZD0iY2hhbmdlbGlzdCI+CiAgICAgIAoKCiAgICAgIAoKCiAgICAgIAogICAgICAgIAogICAgICAKCiAgICAgIDxmb3JtIGlkPSJjaGFuZ2VsaXN0LWZvcm0iIG1ldGhvZD0icG9zdCIgbm92YWxpZGF0ZT48aW5wdXQgdHlwZT0naGlkZGVuJyBuYW1lPSdjc3JmbWlkZGxld2FyZXRva2VuJyB2YWx1ZT0nVWxadURsc1Fsa05TNWRzWjNnZGx2MzJIZ1J5WW9JRHRqcjZqUFJrTDhoWWhzbHVyTUhJTm5LSnJlTUVOSUl6aScgLz4KICAgICAgCgogICAgICAKICAgICAgICAgIAogICAgICAgICAgCgoKCiAgICAgICAgICAKICAgICAgCiAgICAgIAoKPHAgY2xhc3M9InBhZ2luYXRvciI+CgowIHN0dWRlbnRzCgoKPC9wPgoKICAgICAgPC9mb3JtPgogICAgPC9kaXY+CiAgPC9kaXY+CgogICAgICAgIAogICAgICAgIDxiciBjbGFzcz0iY2xlYXIiIC8+CiAgICA8L2Rpdj4KICAgIDwhLS0gRU5EIENvbnRlbnQgLS0+CgogICAgPGRpdiBpZD0iZm9vdGVyIj48L2Rpdj4KPC9kaXY+CjwhLS0gRU5EIENvbnRhaW5lciAtLT4KCjwvYm9keT4KPC9odG1sPgo=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 14:56:26 GMT\", \"Expires\": \"Mon, 27 Mar 2017 14:56:26 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "23806245-cf87-48bd-a5da-41d5ac6e70c6", - "fields": { - "request": "82b41e4c-903f-4c68-bc6c-1e3aba8f4dd0", - "status_code": 404, - "raw_body": "eyJkZXRhaWwiOiJOb3QgZm91bmQuIn0=", - "body": "{\n \"detail\": \"Not found.\"\n}", - "encoded_headers": "{\"Content-Type\": \"application/json\", \"Allow\": \"POST, OPTIONS\", \"Vary\": \"Accept\"}" - } -}, -{ - "model": "silk.response", - "pk": "2386bfc9-2308-4026-b8a1-16de5ef75bda", - "fields": { - "request": "9e1684d9-8492-4be2-8442-4273b8168f71", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPlNpdGUgYWRtaW5pc3RyYXRpb24gfCBEamFuZ28gc2l0ZSBhZG1pbjwvdGl0bGU+CjxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvYWRtaW4vY3NzL2Jhc2UuY3NzIiAvPgo8bGluayByZWw9InN0eWxlc2hlZXQiIHR5cGU9InRleHQvY3NzIiBocmVmPSIvYXNzZXRzL2FkbWluL2Nzcy9kYXNoYm9hcmQuY3NzIiAvPgoKCjxtZXRhIG5hbWU9InJvYm90cyIgY29udGVudD0iTk9ORSxOT0FSQ0hJVkUiIC8+CjwvaGVhZD4KCgo8Ym9keSBjbGFzcz0iIGRhc2hib2FyZCIKICBkYXRhLWFkbWluLXV0Yy1vZmZzZXQ9IjAiPgoKPCEtLSBDb250YWluZXIgLS0+CjxkaXYgaWQ9ImNvbnRhaW5lciI+CgogICAgCiAgICA8IS0tIEhlYWRlciAtLT4KICAgIDxkaXYgaWQ9ImhlYWRlciI+CiAgICAgICAgPGRpdiBpZD0iYnJhbmRpbmciPgogICAgICAgIAo8aDEgaWQ9InNpdGUtbmFtZSI+PGEgaHJlZj0iL2FkbWluLyI+RGphbmdvIGFkbWluaXN0cmF0aW9uPC9hPjwvaDE+CgogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIDxkaXYgaWQ9InVzZXItdG9vbHMiPgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIFdlbGNvbWUsCiAgICAgICAgICAgICAgICA8c3Ryb25nPmthcGU8L3N0cm9uZz4uCiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii8iPlZpZXcgc2l0ZTwvYT4gLwogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vcGFzc3dvcmRfY2hhbmdlLyI+Q2hhbmdlIHBhc3N3b3JkPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9sb2dvdXQvIj5Mb2cgb3V0PC9hPgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgICAgICAKICAgICAgICAKICAgICAgICAKICAgIDwvZGl2PgogICAgPCEtLSBFTkQgSGVhZGVyIC0tPgogICAgCiAgICAKCiAgICAKICAgICAgICAKICAgIAoKICAgIDwhLS0gQ29udGVudCAtLT4KICAgIDxkaXYgaWQ9ImNvbnRlbnQiIGNsYXNzPSJjb2xNUyI+CiAgICAgICAgCiAgICAgICAgPGgxPlNpdGUgYWRtaW5pc3RyYXRpb248L2gxPgogICAgICAgIAo8ZGl2IGlkPSJjb250ZW50LW1haW4iPgoKCiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJhcHAtYXV0aCBtb2R1bGUiPgogICAgICAgIDx0YWJsZT4KICAgICAgICA8Y2FwdGlvbj4KICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2F1dGgvIiBjbGFzcz0ic2VjdGlvbiIgdGl0bGU9Ik1vZGVscyBpbiB0aGUgQXV0aGVudGljYXRpb24gYW5kIEF1dGhvcml6YXRpb24gYXBwbGljYXRpb24iPkF1dGhlbnRpY2F0aW9uIGFuZCBBdXRob3JpemF0aW9uPC9hPgogICAgICAgIDwvY2FwdGlvbj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1ncm91cCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL2dyb3VwLyI+R3JvdXBzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvZ3JvdXAvYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL2dyb3VwLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC11c2VyIj4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8iPlVzZXJzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgPC90YWJsZT4KICAgICAgICA8L2Rpdj4KICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImFwcC1jb3JlIG1vZHVsZSI+CiAgICAgICAgPHRhYmxlPgogICAgICAgIDxjYXB0aW9uPgogICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS8iIGNsYXNzPSJzZWN0aW9uIiB0aXRsZT0iTW9kZWxzIGluIHRoZSBDb3JlIGFwcGxpY2F0aW9uIj5Db3JlPC9hPgogICAgICAgIDwvY2FwdGlvbj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1hcHBsaWNhdGlvbiI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL2FwcGxpY2F0aW9uLyI+QXBwbGljYXRpb25zPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvYXBwbGljYXRpb24vYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL2FwcGxpY2F0aW9uLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1jb21wYW55Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8iPkNvbXBhbnlzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgICAgIDx0ciBjbGFzcz0ibW9kZWwtc3R1ZGVudCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvIj5TdHVkZW50czwvYT48L3RoPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvIiBjbGFzcz0iY2hhbmdlbGluayI+Q2hhbmdlPC9hPjwvdGQ+CiAgICAgICAgICAgIAogICAgICAgICAgICA8L3RyPgogICAgICAgIAogICAgICAgICAgICA8dHIgY2xhc3M9Im1vZGVsLXN1cGVydmlzb3IiPgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0aCBzY29wZT0icm93Ij48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yLyI+U3VwZXJ2aXNvcnM8L2E+PC90aD4KICAgICAgICAgICAgCgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0ZD48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yL2FkZC8iIGNsYXNzPSJhZGRsaW5rIj5BZGQ8L2E+PC90ZD4KICAgICAgICAgICAgCgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0ZD48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC12YWNhbmN5Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS8iPlZhY2FuY3lzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgPC90YWJsZT4KICAgICAgICA8L2Rpdj4KICAgIAoKPC9kaXY+CgogICAgICAgIAo8ZGl2IGlkPSJjb250ZW50LXJlbGF0ZWQiPgogICAgPGRpdiBjbGFzcz0ibW9kdWxlIiBpZD0icmVjZW50LWFjdGlvbnMtbW9kdWxlIj4KICAgICAgICA8aDI+UmVjZW50IGFjdGlvbnM8L2gyPgogICAgICAgIDxoMz5NeSBhY3Rpb25zPC9oMz4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgPHVsIGNsYXNzPSJhY3Rpb25saXN0Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaSBjbGFzcz0iYWRkbGluayI+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS9hcHBsaWNhdGlvbi8xL2NoYW5nZS8iPkFwcGxpY2F0aW9uIG9iamVjdDwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5BcHBsaWNhdGlvbjwvc3Bhbj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgICAgPGxpIGNsYXNzPSJhZGRsaW5rIj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9jb3JlL3ZhY2FuY3kvMS9jaGFuZ2UvIj5WYWNhbmN5IG9iamVjdDwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5WYWNhbmN5PC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8bGkgY2xhc3M9ImFkZGxpbmsiPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2NvcmUvc3VwZXJ2aXNvci8xL2NoYW5nZS8iPlN1cGVydmlzb3Igb2JqZWN0PC9hPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YnIvPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9Im1pbmkgcXVpZXQiPlN1cGVydmlzb3I8L3NwYW4+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgPC9saT4KICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaSBjbGFzcz0iYWRkbGluayI+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS9zdHVkZW50LzEvY2hhbmdlLyI+U3R1ZGVudCBvYmplY3Q8L2E+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxici8+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz0ibWluaSBxdWlldCI+U3R1ZGVudDwvc3Bhbj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgICAgPGxpIGNsYXNzPSJhZGRsaW5rIj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9jb3JlL2NvbXBhbnkvMi9jaGFuZ2UvIj5Db21wYW55IG9iamVjdDwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5Db21wYW55PC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8bGkgY2xhc3M9ImRlbGV0ZWxpbmsiPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgQ29tcGFueSBvYmplY3QKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5Db21wYW55PC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8bGkgY2xhc3M9ImFkZGxpbmsiPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci80L2NoYW5nZS8iPmZhcmhhbnN1cGVyPC9hPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YnIvPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9Im1pbmkgcXVpZXQiPlVzZXI8L3NwYW4+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgPC9saT4KICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaSBjbGFzcz0iYWRkbGluayI+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vYXV0aC91c2VyLzMvY2hhbmdlLyI+ZmFyaGFuY29ycDwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5Vc2VyPC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8bGkgY2xhc3M9ImFkZGxpbmsiPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8yL2NoYW5nZS8iPmZhcmhhbjwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5Vc2VyPC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8bGkgY2xhc3M9ImFkZGxpbmsiPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8xL2NoYW5nZS8iPkNvbXBhbnkgb2JqZWN0PC9hPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YnIvPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9Im1pbmkgcXVpZXQiPkNvbXBhbnk8L3NwYW4+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgPC9saT4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdWw+CiAgICAgICAgICAgIAogICAgPC9kaXY+CjwvZGl2PgoKICAgICAgICA8YnIgY2xhc3M9ImNsZWFyIiAvPgogICAgPC9kaXY+CiAgICA8IS0tIEVORCBDb250ZW50IC0tPgoKICAgIDxkaXYgaWQ9ImZvb3RlciI+PC9kaXY+CjwvZGl2Pgo8IS0tIEVORCBDb250YWluZXIgLS0+Cgo8L2JvZHk+CjwvaHRtbD4K", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 17:17:42 GMT\", \"Expires\": \"Mon, 27 Mar 2017 17:17:42 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\"}" - } -}, -{ - "model": "silk.response", - "pk": "24b30e6a-d72a-4cb3-8ef9-65c49779d78c", - "fields": { - "request": "0120934f-1641-482e-847c-cd687ddd8da6", - "status_code": 500, - "raw_body": "QXR0cmlidXRlRXJyb3IgYXQgL2FwaS9zdHVkZW50cy80L2Jvb2ttYXJrZWQtdmFjYW5jaWVzLwonbGlzdCcgb2JqZWN0IGhhcyBubyBhdHRyaWJ1dGUgJ2lkJwoKUmVxdWVzdCBNZXRob2Q6IFBPU1QKUmVxdWVzdCBVUkw6IGh0dHA6Ly8xMjcuMC4wLjE6ODAwMC9hcGkvc3R1ZGVudHMvNC9ib29rbWFya2VkLXZhY2FuY2llcy8KRGphbmdvIFZlcnNpb246IDEuMTAuNQpQeXRob24gRXhlY3V0YWJsZTogQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXHB5dGhvbi5leGUKUHl0aG9uIFZlcnNpb246IDMuNi4wClB5dGhvbiBQYXRoOiBbJ0Q6XFxQUExBJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXHB5dGhvbjM2LnppcCcsICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyXFxETExzJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXGxpYicsICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXGxpYlxcc2l0ZS1wYWNrYWdlcyddClNlcnZlciB0aW1lOiBNb24sIDI3IE1hciAyMDE3IDE1OjU3OjI0ICswMDAwCkluc3RhbGxlZCBBcHBsaWNhdGlvbnM6ClsnZGphbmdvLmNvbnRyaWIuYWRtaW4nLAogJ2RqYW5nby5jb250cmliLmF1dGgnLAogJ2RqYW5nby5jb250cmliLmNvbnRlbnR0eXBlcycsCiAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMnLAogJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzJywKICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcycsCiAnd2VicGFja19sb2FkZXInLAogJ2NvcmUnLAogJ3Jlc3RfZnJhbWV3b3JrJywKICdkamFuZ29fbm9zZScsCiAncmVzdF9mcmFtZXdvcmtfc3dhZ2dlcicsCiAnc2lsayddCkluc3RhbGxlZCBNaWRkbGV3YXJlOgpbJ2RqYW5nby5taWRkbGV3YXJlLnNlY3VyaXR5LlNlY3VyaXR5TWlkZGxld2FyZScsCiAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMubWlkZGxld2FyZS5TZXNzaW9uTWlkZGxld2FyZScsCiAnZGphbmdvLm1pZGRsZXdhcmUuY29tbW9uLkNvbW1vbk1pZGRsZXdhcmUnLAogJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5hdXRoLm1pZGRsZXdhcmUuQXV0aGVudGljYXRpb25NaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5tZXNzYWdlcy5taWRkbGV3YXJlLk1lc3NhZ2VNaWRkbGV3YXJlJywKICdkamFuZ28ubWlkZGxld2FyZS5jbGlja2phY2tpbmcuWEZyYW1lT3B0aW9uc01pZGRsZXdhcmUnLAogJ3NpbGsubWlkZGxld2FyZS5TaWxreU1pZGRsZXdhcmUnXQoKClRyYWNlYmFjazogIAoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXGRqYW5nb1xjb3JlXGhhbmRsZXJzXGV4Y2VwdGlvbi5weSIgaW4gaW5uZXIKICAzOS4gICAgICAgICAgICAgcmVzcG9uc2UgPSBnZXRfcmVzcG9uc2UocmVxdWVzdCkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cY29yZVxoYW5kbGVyc1xiYXNlLnB5IiBpbiBfZ2V0X3Jlc3BvbnNlCiAgMTg3LiAgICAgICAgICAgICAgICAgcmVzcG9uc2UgPSBzZWxmLnByb2Nlc3NfZXhjZXB0aW9uX2J5X21pZGRsZXdhcmUoZSwgcmVxdWVzdCkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cY29yZVxoYW5kbGVyc1xiYXNlLnB5IiBpbiBfZ2V0X3Jlc3BvbnNlCiAgMTg1LiAgICAgICAgICAgICAgICAgcmVzcG9uc2UgPSB3cmFwcGVkX2NhbGxiYWNrKHJlcXVlc3QsICpjYWxsYmFja19hcmdzLCAqKmNhbGxiYWNrX2t3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cdmlld3NcZGVjb3JhdG9yc1xjc3JmLnB5IiBpbiB3cmFwcGVkX3ZpZXcKICA1OC4gICAgICAgICByZXR1cm4gdmlld19mdW5jKCphcmdzLCAqKmt3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3c2V0cy5weSIgaW4gdmlldwogIDgzLiAgICAgICAgICAgICByZXR1cm4gc2VsZi5kaXNwYXRjaChyZXF1ZXN0LCAqYXJncywgKiprd2FyZ3MpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNccmVzdF9mcmFtZXdvcmtcdmlld3MucHkiIGluIGRpc3BhdGNoCiAgNDgzLiAgICAgICAgICAgICByZXNwb25zZSA9IHNlbGYuaGFuZGxlX2V4Y2VwdGlvbihleGMpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNccmVzdF9mcmFtZXdvcmtcdmlld3MucHkiIGluIGhhbmRsZV9leGNlcHRpb24KICA0NDMuICAgICAgICAgICAgIHNlbGYucmFpc2VfdW5jYXVnaHRfZXhjZXB0aW9uKGV4YykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3cy5weSIgaW4gZGlzcGF0Y2gKICA0ODAuICAgICAgICAgICAgIHJlc3BvbnNlID0gaGFuZGxlcihyZXF1ZXN0LCAqYXJncywgKiprd2FyZ3MpCgpGaWxlICJEOlxQUExBXGNvcmVcdmlld3NcYWNjb3VudHMucHkiIGluIGJvb2ttYXJrX3ZhY2FuY2llcwogIDMwLiAgICAgICAgIHZhY2FuY3kgPSBnZXRfb2JqZWN0X29yXzQwNChWYWNhbmN5Lm9iamVjdHMuYWxsKCksIHBrPXJlcXVlc3QuZGF0YS5pZCkKCkV4Y2VwdGlvbiBUeXBlOiBBdHRyaWJ1dGVFcnJvciBhdCAvYXBpL3N0dWRlbnRzLzQvYm9va21hcmtlZC12YWNhbmNpZXMvCkV4Y2VwdGlvbiBWYWx1ZTogJ2xpc3QnIG9iamVjdCBoYXMgbm8gYXR0cmlidXRlICdpZCcKUmVxdWVzdCBpbmZvcm1hdGlvbjoKVVNFUjoga2FwZQoKR0VUOiBObyBHRVQgZGF0YQoKUE9TVDogTm8gUE9TVCBkYXRhCgpGSUxFUzogTm8gRklMRVMgZGF0YQoKQ09PS0lFUzoKc2Vzc2lvbmlkID0gJ2JsdDg3N2c1ZmptdWN4eTNkZDV1eGNpemF2YjlvcG92Jwpjc3JmdG9rZW4gPSAnMUVFUDJTd0t0MUs5UWJXbkZQU3lXUElpYnRPN01BYVZxS0xFZW9vRmdZVnlkallQb2duME93cDI5b1VXNkE2SycKCk1FVEE6CkFMTFVTRVJTUFJPRklMRSA9ICdDOlxcUHJvZ3JhbURhdGEnCkFQUERBVEEgPSAnQzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmcnCkNPTU1PTlBST0dSQU1GSUxFUyA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcQ29tbW9uIEZpbGVzJwpDT01NT05QUk9HUkFNRklMRVMoWDg2KSA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcQ29tbW9uIEZpbGVzJwpDT01NT05QUk9HUkFNVzY0MzIgPSAnQzpcXFByb2dyYW0gRmlsZXNcXENvbW1vbiBGaWxlcycKQ09NUFVURVJOQU1FID0gJ0ZBUkhBTicKQ09NU1BFQyA9ICdDOlxcV0lORE9XU1xcc3lzdGVtMzJcXGNtZC5leGUnCkNPTlRFTlRfTEVOR1RIID0gJzE0NycKQ09OVEVOVF9UWVBFID0gJ2FwcGxpY2F0aW9uL2pzb24nCkNTUkZfQ09PS0lFID0gJzFFRVAyU3dLdDFLOVFiV25GUFN5V1BJaWJ0TzdNQWFWcUtMRWVvb0ZnWVZ5ZGpZUG9nbjBPd3AyOW9VVzZBNksnCkRKQU5HT19TRVRUSU5HU19NT0RVTEUgPSAna2FwZS5zZXR0aW5ncycKRlBTX0JST1dTRVJfQVBQX1BST0ZJTEVfU1RSSU5HID0gJ0ludGVybmV0IEV4cGxvcmVyJwpGUFNfQlJPV1NFUl9VU0VSX1BST0ZJTEVfU1RSSU5HID0gJ0RlZmF1bHQnCkZQX05PX0hPU1RfQ0hFQ0sgPSAnTk8nCkdBVEVXQVlfSU5URVJGQUNFID0gJ0NHSS8xLjEnCkhPTUVEUklWRSA9ICdDOicKSE9NRVBBVEggPSAnXFxVc2Vyc1xcZmFyaGFfMDAwJwpIVFRQX0FDQ0VQVCA9ICdhcHBsaWNhdGlvbi9qc29uJwpIVFRQX0FDQ0VQVF9FTkNPRElORyA9ICdnemlwLCBkZWZsYXRlLCBicicKSFRUUF9BQ0NFUFRfTEFOR1VBR0UgPSAnaWQtSUQsaWQ7cT0wLjgsZW4tVVM7cT0wLjYsZW47cT0wLjQnCkhUVFBfQ09OTkVDVElPTiA9ICdrZWVwLWFsaXZlJwpIVFRQX0NPT0tJRSA9ICdzZXNzaW9uaWQ9Ymx0ODc3ZzVmam11Y3h5M2RkNXV4Y2l6YXZiOW9wb3Y7IGNzcmZ0b2tlbj0xRUVQMlN3S3QxSzlRYlduRlBTeVdQSWlidE83TUFhVnFLTEVlb29GZ1lWeWRqWVBvZ24wT3dwMjlvVVc2QTZLJwpIVFRQX0hPU1QgPSAnMTI3LjAuMC4xOjgwMDAnCkhUVFBfT1JJR0lOID0gJ2h0dHA6Ly8xMjcuMC4wLjE6ODAwMCcKSFRUUF9SRUZFUkVSID0gJ2h0dHA6Ly8xMjcuMC4wLjE6ODAwMC9hcGknCkhUVFBfVVNFUl9BR0VOVCA9ICdNb3ppbGxhLzUuMCAoV2luZG93cyBOVCAxMC4wOyBXT1c2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzU2LjAuMjkyNC44NyBTYWZhcmkvNTM3LjM2JwpIVFRQX1hfQ1NSRlRPS0VOID0gJ2pxOTFCdUY1ZTVSN1NqTUZSYzJUTmZ2V1U4bERPNnd5SXdnUU4weDAxMjJ3ZnJPN0FEeGxGV2NHUzNyczg2c24nCkxPQ0FMQVBQREFUQSA9ICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWwnCkxPR09OU0VSVkVSID0gJ1xcXFxGQVJIQU4nCk5VTUJFUl9PRl9QUk9DRVNTT1JTID0gJzInCk9ORURSSVZFID0gJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxPbmVEcml2ZScKT1MgPSAnV2luZG93c19OVCcKUEFUSCA9ICdDOlxcUHJvZ3JhbURhdGFcXE9yYWNsZVxcSmF2YVxcamF2YXBhdGg7QzpcXFByb2dyYW0gRmlsZXNcXEhhc2tlbGxcXGJpbjtDOlxcUHJvZ3JhbSBGaWxlc1xcSGFza2VsbCBQbGF0Zm9ybVxcNy4xMC4zXFxsaWJcXGV4dHJhbGlic1xcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxIYXNrZWxsIFBsYXRmb3JtXFw3LjEwLjNcXGJpbjtDOlxcV0lORE9XU1xcc3lzdGVtMzI7QzpcXFdJTkRPV1M7QzpcXFdJTkRPV1NcXFN5c3RlbTMyXFxXYmVtO0M6XFxXSU5ET1dTXFxTeXN0ZW0zMlxcV2luZG93c1Bvd2VyU2hlbGxcXHYxLjBcXDtDOlxcUHJvZ3JhbSBGaWxlc1xcSGFza2VsbCBQbGF0Zm9ybVxcNy4xMC4zXFxtaW5nd1xcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxKYXZhXFxqZGsxLjguMF83N1xcYmluO0M6XFxjeWd3aW42NFxcYmluOyVsb2NhbGFwcGRhdGElXFxNaWNyb3NvZnRcXFdpbmRvd3NBcHBzO0Q6XFxYQU1QUFxccGhwO0M6XFxQcm9ncmFtIEZpbGVzXFxHaXRcXGNtZDtDOlxceGFtcHBcXHBocDtDOlxcUHJvZ3JhbURhdGFcXENvbXBvc2VyU2V0dXBcXGJpbjtDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcbm9kZWpzXFw7QzpcXFByb2dyYW0gRmlsZXNcXFBvc3RncmVTUUxcXDkuNlxcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxNQVRMQUJcXFIyMDE3YVxcYmluO0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXFNjcmlwdHNcXDtDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyXFw7QzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmdcXGNhYmFsXFxiaW47RDpcXFhBTVBQXFxwaHA7QzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmdcXENvbXBvc2VyXFx2ZW5kb3JcXGJpbjtDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXE1pY3Jvc29mdFxcV2luZG93c0FwcHM7QzpcXHB5dGhvbi0zLjYuMCcKUEFUSEVYVCA9ICcuQ09NOy5FWEU7LkJBVDsuQ01EOy5WQlM7LlZCRTsuSlM7LkpTRTsuV1NGOy5XU0g7Lk1TQycKUEFUSF9JTkZPID0gJy9hcGkvc3R1ZGVudHMvNC9ib29rbWFya2VkLXZhY2FuY2llcy8nClBST0NFU1NPUl9BUkNISVRFQ1RVUkUgPSAneDg2JwpQUk9DRVNTT1JfQVJDSElURVc2NDMyID0gJ0FNRDY0JwpQUk9DRVNTT1JfSURFTlRJRklFUiA9ICdJbnRlbDY0IEZhbWlseSA2IE1vZGVsIDU4IFN0ZXBwaW5nIDksIEdlbnVpbmVJbnRlbCcKUFJPQ0VTU09SX0xFVkVMID0gJzYnClBST0NFU1NPUl9SRVZJU0lPTiA9ICczYTA5JwpQUk9HUkFNREFUQSA9ICdDOlxcUHJvZ3JhbURhdGEnClBST0dSQU1GSUxFUyA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KScKUFJPR1JBTUZJTEVTKFg4NikgPSAnQzpcXFByb2dyYW0gRmlsZXMgKHg4NiknClBST0dSQU1XNjQzMiA9ICdDOlxcUHJvZ3JhbSBGaWxlcycKUFJPTVBUID0gJyRQJEcnClBTTU9EVUxFUEFUSCA9ICdDOlxcV0lORE9XU1xcc3lzdGVtMzJcXFdpbmRvd3NQb3dlclNoZWxsXFx2MS4wXFxNb2R1bGVzXFwnClBVQkxJQyA9ICdDOlxcVXNlcnNcXFB1YmxpYycKUVVFUllfU1RSSU5HID0gJycKUkVNT1RFX0FERFIgPSAnMTI3LjAuMC4xJwpSRU1PVEVfSE9TVCA9ICcnClJFUVVFU1RfTUVUSE9EID0gJ1BPU1QnClJVTl9NQUlOID0gJ3RydWUnClNDUklQVF9OQU1FID0gJycKU0VSVkVSX05BTUUgPSAnRmFyaGFuJwpTRVJWRVJfUE9SVCA9ICc4MDAwJwpTRVJWRVJfUFJPVE9DT0wgPSAnSFRUUC8xLjEnClNFUlZFUl9TT0ZUV0FSRSA9ICdXU0dJU2VydmVyLzAuMicKU0VTU0lPTk5BTUUgPSAnQ29uc29sZScKU1lTVEVNRFJJVkUgPSAnQzonClNZU1RFTVJPT1QgPSAnQzpcXFdJTkRPV1MnClRFTVAgPSAnQzpcXFVzZXJzXFxGQVJIQV9+MVxcQXBwRGF0YVxcTG9jYWxcXFRlbXAnClRNUCA9ICdDOlxcVXNlcnNcXEZBUkhBX34xXFxBcHBEYXRhXFxMb2NhbFxcVGVtcCcKVVNFUkRPTUFJTiA9ICdGYXJoYW4nClVTRVJET01BSU5fUk9BTUlOR1BST0ZJTEUgPSAnRmFyaGFuJwpVU0VSTkFNRSA9ICdGYXJoYW4gRmFyYXNkYWsnClVTRVJQUk9GSUxFID0gJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwJwpWQk9YX01TSV9JTlNUQUxMX1BBVEggPSAnQzpcXFByb2dyYW0gRmlsZXNcXE9yYWNsZVxcVmlydHVhbEJveFxcJwpXSU5ESVIgPSAnQzpcXFdJTkRPV1MnCndzZ2kuZXJyb3JzID0gPF9pby5UZXh0SU9XcmFwcGVyIG5hbWU9JzxzdGRlcnI+JyBtb2RlPSd3JyBlbmNvZGluZz0ndXRmLTgnPgp3c2dpLmZpbGVfd3JhcHBlciA9ICcnCndzZ2kuaW5wdXQgPSA8X2lvLkJ1ZmZlcmVkUmVhZGVyIG5hbWU9MjA0MD4Kd3NnaS5tdWx0aXByb2Nlc3MgPSBGYWxzZQp3c2dpLm11bHRpdGhyZWFkID0gVHJ1ZQp3c2dpLnJ1bl9vbmNlID0gRmFsc2UKd3NnaS51cmxfc2NoZW1lID0gJ2h0dHAnCndzZ2kudmVyc2lvbiA9IAoKU2V0dGluZ3M6ClVzaW5nIHNldHRpbmdzIG1vZHVsZSBrYXBlLnNldHRpbmdzCkFCU09MVVRFX1VSTF9PVkVSUklERVMgPSB7fQpBRE1JTlMgPSBbXQpBTExPV0VEX0hPU1RTID0gWydib3QucmVjcnVpdC5pZCcsICcxMDQuMjM2Ljc2LjE2MScsICdsb2NhbGhvc3QnLCAnMTI3LjAuMC4xJ10KQVBQRU5EX1NMQVNIID0gVHJ1ZQpBVVRIRU5USUNBVElPTl9CQUNLRU5EUyA9IFsnZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQnXQpBVVRIX1BBU1NXT1JEX1ZBTElEQVRPUlMgPSAnKioqKioqKioqKioqKioqKioqKionCkFVVEhfVVNFUl9NT0RFTCA9ICdhdXRoLlVzZXInCkJBU0VfRElSID0gJ0Q6XFxQUExBJwpDQUNIRVMgPSB7J2RlZmF1bHQnOiB7J0JBQ0tFTkQnOiAnZGphbmdvLmNvcmUuY2FjaGUuYmFja2VuZHMubG9jbWVtLkxvY01lbUNhY2hlJ319CkNBQ0hFX01JRERMRVdBUkVfQUxJQVMgPSAnZGVmYXVsdCcKQ0FDSEVfTUlERExFV0FSRV9LRVlfUFJFRklYID0gJyoqKioqKioqKioqKioqKioqKioqJwpDQUNIRV9NSURETEVXQVJFX1NFQ09ORFMgPSA2MDAKQ1NSRl9DT09LSUVfQUdFID0gMzE0NDk2MDAKQ1NSRl9DT09LSUVfRE9NQUlOID0gTm9uZQpDU1JGX0NPT0tJRV9IVFRQT05MWSA9IEZhbHNlCkNTUkZfQ09PS0lFX05BTUUgPSAnY3NyZnRva2VuJwpDU1JGX0NPT0tJRV9QQVRIID0gJy8nCkNTUkZfQ09PS0lFX1NFQ1VSRSA9IEZhbHNlCkNTUkZfRkFJTFVSRV9WSUVXID0gJ2RqYW5nby52aWV3cy5jc3JmLmNzcmZfZmFpbHVyZScKQ1NSRl9IRUFERVJfTkFNRSA9ICdIVFRQX1hfQ1NSRlRPS0VOJwpDU1JGX1RSVVNURURfT1JJR0lOUyA9IFtdCkRBVEFCQVNFUyA9IHsnZGVmYXVsdCc6IHsnRU5HSU5FJzogJ2RqYW5nby5kYi5iYWNrZW5kcy5wb3N0Z3Jlc3FsX3BzeWNvcGcyJywgJ05BTUUnOiAna2FwZScsICdVU0VSJzogJ2thcGUnLCAnUEFTU1dPUkQnOiAnKioqKioqKioqKioqKioqKioqKionLCAnSE9TVCc6ICdsb2NhbGhvc3QnLCAnUE9SVCc6ICcnLCAnQVRPTUlDX1JFUVVFU1RTJzogRmFsc2UsICdBVVRPQ09NTUlUJzogVHJ1ZSwgJ0NPTk5fTUFYX0FHRSc6IDAsICdPUFRJT05TJzoge30sICdUSU1FX1pPTkUnOiBOb25lLCAnVEVTVCc6IHsnQ0hBUlNFVCc6IE5vbmUsICdDT0xMQVRJT04nOiBOb25lLCAnTkFNRSc6IE5vbmUsICdNSVJST1InOiBOb25lfX19CkRBVEFCQVNFX1JPVVRFUlMgPSBbXQpEQVRBX1VQTE9BRF9NQVhfTUVNT1JZX1NJWkUgPSAyNjIxNDQwCkRBVEFfVVBMT0FEX01BWF9OVU1CRVJfRklFTERTID0gMTAwMApEQVRFVElNRV9GT1JNQVQgPSAnTiBqLCBZLCBQJwpEQVRFVElNRV9JTlBVVF9GT1JNQVRTID0gWyclWS0lbS0lZCAlSDolTTolUycsICclWS0lbS0lZCAlSDolTTolUy4lZicsICclWS0lbS0lZCAlSDolTScsICclWS0lbS0lZCcsICclbS8lZC8lWSAlSDolTTolUycsICclbS8lZC8lWSAlSDolTTolUy4lZicsICclbS8lZC8lWSAlSDolTScsICclbS8lZC8lWScsICclbS8lZC8leSAlSDolTTolUycsICclbS8lZC8leSAlSDolTTolUy4lZicsICclbS8lZC8leSAlSDolTScsICclbS8lZC8leSddCkRBVEVfRk9STUFUID0gJ04gaiwgWScKREFURV9JTlBVVF9GT1JNQVRTID0gWyclWS0lbS0lZCcsICclbS8lZC8lWScsICclbS8lZC8leScsICclYiAlZCAlWScsICclYiAlZCwgJVknLCAnJWQgJWIgJVknLCAnJWQgJWIsICVZJywgJyVCICVkICVZJywgJyVCICVkLCAlWScsICclZCAlQiAlWScsICclZCAlQiwgJVknXQpERUJVRyA9IFRydWUKREVCVUdfUFJPUEFHQVRFX0VYQ0VQVElPTlMgPSBGYWxzZQpERUNJTUFMX1NFUEFSQVRPUiA9ICcuJwpERUZBVUxUX0NIQVJTRVQgPSAndXRmLTgnCkRFRkFVTFRfQ09OVEVOVF9UWVBFID0gJ3RleHQvaHRtbCcKREVGQVVMVF9FWENFUFRJT05fUkVQT1JURVJfRklMVEVSID0gJ2RqYW5nby52aWV3cy5kZWJ1Zy5TYWZlRXhjZXB0aW9uUmVwb3J0ZXJGaWx0ZXInCkRFRkFVTFRfRklMRV9TVE9SQUdFID0gJ2RqYW5nby5jb3JlLmZpbGVzLnN0b3JhZ2UuRmlsZVN5c3RlbVN0b3JhZ2UnCkRFRkFVTFRfRlJPTV9FTUFJTCA9ICd3ZWJtYXN0ZXJAbG9jYWxob3N0JwpERUZBVUxUX0lOREVYX1RBQkxFU1BBQ0UgPSAnJwpERUZBVUxUX1RBQkxFU1BBQ0UgPSAnJwpESVNBTExPV0VEX1VTRVJfQUdFTlRTID0gW10KRU1BSUxfQkFDS0VORCA9ICdkamFuZ28uY29yZS5tYWlsLmJhY2tlbmRzLnNtdHAuRW1haWxCYWNrZW5kJwpFTUFJTF9IT1NUID0gJ2xvY2FsaG9zdCcKRU1BSUxfSE9TVF9QQVNTV09SRCA9ICcqKioqKioqKioqKioqKioqKioqKicKRU1BSUxfSE9TVF9VU0VSID0gJycKRU1BSUxfUE9SVCA9IDI1CkVNQUlMX1NTTF9DRVJURklMRSA9IE5vbmUKRU1BSUxfU1NMX0tFWUZJTEUgPSAnKioqKioqKioqKioqKioqKioqKionCkVNQUlMX1NVQkpFQ1RfUFJFRklYID0gJ1tEamFuZ29dICcKRU1BSUxfVElNRU9VVCA9IE5vbmUKRU1BSUxfVVNFX1NTTCA9IEZhbHNlCkVNQUlMX1VTRV9UTFMgPSBGYWxzZQpGSUxFX0NIQVJTRVQgPSAndXRmLTgnCkZJTEVfVVBMT0FEX0RJUkVDVE9SWV9QRVJNSVNTSU9OUyA9IE5vbmUKRklMRV9VUExPQURfSEFORExFUlMgPSBbJ2RqYW5nby5jb3JlLmZpbGVzLnVwbG9hZGhhbmRsZXIuTWVtb3J5RmlsZVVwbG9hZEhhbmRsZXInLCAnZGphbmdvLmNvcmUuZmlsZXMudXBsb2FkaGFuZGxlci5UZW1wb3JhcnlGaWxlVXBsb2FkSGFuZGxlciddCkZJTEVfVVBMT0FEX01BWF9NRU1PUllfU0laRSA9IDI2MjE0NDAKRklMRV9VUExPQURfUEVSTUlTU0lPTlMgPSBOb25lCkZJTEVfVVBMT0FEX1RFTVBfRElSID0gTm9uZQpGSVJTVF9EQVlfT0ZfV0VFSyA9IDAKRklYVFVSRV9ESVJTID0gW10KRk9SQ0VfU0NSSVBUX05BTUUgPSBOb25lCkZPUk1BVF9NT0RVTEVfUEFUSCA9IE5vbmUKR1pJUF9DT05URU5UX1RZUEVTID0gCklHTk9SQUJMRV80MDRfVVJMUyA9IFtdCklOU1RBTExFRF9BUFBTID0gWydkamFuZ28uY29udHJpYi5hZG1pbicsICdkamFuZ28uY29udHJpYi5hdXRoJywgJ2RqYW5nby5jb250cmliLmNvbnRlbnR0eXBlcycsICdkamFuZ28uY29udHJpYi5zZXNzaW9ucycsICdkamFuZ28uY29udHJpYi5tZXNzYWdlcycsICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcycsICd3ZWJwYWNrX2xvYWRlcicsICdjb3JlJywgJ3Jlc3RfZnJhbWV3b3JrJywgJ2RqYW5nb19ub3NlJywgJ3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXInLCAnc2lsayddCklOVEVSTkFMX0lQUyA9IFtdCkxBTkdVQUdFUyA9IFsoJ2FmJywgJ0FmcmlrYWFucycpLCAoJ2FyJywgJ0FyYWJpYycpLCAoJ2FzdCcsICdBc3R1cmlhbicpLCAoJ2F6JywgJ0F6ZXJiYWlqYW5pJyksICgnYmcnLCAnQnVsZ2FyaWFuJyksICgnYmUnLCAnQmVsYXJ1c2lhbicpLCAoJ2JuJywgJ0JlbmdhbGknKSwgKCdicicsICdCcmV0b24nKSwgKCdicycsICdCb3NuaWFuJyksICgnY2EnLCAnQ2F0YWxhbicpLCAoJ2NzJywgJ0N6ZWNoJyksICgnY3knLCAnV2Vsc2gnKSwgKCdkYScsICdEYW5pc2gnKSwgKCdkZScsICdHZXJtYW4nKSwgKCdkc2InLCAnTG93ZXIgU29yYmlhbicpLCAoJ2VsJywgJ0dyZWVrJyksICgnZW4nLCAnRW5nbGlzaCcpLCAoJ2VuLWF1JywgJ0F1c3RyYWxpYW4gRW5nbGlzaCcpLCAoJ2VuLWdiJywgJ0JyaXRpc2ggRW5nbGlzaCcpLCAoJ2VvJywgJ0VzcGVyYW50bycpLCAoJ2VzJywgJ1NwYW5pc2gnKSwgKCdlcy1hcicsICdBcmdlbnRpbmlhbiBTcGFuaXNoJyksICgnZXMtY28nLCAnQ29sb21iaWFuIFNwYW5pc2gnKSwgKCdlcy1teCcsICdNZXhpY2FuIFNwYW5pc2gnKSwgKCdlcy1uaScsICdOaWNhcmFndWFuIFNwYW5pc2gnKSwgKCdlcy12ZScsICdWZW5lenVlbGFuIFNwYW5pc2gnKSwgKCdldCcsICdFc3RvbmlhbicpLCAoJ2V1JywgJ0Jhc3F1ZScpLCAoJ2ZhJywgJ1BlcnNpYW4nKSwgKCdmaScsICdGaW5uaXNoJyksICgnZnInLCAnRnJlbmNoJyksICgnZnknLCAnRnJpc2lhbicpLCAoJ2dhJywgJ0lyaXNoJyksICgnZ2QnLCAnU2NvdHRpc2ggR2FlbGljJyksICgnZ2wnLCAnR2FsaWNpYW4nKSwgKCdoZScsICdIZWJyZXcnKSwgKCdoaScsICdIaW5kaScpLCAoJ2hyJywgJ0Nyb2F0aWFuJyksICgnaHNiJywgJ1VwcGVyIFNvcmJpYW4nKSwgKCdodScsICdIdW5nYXJpYW4nKSwgKCdpYScsICdJbnRlcmxpbmd1YScpLCAoJ2lkJywgJ0luZG9uZXNpYW4nKSwgKCdpbycsICdJZG8nKSwgKCdpcycsICdJY2VsYW5kaWMnKSwgKCdpdCcsICdJdGFsaWFuJyksICgnamEnLCAnSmFwYW5lc2UnKSwgKCdrYScsICdHZW9yZ2lhbicpLCAoJ2trJywgJ0themFraCcpLCAoJ2ttJywgJ0tobWVyJyksICgna24nLCAnS2FubmFkYScpLCAoJ2tvJywgJ0tvcmVhbicpLCAoJ2xiJywgJ0x1eGVtYm91cmdpc2gnKSwgKCdsdCcsICdMaXRodWFuaWFuJyksICgnbHYnLCAnTGF0dmlhbicpLCAoJ21rJywgJ01hY2Vkb25pYW4nKSwgKCdtbCcsICdNYWxheWFsYW0nKSwgKCdtbicsICdNb25nb2xpYW4nKSwgKCdtcicsICdNYXJhdGhpJyksICgnbXknLCAnQnVybWVzZScpLCAoJ25iJywgJ05vcndlZ2lhbiBCb2ttw6VsJyksICgnbmUnLCAnTmVwYWxpJyksICgnbmwnLCAnRHV0Y2gnKSwgKCdubicsICdOb3J3ZWdpYW4gTnlub3JzaycpLCAoJ29zJywgJ09zc2V0aWMnKSwgKCdwYScsICdQdW5qYWJpJyksICgncGwnLCAnUG9saXNoJyksICgncHQnLCAnUG9ydHVndWVzZScpLCAoJ3B0LWJyJywgJ0JyYXppbGlhbiBQb3J0dWd1ZXNlJyksICgncm8nLCAnUm9tYW5pYW4nKSwgKCdydScsICdSdXNzaWFuJyksICgnc2snLCAnU2xvdmFrJyksICgnc2wnLCAnU2xvdmVuaWFuJyksICgnc3EnLCAnQWxiYW5pYW4nKSwgKCdzcicsICdTZXJiaWFuJyksICgnc3ItbGF0bicsICdTZXJiaWFuIExhdGluJyksICgnc3YnLCAnU3dlZGlzaCcpLCAoJ3N3JywgJ1N3YWhpbGknKSwgKCd0YScsICdUYW1pbCcpLCAoJ3RlJywgJ1RlbHVndScpLCAoJ3RoJywgJ1RoYWknKSwgKCd0cicsICdUdXJraXNoJyksICgndHQnLCAnVGF0YXInKSwgKCd1ZG0nLCAnVWRtdXJ0JyksICgndWsnLCAnVWtyYWluaWFuJyksICgndXInLCAnVXJkdScpLCAoJ3ZpJywgJ1ZpZXRuYW1lc2UnKSwgKCd6aC1oYW5zJywgJ1NpbXBsaWZpZWQgQ2hpbmVzZScpLCAoJ3poLWhhbnQnLCAnVHJhZGl0aW9uYWwgQ2hpbmVzZScpXQpMQU5HVUFHRVNfQklESSA9IFsnaGUnLCAnYXInLCAnZmEnLCAndXInXQpMQU5HVUFHRV9DT0RFID0gJ2VuLXVzJwpMQU5HVUFHRV9DT09LSUVfQUdFID0gTm9uZQpMQU5HVUFHRV9DT09LSUVfRE9NQUlOID0gTm9uZQpMQU5HVUFHRV9DT09LSUVfTkFNRSA9ICdkamFuZ29fbGFuZ3VhZ2UnCkxBTkdVQUdFX0NPT0tJRV9QQVRIID0gJy8nCkxPQ0FMRV9QQVRIUyA9IFtdCkxPR0dJTkcgPSB7fQpMT0dHSU5HX0NPTkZJRyA9ICdsb2dnaW5nLmNvbmZpZy5kaWN0Q29uZmlnJwpMT0dJTl9SRURJUkVDVF9VUkwgPSAnL2FjY291bnRzL3Byb2ZpbGUvJwpMT0dJTl9VUkwgPSAnL2FjY291bnRzL2xvZ2luLycKTE9HT1VUX1JFRElSRUNUX1VSTCA9IE5vbmUKTUFOQUdFUlMgPSBbXQpNRURJQV9ST09UID0gJy9ob21lL2ZpbGVzJwpNRURJQV9VUkwgPSAnL2ZpbGVzLycKTUVTU0FHRV9TVE9SQUdFID0gJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzLnN0b3JhZ2UuZmFsbGJhY2suRmFsbGJhY2tTdG9yYWdlJwpNSURETEVXQVJFID0gWydkamFuZ28ubWlkZGxld2FyZS5zZWN1cml0eS5TZWN1cml0eU1pZGRsZXdhcmUnLCAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMubWlkZGxld2FyZS5TZXNzaW9uTWlkZGxld2FyZScsICdkamFuZ28ubWlkZGxld2FyZS5jb21tb24uQ29tbW9uTWlkZGxld2FyZScsICdkamFuZ28ubWlkZGxld2FyZS5jc3JmLkNzcmZWaWV3TWlkZGxld2FyZScsICdkamFuZ28uY29udHJpYi5hdXRoLm1pZGRsZXdhcmUuQXV0aGVudGljYXRpb25NaWRkbGV3YXJlJywgJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzLm1pZGRsZXdhcmUuTWVzc2FnZU1pZGRsZXdhcmUnLCAnZGphbmdvLm1pZGRsZXdhcmUuY2xpY2tqYWNraW5nLlhGcmFtZU9wdGlvbnNNaWRkbGV3YXJlJywgJ3NpbGsubWlkZGxld2FyZS5TaWxreU1pZGRsZXdhcmUnXQpNSURETEVXQVJFX0NMQVNTRVMgPSBbJ2RqYW5nby5taWRkbGV3YXJlLmNvbW1vbi5Db21tb25NaWRkbGV3YXJlJywgJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJ10KTUlHUkFUSU9OX01PRFVMRVMgPSB7fQpNT05USF9EQVlfRk9STUFUID0gJ0YgaicKTk9TRV9BUkdTID0gWyctLXdpdGgtY292ZXJhZ2UnLCAnLS1jb3Zlci1wYWNrYWdlPWNvcmUudmlld3MnLCAnLS1jb3Zlci1odG1sLWRpcj10ZXN0L2JhY2tlbmQnLCAnLS1jb3Zlci1odG1sJ10KTlVNQkVSX0dST1VQSU5HID0gMApQQVNTV09SRF9IQVNIRVJTID0gJyoqKioqKioqKioqKioqKioqKioqJwpQQVNTV09SRF9SRVNFVF9USU1FT1VUX0RBWVMgPSAnKioqKioqKioqKioqKioqKioqKionClBSRVBFTkRfV1dXID0gRmFsc2UKUkVTVF9GUkFNRVdPUksgPSB7J0RFRkFVTFRfUEVSTUlTU0lPTl9DTEFTU0VTJzogWydyZXN0X2ZyYW1ld29yay5wZXJtaXNzaW9ucy5EamFuZ29Nb2RlbFBlcm1pc3Npb25zT3JBbm9uUmVhZE9ubHknXX0KUk9PVF9VUkxDT05GID0gJ2thcGUudXJscycKUlVOTklOR19ERVZTRVJWRVIgPSBUcnVlClNFQ1JFVF9LRVkgPSAnKioqKioqKioqKioqKioqKioqKionClNFQ1VSRV9CUk9XU0VSX1hTU19GSUxURVIgPSBGYWxzZQpTRUNVUkVfQ09OVEVOVF9UWVBFX05PU05JRkYgPSBGYWxzZQpTRUNVUkVfSFNUU19JTkNMVURFX1NVQkRPTUFJTlMgPSBGYWxzZQpTRUNVUkVfSFNUU19TRUNPTkRTID0gMApTRUNVUkVfUFJPWFlfU1NMX0hFQURFUiA9IE5vbmUKU0VDVVJFX1JFRElSRUNUX0VYRU1QVCA9IFtdClNFQ1VSRV9TU0xfSE9TVCA9IE5vbmUKU0VDVVJFX1NTTF9SRURJUkVDVCA9IEZhbHNlClNFUlZFUl9FTUFJTCA9ICdyb290QGxvY2FsaG9zdCcKU0VTU0lPTl9DQUNIRV9BTElBUyA9ICdkZWZhdWx0JwpTRVNTSU9OX0NPT0tJRV9BR0UgPSAxMjA5NjAwClNFU1NJT05fQ09PS0lFX0RPTUFJTiA9IE5vbmUKU0VTU0lPTl9DT09LSUVfSFRUUE9OTFkgPSBGYWxzZQpTRVNTSU9OX0NPT0tJRV9OQU1FID0gJ3Nlc3Npb25pZCcKU0VTU0lPTl9DT09LSUVfUEFUSCA9ICcvJwpTRVNTSU9OX0NPT0tJRV9TRUNVUkUgPSBGYWxzZQpTRVNTSU9OX0VOR0lORSA9ICdkamFuZ28uY29udHJpYi5zZXNzaW9ucy5iYWNrZW5kcy5kYicKU0VTU0lPTl9FWFBJUkVfQVRfQlJPV1NFUl9DTE9TRSA9IEZhbHNlClNFU1NJT05fRklMRV9QQVRIID0gTm9uZQpTRVNTSU9OX1NBVkVfRVZFUllfUkVRVUVTVCA9IEZhbHNlClNFU1NJT05fU0VSSUFMSVpFUiA9ICdkamFuZ28uY29udHJpYi5zZXNzaW9ucy5zZXJpYWxpemVycy5KU09OU2VyaWFsaXplcicKU0VUVElOR1NfTU9EVUxFID0gJ2thcGUuc2V0dGluZ3MnClNIT1JUX0RBVEVUSU1FX0ZPUk1BVCA9ICdtL2QvWSBQJwpTSE9SVF9EQVRFX0ZPUk1BVCA9ICdtL2QvWScKU0lHTklOR19CQUNLRU5EID0gJ2RqYW5nby5jb3JlLnNpZ25pbmcuVGltZXN0YW1wU2lnbmVyJwpTSUxFTkNFRF9TWVNURU1fQ0hFQ0tTID0gW10KU1RBVElDRklMRVNfRElSUyA9ICdEOlxcUFBMQVxcYXNzZXRzJwpTVEFUSUNGSUxFU19GSU5ERVJTID0gWydkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcy5maW5kZXJzLkZpbGVTeXN0ZW1GaW5kZXInLCAnZGphbmdvLmNvbnRyaWIuc3RhdGljZmlsZXMuZmluZGVycy5BcHBEaXJlY3Rvcmllc0ZpbmRlciddClNUQVRJQ0ZJTEVTX1NUT1JBR0UgPSAnZGphbmdvLmNvbnRyaWIuc3RhdGljZmlsZXMuc3RvcmFnZS5TdGF0aWNGaWxlc1N0b3JhZ2UnClNUQVRJQ19ST09UID0gJy9ob21lL2Fzc2V0cycKU1RBVElDX1VSTCA9ICcvYXNzZXRzLycKVEVNUExBVEVTID0gW3snQkFDS0VORCc6ICdkamFuZ28udGVtcGxhdGUuYmFja2VuZHMuZGphbmdvLkRqYW5nb1RlbXBsYXRlcycsICdESVJTJzogW10sICdBUFBfRElSUyc6IFRydWUsICdPUFRJT05TJzogeydjb250ZXh0X3Byb2Nlc3NvcnMnOiBbJ2RqYW5nby50ZW1wbGF0ZS5jb250ZXh0X3Byb2Nlc3NvcnMuZGVidWcnLCAnZGphbmdvLnRlbXBsYXRlLmNvbnRleHRfcHJvY2Vzc29ycy5yZXF1ZXN0JywgJ2RqYW5nby5jb250cmliLmF1dGguY29udGV4dF9wcm9jZXNzb3JzLmF1dGgnLCAnZGphbmdvLmNvbnRyaWIubWVzc2FnZXMuY29udGV4dF9wcm9jZXNzb3JzLm1lc3NhZ2VzJ119fV0KVEVTVF9OT05fU0VSSUFMSVpFRF9BUFBTID0gW10KVEVTVF9SVU5ORVIgPSAnZGphbmdvX25vc2UuTm9zZVRlc3RTdWl0ZVJ1bm5lcicKVEhPVVNBTkRfU0VQQVJBVE9SID0gJywnClRJTUVfRk9STUFUID0gJ1AnClRJTUVfSU5QVVRfRk9STUFUUyA9IFsnJUg6JU06JVMnLCAnJUg6JU06JVMuJWYnLCAnJUg6JU0nXQpUSU1FX1pPTkUgPSAnVVRDJwpVU0VfRVRBR1MgPSBGYWxzZQpVU0VfSTE4TiA9IFRydWUKVVNFX0wxME4gPSBUcnVlClVTRV9USE9VU0FORF9TRVBBUkFUT1IgPSBGYWxzZQpVU0VfVFogPSBUcnVlClVTRV9YX0ZPUldBUkRFRF9IT1NUID0gRmFsc2UKVVNFX1hfRk9SV0FSREVEX1BPUlQgPSBGYWxzZQpXRUJQQUNLX0xPQURFUiA9IHsnREVGQVVMVCc6IHsnQlVORExFX0RJUl9OQU1FJzogJ2J1bmRsZXMvJywgJ1NUQVRTX0ZJTEUnOiAnRDpcXFBQTEFcXHdlYnBhY2stc3RhdHMuanNvbid9fQpXU0dJX0FQUExJQ0FUSU9OID0gJ2thcGUud3NnaS5hcHBsaWNhdGlvbicKWF9GUkFNRV9PUFRJT05TID0gJ1NBTUVPUklHSU4nCllFQVJfTU9OVEhfRk9STUFUID0gJ0YgWScKCgpZb3UncmUgc2VlaW5nIHRoaXMgZXJyb3IgYmVjYXVzZSB5b3UgaGF2ZSBERUJVRyA9IFRydWUgaW4geW91cgpEamFuZ28gc2V0dGluZ3MgZmlsZS4gQ2hhbmdlIHRoYXQgdG8gRmFsc2UsIGFuZCBEamFuZ28gd2lsbApkaXNwbGF5IGEgc3RhbmRhcmQgcGFnZSBnZW5lcmF0ZWQgYnkgdGhlIGhhbmRsZXIgZm9yIHRoaXMgc3RhdHVzIGNvZGUuCgo=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/plain\"}" - } -}, -{ - "model": "silk.response", - "pk": "24e725f0-511d-4673-a9e6-1821f2c18480", - "fields": { - "request": "09e13131-05cb-40d6-b5b8-ab9f1909a28b", - "status_code": 302, - "raw_body": "", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Location\": \"/admin/\", \"Last-Modified\": \"Mon, 27 Mar 2017 14:33:12 GMT\", \"Expires\": \"Mon, 27 Mar 2017 14:33:12 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "256c2356-1590-4841-96e1-460cd6d0f6df", - "fields": { - "request": "76e7547e-885d-4b1f-86e6-29a2931dcdf7", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "26994be7-7dd7-49d0-9a59-bfe32e6c47f9", - "fields": { - "request": "1364d28f-496c-4e2b-8063-e5fa0fdde13f", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "26a03939-77b5-44fa-9b04-12ec15094115", - "fields": { - "request": "fe406072-ebcf-4d02-9a33-62aa3efa8c68", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "26edc26d-1fa5-4324-bdcc-b65cfa97656c", - "fields": { - "request": "d732d40b-99e8-445a-9824-2a46376e6734", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "28865e76-5d61-4f22-890e-472895326130", - "fields": { - "request": "ed3b0c74-c2c2-4692-8bfd-d24e50bb123f", - "status_code": 302, - "raw_body": "", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Location\": \"/admin/core/vacancy/\", \"Last-Modified\": \"Mon, 27 Mar 2017 15:23:24 GMT\", \"Expires\": \"Mon, 27 Mar 2017 15:23:24 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\"}" - } -}, -{ - "model": "silk.response", - "pk": "288c0615-7c18-4bc0-99df-275e6de5cfda", - "fields": { - "request": "3c345fde-221f-429e-9532-478f2318b170", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPlNpdGUgYWRtaW5pc3RyYXRpb24gfCBEamFuZ28gc2l0ZSBhZG1pbjwvdGl0bGU+CjxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvYWRtaW4vY3NzL2Jhc2UuY3NzIiAvPgo8bGluayByZWw9InN0eWxlc2hlZXQiIHR5cGU9InRleHQvY3NzIiBocmVmPSIvYXNzZXRzL2FkbWluL2Nzcy9kYXNoYm9hcmQuY3NzIiAvPgoKCjxtZXRhIG5hbWU9InJvYm90cyIgY29udGVudD0iTk9ORSxOT0FSQ0hJVkUiIC8+CjwvaGVhZD4KCgo8Ym9keSBjbGFzcz0iIGRhc2hib2FyZCIKICBkYXRhLWFkbWluLXV0Yy1vZmZzZXQ9IjAiPgoKPCEtLSBDb250YWluZXIgLS0+CjxkaXYgaWQ9ImNvbnRhaW5lciI+CgogICAgCiAgICA8IS0tIEhlYWRlciAtLT4KICAgIDxkaXYgaWQ9ImhlYWRlciI+CiAgICAgICAgPGRpdiBpZD0iYnJhbmRpbmciPgogICAgICAgIAo8aDEgaWQ9InNpdGUtbmFtZSI+PGEgaHJlZj0iL2FkbWluLyI+RGphbmdvIGFkbWluaXN0cmF0aW9uPC9hPjwvaDE+CgogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIDxkaXYgaWQ9InVzZXItdG9vbHMiPgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIFdlbGNvbWUsCiAgICAgICAgICAgICAgICA8c3Ryb25nPmthcGU8L3N0cm9uZz4uCiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii8iPlZpZXcgc2l0ZTwvYT4gLwogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vcGFzc3dvcmRfY2hhbmdlLyI+Q2hhbmdlIHBhc3N3b3JkPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9sb2dvdXQvIj5Mb2cgb3V0PC9hPgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgICAgICAKICAgICAgICAKICAgICAgICAKICAgIDwvZGl2PgogICAgPCEtLSBFTkQgSGVhZGVyIC0tPgogICAgCiAgICAKCiAgICAKICAgICAgICAKICAgIAoKICAgIDwhLS0gQ29udGVudCAtLT4KICAgIDxkaXYgaWQ9ImNvbnRlbnQiIGNsYXNzPSJjb2xNUyI+CiAgICAgICAgCiAgICAgICAgPGgxPlNpdGUgYWRtaW5pc3RyYXRpb248L2gxPgogICAgICAgIAo8ZGl2IGlkPSJjb250ZW50LW1haW4iPgoKCiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJhcHAtYXV0aCBtb2R1bGUiPgogICAgICAgIDx0YWJsZT4KICAgICAgICA8Y2FwdGlvbj4KICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2F1dGgvIiBjbGFzcz0ic2VjdGlvbiIgdGl0bGU9Ik1vZGVscyBpbiB0aGUgQXV0aGVudGljYXRpb24gYW5kIEF1dGhvcml6YXRpb24gYXBwbGljYXRpb24iPkF1dGhlbnRpY2F0aW9uIGFuZCBBdXRob3JpemF0aW9uPC9hPgogICAgICAgIDwvY2FwdGlvbj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1ncm91cCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL2dyb3VwLyI+R3JvdXBzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvZ3JvdXAvYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL2dyb3VwLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC11c2VyIj4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8iPlVzZXJzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgPC90YWJsZT4KICAgICAgICA8L2Rpdj4KICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImFwcC1jb3JlIG1vZHVsZSI+CiAgICAgICAgPHRhYmxlPgogICAgICAgIDxjYXB0aW9uPgogICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS8iIGNsYXNzPSJzZWN0aW9uIiB0aXRsZT0iTW9kZWxzIGluIHRoZSBDb3JlIGFwcGxpY2F0aW9uIj5Db3JlPC9hPgogICAgICAgIDwvY2FwdGlvbj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1hcHBsaWNhdGlvbiI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL2FwcGxpY2F0aW9uLyI+QXBwbGljYXRpb25zPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvYXBwbGljYXRpb24vYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL2FwcGxpY2F0aW9uLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1jb21wYW55Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8iPkNvbXBhbnlzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgICAgIDx0ciBjbGFzcz0ibW9kZWwtc3R1ZGVudCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvIj5TdHVkZW50czwvYT48L3RoPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvIiBjbGFzcz0iY2hhbmdlbGluayI+Q2hhbmdlPC9hPjwvdGQ+CiAgICAgICAgICAgIAogICAgICAgICAgICA8L3RyPgogICAgICAgIAogICAgICAgICAgICA8dHIgY2xhc3M9Im1vZGVsLXN1cGVydmlzb3IiPgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0aCBzY29wZT0icm93Ij48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yLyI+U3VwZXJ2aXNvcnM8L2E+PC90aD4KICAgICAgICAgICAgCgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0ZD48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yL2FkZC8iIGNsYXNzPSJhZGRsaW5rIj5BZGQ8L2E+PC90ZD4KICAgICAgICAgICAgCgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0ZD48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC12YWNhbmN5Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS8iPlZhY2FuY3lzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgPC90YWJsZT4KICAgICAgICA8L2Rpdj4KICAgIAoKPC9kaXY+CgogICAgICAgIAo8ZGl2IGlkPSJjb250ZW50LXJlbGF0ZWQiPgogICAgPGRpdiBjbGFzcz0ibW9kdWxlIiBpZD0icmVjZW50LWFjdGlvbnMtbW9kdWxlIj4KICAgICAgICA8aDI+UmVjZW50IGFjdGlvbnM8L2gyPgogICAgICAgIDxoMz5NeSBhY3Rpb25zPC9oMz4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgPHVsIGNsYXNzPSJhY3Rpb25saXN0Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaSBjbGFzcz0iYWRkbGluayI+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS9jb21wYW55LzIvY2hhbmdlLyI+Q29tcGFueSBvYmplY3Q8L2E+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxici8+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz0ibWluaSBxdWlldCI+Q29tcGFueTwvc3Bhbj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgICAgPGxpIGNsYXNzPSJkZWxldGVsaW5rIj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIENvbXBhbnkgb2JqZWN0CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxici8+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz0ibWluaSBxdWlldCI+Q29tcGFueTwvc3Bhbj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgICAgPGxpIGNsYXNzPSJhZGRsaW5rIj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9hdXRoL3VzZXIvNC9jaGFuZ2UvIj5mYXJoYW5zdXBlcjwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5Vc2VyPC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8bGkgY2xhc3M9ImFkZGxpbmsiPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8zL2NoYW5nZS8iPmZhcmhhbmNvcnA8L2E+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxici8+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz0ibWluaSBxdWlldCI+VXNlcjwvc3Bhbj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgICAgPGxpIGNsYXNzPSJhZGRsaW5rIj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9hdXRoL3VzZXIvMi9jaGFuZ2UvIj5mYXJoYW48L2E+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxici8+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz0ibWluaSBxdWlldCI+VXNlcjwvc3Bhbj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgICAgPGxpIGNsYXNzPSJhZGRsaW5rIj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9jb3JlL2NvbXBhbnkvMS9jaGFuZ2UvIj5Db21wYW55IG9iamVjdDwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5Db21wYW55PC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8L3VsPgogICAgICAgICAgICAKICAgIDwvZGl2Pgo8L2Rpdj4KCiAgICAgICAgPGJyIGNsYXNzPSJjbGVhciIgLz4KICAgIDwvZGl2PgogICAgPCEtLSBFTkQgQ29udGVudCAtLT4KCiAgICA8ZGl2IGlkPSJmb290ZXIiPjwvZGl2Pgo8L2Rpdj4KPCEtLSBFTkQgQ29udGFpbmVyIC0tPgoKPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 14:56:21 GMT\", \"Expires\": \"Mon, 27 Mar 2017 14:56:21 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\"}" - } -}, -{ - "model": "silk.response", - "pk": "2a4c9247-e4b8-4f08-a058-0fc070e54feb", - "fields": { - "request": "57ce7e2d-561c-447b-a337-1b11b65a169d", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPlNlbGVjdCB1c2VyIHRvIGNoYW5nZSB8IERqYW5nbyBzaXRlIGFkbWluPC90aXRsZT4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvYmFzZS5jc3MiIC8+CgogIAogIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvYWRtaW4vY3NzL2NoYW5nZWxpc3RzLmNzcyIgLz4KICAKICAKICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KICAKICAKICAKCgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvY29yZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL2pxdWVyeS9qcXVlcnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2pxdWVyeS5pbml0LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hZG1pbi9SZWxhdGVkT2JqZWN0TG9va3Vwcy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvYWN0aW9ucy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdXJsaWZ5LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9wcmVwb3B1bGF0ZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL3hyZWdleHAveHJlZ2V4cC5qcyI+PC9zY3JpcHQ+Cgo8bWV0YSBuYW1lPSJyb2JvdHMiIGNvbnRlbnQ9Ik5PTkUsTk9BUkNISVZFIiAvPgo8L2hlYWQ+CgoKPGJvZHkgY2xhc3M9IiBhcHAtYXV0aCBtb2RlbC11c2VyIGNoYW5nZS1saXN0IgogIGRhdGEtYWRtaW4tdXRjLW9mZnNldD0iMCI+Cgo8IS0tIENvbnRhaW5lciAtLT4KPGRpdiBpZD0iY29udGFpbmVyIj4KCiAgICAKICAgIDwhLS0gSGVhZGVyIC0tPgogICAgPGRpdiBpZD0iaGVhZGVyIj4KICAgICAgICA8ZGl2IGlkPSJicmFuZGluZyI+CiAgICAgICAgCjxoMSBpZD0ic2l0ZS1uYW1lIj48YSBocmVmPSIvYWRtaW4vIj5EamFuZ28gYWRtaW5pc3RyYXRpb248L2E+PC9oMT4KCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgPGRpdiBpZD0idXNlci10b29scyI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgV2VsY29tZSwKICAgICAgICAgICAgICAgIDxzdHJvbmc+a2FwZTwvc3Ryb25nPi4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iLyI+VmlldyBzaXRlPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9wYXNzd29yZF9jaGFuZ2UvIj5DaGFuZ2UgcGFzc3dvcmQ8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2xvZ291dC8iPkxvZyBvdXQ8L2E+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIAogICAgPC9kaXY+CiAgICA8IS0tIEVORCBIZWFkZXIgLS0+CiAgICAKPGRpdiBjbGFzcz0iYnJlYWRjcnVtYnMiPgo8YSBocmVmPSIvYWRtaW4vIj5Ib21lPC9hPgomcnNhcXVvOyA8YSBocmVmPSIvYWRtaW4vYXV0aC8iPkF1dGhlbnRpY2F0aW9uIGFuZCBBdXRob3JpemF0aW9uPC9hPgomcnNhcXVvOyBVc2Vycwo8L2Rpdj4KCiAgICAKCiAgICAKICAgICAgICAKICAgIAoKICAgIDwhLS0gQ29udGVudCAtLT4KICAgIDxkaXYgaWQ9ImNvbnRlbnQiIGNsYXNzPSJmbGV4Ij4KICAgICAgICAKICAgICAgICA8aDE+U2VsZWN0IHVzZXIgdG8gY2hhbmdlPC9oMT4KICAgICAgICAKICA8ZGl2IGlkPSJjb250ZW50LW1haW4iPgogICAgCiAgICAgICAgPHVsIGNsYXNzPSJvYmplY3QtdG9vbHMiPgogICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICA8bGk+CiAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci9hZGQvIiBjbGFzcz0iYWRkbGluayI+CiAgICAgICAgICAgICAgICBBZGQgdXNlcgogICAgICAgICAgICAgIDwvYT4KICAgICAgICAgICAgPC9saT4KICAgICAgICAgICAgCiAgICAgICAgICAKICAgICAgICA8L3VsPgogICAgCiAgICAKICAgIDxkaXYgY2xhc3M9Im1vZHVsZSBmaWx0ZXJlZCIgaWQ9ImNoYW5nZWxpc3QiPgogICAgICAKCjxkaXYgaWQ9InRvb2xiYXIiPjxmb3JtIGlkPSJjaGFuZ2VsaXN0LXNlYXJjaCIgbWV0aG9kPSJnZXQiPgo8ZGl2PjwhLS0gRElWIG5lZWRlZCBmb3IgdmFsaWQgSFRNTCAtLT4KPGxhYmVsIGZvcj0ic2VhcmNoYmFyIj48aW1nIHNyYz0iL2Fzc2V0cy9hZG1pbi9pbWcvc2VhcmNoLnN2ZyIgYWx0PSJTZWFyY2giIC8+PC9sYWJlbD4KPGlucHV0IHR5cGU9InRleHQiIHNpemU9IjQwIiBuYW1lPSJxIiB2YWx1ZT0iIiBpZD0ic2VhcmNoYmFyIiBhdXRvZm9jdXMgLz4KPGlucHV0IHR5cGU9InN1Ym1pdCIgdmFsdWU9IlNlYXJjaCIgLz4KCgo8L2Rpdj4KPC9mb3JtPjwvZGl2PgoKCiAgICAgIAoKCiAgICAgIAogICAgICAgIAogICAgICAgICAgPGRpdiBpZD0iY2hhbmdlbGlzdC1maWx0ZXIiPgogICAgICAgICAgICA8aDI+RmlsdGVyPC9oMj4KICAgICAgICAgICAgCjxoMz4gQnkgc3RhZmYgc3RhdHVzIDwvaDM+Cjx1bD4KCiAgICA8bGkgY2xhc3M9InNlbGVjdGVkIj4KICAgIDxhIGhyZWY9Ij8iPkFsbDwvYT48L2xpPgoKICAgIDxsaT4KICAgIDxhIGhyZWY9Ij9pc19zdGFmZl9fZXhhY3Q9MSI+WWVzPC9hPjwvbGk+CgogICAgPGxpPgogICAgPGEgaHJlZj0iP2lzX3N0YWZmX19leGFjdD0wIj5ObzwvYT48L2xpPgoKPC91bD4KCjxoMz4gQnkgc3VwZXJ1c2VyIHN0YXR1cyA8L2gzPgo8dWw+CgogICAgPGxpIGNsYXNzPSJzZWxlY3RlZCI+CiAgICA8YSBocmVmPSI/Ij5BbGw8L2E+PC9saT4KCiAgICA8bGk+CiAgICA8YSBocmVmPSI/aXNfc3VwZXJ1c2VyX19leGFjdD0xIj5ZZXM8L2E+PC9saT4KCiAgICA8bGk+CiAgICA8YSBocmVmPSI/aXNfc3VwZXJ1c2VyX19leGFjdD0wIj5ObzwvYT48L2xpPgoKPC91bD4KCjxoMz4gQnkgYWN0aXZlIDwvaDM+Cjx1bD4KCiAgICA8bGkgY2xhc3M9InNlbGVjdGVkIj4KICAgIDxhIGhyZWY9Ij8iPkFsbDwvYT48L2xpPgoKICAgIDxsaT4KICAgIDxhIGhyZWY9Ij9pc19hY3RpdmVfX2V4YWN0PTEiPlllczwvYT48L2xpPgoKICAgIDxsaT4KICAgIDxhIGhyZWY9Ij9pc19hY3RpdmVfX2V4YWN0PTAiPk5vPC9hPjwvbGk+Cgo8L3VsPgoKICAgICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAKCiAgICAgIDxmb3JtIGlkPSJjaGFuZ2VsaXN0LWZvcm0iIG1ldGhvZD0icG9zdCIgbm92YWxpZGF0ZT48aW5wdXQgdHlwZT0naGlkZGVuJyBuYW1lPSdjc3JmbWlkZGxld2FyZXRva2VuJyB2YWx1ZT0nQmx3WnIyeVRiVzNnT29ZQ0xjbTFpd2E5NnBlY1V2STMwckRPRHlxT1lUZUZidzA0dURSdGFkUlQ0a2sxZXZFUycgLz4KICAgICAgCgogICAgICAKICAgICAgICAgIAo8ZGl2IGNsYXNzPSJhY3Rpb25zIj4KICAgIDxsYWJlbD5BY3Rpb246IDxzZWxlY3QgbmFtZT0iYWN0aW9uIiByZXF1aXJlZD4KPG9wdGlvbiB2YWx1ZT0iIiBzZWxlY3RlZD0ic2VsZWN0ZWQiPi0tLS0tLS0tLTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSJkZWxldGVfc2VsZWN0ZWQiPkRlbGV0ZSBzZWxlY3RlZCB1c2Vyczwvb3B0aW9uPgo8L3NlbGVjdD48L2xhYmVsPjxpbnB1dCBjbGFzcz0ic2VsZWN0LWFjcm9zcyIgbmFtZT0ic2VsZWN0X2Fjcm9zcyIgdHlwZT0iaGlkZGVuIiB2YWx1ZT0iMCIgLz4KICAgIDxidXR0b24gdHlwZT0ic3VibWl0IiBjbGFzcz0iYnV0dG9uIiB0aXRsZT0iUnVuIHRoZSBzZWxlY3RlZCBhY3Rpb24iIG5hbWU9ImluZGV4IiB2YWx1ZT0iMCI+R288L2J1dHRvbj4KICAgIAogICAgICAgIDxzcGFuIGNsYXNzPSJhY3Rpb24tY291bnRlciIgZGF0YS1hY3Rpb25zLWljbnQ9IjQiPjAgb2YgNCBzZWxlY3RlZDwvc3Bhbj4KICAgICAgICAKICAgIAo8L2Rpdj4KCiAgICAgICAgICAKCgo8ZGl2IGNsYXNzPSJyZXN1bHRzIj4KPHRhYmxlIGlkPSJyZXN1bHRfbGlzdCI+Cjx0aGVhZD4KPHRyPgoKPHRoIHNjb3BlPSJjb2wiICBjbGFzcz0iYWN0aW9uLWNoZWNrYm94LWNvbHVtbiI+CiAgIAogICA8ZGl2IGNsYXNzPSJ0ZXh0Ij48c3Bhbj48aW5wdXQgdHlwZT0iY2hlY2tib3giIGlkPSJhY3Rpb24tdG9nZ2xlIiAvPjwvc3Bhbj48L2Rpdj4KICAgPGRpdiBjbGFzcz0iY2xlYXIiPjwvZGl2Pgo8L3RoPgo8dGggc2NvcGU9ImNvbCIgIGNsYXNzPSJzb3J0YWJsZSBjb2x1bW4tdXNlcm5hbWUgc29ydGVkIGFzY2VuZGluZyI+CiAgIAogICAgIAogICAgICAgPGRpdiBjbGFzcz0ic29ydG9wdGlvbnMiPgogICAgICAgICA8YSBjbGFzcz0ic29ydHJlbW92ZSIgaHJlZj0iP289IiB0aXRsZT0iUmVtb3ZlIGZyb20gc29ydGluZyI+PC9hPgogICAgICAgICAKICAgICAgICAgPGEgaHJlZj0iP289LTEiIGNsYXNzPSJ0b2dnbGUgYXNjZW5kaW5nIiB0aXRsZT0iVG9nZ2xlIHNvcnRpbmciPjwvYT4KICAgICAgIDwvZGl2PgogICAgIAogICAKICAgPGRpdiBjbGFzcz0idGV4dCI+PGEgaHJlZj0iP289LTEiPlVzZXJuYW1lPC9hPjwvZGl2PgogICA8ZGl2IGNsYXNzPSJjbGVhciI+PC9kaXY+CjwvdGg+Cjx0aCBzY29wZT0iY29sIiAgY2xhc3M9InNvcnRhYmxlIGNvbHVtbi1lbWFpbCI+CiAgIAogICAgIAogICAKICAgPGRpdiBjbGFzcz0idGV4dCI+PGEgaHJlZj0iP289Mi4xIj5FbWFpbCBhZGRyZXNzPC9hPjwvZGl2PgogICA8ZGl2IGNsYXNzPSJjbGVhciI+PC9kaXY+CjwvdGg+Cjx0aCBzY29wZT0iY29sIiAgY2xhc3M9InNvcnRhYmxlIGNvbHVtbi1maXJzdF9uYW1lIj4KICAgCiAgICAgCiAgIAogICA8ZGl2IGNsYXNzPSJ0ZXh0Ij48YSBocmVmPSI/bz0zLjEiPkZpcnN0IG5hbWU8L2E+PC9kaXY+CiAgIDxkaXYgY2xhc3M9ImNsZWFyIj48L2Rpdj4KPC90aD4KPHRoIHNjb3BlPSJjb2wiICBjbGFzcz0ic29ydGFibGUgY29sdW1uLWxhc3RfbmFtZSI+CiAgIAogICAgIAogICAKICAgPGRpdiBjbGFzcz0idGV4dCI+PGEgaHJlZj0iP289NC4xIj5MYXN0IG5hbWU8L2E+PC9kaXY+CiAgIDxkaXYgY2xhc3M9ImNsZWFyIj48L2Rpdj4KPC90aD4KPHRoIHNjb3BlPSJjb2wiICBjbGFzcz0ic29ydGFibGUgY29sdW1uLWlzX3N0YWZmIj4KICAgCiAgICAgCiAgIAogICA8ZGl2IGNsYXNzPSJ0ZXh0Ij48YSBocmVmPSI/bz01LjEiPlN0YWZmIHN0YXR1czwvYT48L2Rpdj4KICAgPGRpdiBjbGFzcz0iY2xlYXIiPjwvZGl2Pgo8L3RoPgo8L3RyPgo8L3RoZWFkPgo8dGJvZHk+CgoKPHRyIGNsYXNzPSJyb3cxIj48dGQgY2xhc3M9ImFjdGlvbi1jaGVja2JveCI+PGlucHV0IGNsYXNzPSJhY3Rpb24tc2VsZWN0IiBuYW1lPSJfc2VsZWN0ZWRfYWN0aW9uIiB0eXBlPSJjaGVja2JveCIgdmFsdWU9IjIiIC8+PC90ZD48dGggY2xhc3M9ImZpZWxkLXVzZXJuYW1lIj48YSBocmVmPSIvYWRtaW4vYXV0aC91c2VyLzIvY2hhbmdlLyI+ZmFyaGFuPC9hPjwvdGg+PHRkIGNsYXNzPSJmaWVsZC1lbWFpbCI+Jm5ic3A7PC90ZD48dGQgY2xhc3M9ImZpZWxkLWZpcnN0X25hbWUiPiZuYnNwOzwvdGQ+PHRkIGNsYXNzPSJmaWVsZC1sYXN0X25hbWUiPiZuYnNwOzwvdGQ+PHRkIGNsYXNzPSJmaWVsZC1pc19zdGFmZiI+PGltZyBzcmM9Ii9hc3NldHMvYWRtaW4vaW1nL2ljb24tbm8uc3ZnIiBhbHQ9IkZhbHNlIiAvPjwvdGQ+PC90cj4KCgo8dHIgY2xhc3M9InJvdzIiPjx0ZCBjbGFzcz0iYWN0aW9uLWNoZWNrYm94Ij48aW5wdXQgY2xhc3M9ImFjdGlvbi1zZWxlY3QiIG5hbWU9Il9zZWxlY3RlZF9hY3Rpb24iIHR5cGU9ImNoZWNrYm94IiB2YWx1ZT0iMyIgLz48L3RkPjx0aCBjbGFzcz0iZmllbGQtdXNlcm5hbWUiPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL3VzZXIvMy9jaGFuZ2UvIj5mYXJoYW5jb3JwPC9hPjwvdGg+PHRkIGNsYXNzPSJmaWVsZC1lbWFpbCI+Jm5ic3A7PC90ZD48dGQgY2xhc3M9ImZpZWxkLWZpcnN0X25hbWUiPiZuYnNwOzwvdGQ+PHRkIGNsYXNzPSJmaWVsZC1sYXN0X25hbWUiPiZuYnNwOzwvdGQ+PHRkIGNsYXNzPSJmaWVsZC1pc19zdGFmZiI+PGltZyBzcmM9Ii9hc3NldHMvYWRtaW4vaW1nL2ljb24tbm8uc3ZnIiBhbHQ9IkZhbHNlIiAvPjwvdGQ+PC90cj4KCgo8dHIgY2xhc3M9InJvdzEiPjx0ZCBjbGFzcz0iYWN0aW9uLWNoZWNrYm94Ij48aW5wdXQgY2xhc3M9ImFjdGlvbi1zZWxlY3QiIG5hbWU9Il9zZWxlY3RlZF9hY3Rpb24iIHR5cGU9ImNoZWNrYm94IiB2YWx1ZT0iNCIgLz48L3RkPjx0aCBjbGFzcz0iZmllbGQtdXNlcm5hbWUiPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL3VzZXIvNC9jaGFuZ2UvIj5mYXJoYW5zdXBlcjwvYT48L3RoPjx0ZCBjbGFzcz0iZmllbGQtZW1haWwiPiZuYnNwOzwvdGQ+PHRkIGNsYXNzPSJmaWVsZC1maXJzdF9uYW1lIj4mbmJzcDs8L3RkPjx0ZCBjbGFzcz0iZmllbGQtbGFzdF9uYW1lIj4mbmJzcDs8L3RkPjx0ZCBjbGFzcz0iZmllbGQtaXNfc3RhZmYiPjxpbWcgc3JjPSIvYXNzZXRzL2FkbWluL2ltZy9pY29uLW5vLnN2ZyIgYWx0PSJGYWxzZSIgLz48L3RkPjwvdHI+CgoKPHRyIGNsYXNzPSJyb3cyIj48dGQgY2xhc3M9ImFjdGlvbi1jaGVja2JveCI+PGlucHV0IGNsYXNzPSJhY3Rpb24tc2VsZWN0IiBuYW1lPSJfc2VsZWN0ZWRfYWN0aW9uIiB0eXBlPSJjaGVja2JveCIgdmFsdWU9IjEiIC8+PC90ZD48dGggY2xhc3M9ImZpZWxkLXVzZXJuYW1lIj48YSBocmVmPSIvYWRtaW4vYXV0aC91c2VyLzEvY2hhbmdlLyI+a2FwZTwvYT48L3RoPjx0ZCBjbGFzcz0iZmllbGQtZW1haWwiPmthcGVAa2FwZS5jb208L3RkPjx0ZCBjbGFzcz0iZmllbGQtZmlyc3RfbmFtZSI+Jm5ic3A7PC90ZD48dGQgY2xhc3M9ImZpZWxkLWxhc3RfbmFtZSI+Jm5ic3A7PC90ZD48dGQgY2xhc3M9ImZpZWxkLWlzX3N0YWZmIj48aW1nIHNyYz0iL2Fzc2V0cy9hZG1pbi9pbWcvaWNvbi15ZXMuc3ZnIiBhbHQ9IlRydWUiIC8+PC90ZD48L3RyPgoKPC90Ym9keT4KPC90YWJsZT4KPC9kaXY+CgoKICAgICAgICAgIAogICAgICAKICAgICAgCgo8cCBjbGFzcz0icGFnaW5hdG9yIj4KCjQgdXNlcnMKCgo8L3A+CgogICAgICA8L2Zvcm0+CiAgICA8L2Rpdj4KICA8L2Rpdj4KCiAgICAgICAgCiAgICAgICAgPGJyIGNsYXNzPSJjbGVhciIgLz4KICAgIDwvZGl2PgogICAgPCEtLSBFTkQgQ29udGVudCAtLT4KCiAgICA8ZGl2IGlkPSJmb290ZXIiPjwvZGl2Pgo8L2Rpdj4KPCEtLSBFTkQgQ29udGFpbmVyIC0tPgoKPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 17:15:02 GMT\", \"Expires\": \"Mon, 27 Mar 2017 17:15:02 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "2a7d3159-8dea-4979-9fd5-38962d48b889", - "fields": { - "request": "ea92b5da-2291-4fbe-bb06-e93f363596e0", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPlNlbGVjdCBzdHVkZW50IHRvIGNoYW5nZSB8IERqYW5nbyBzaXRlIGFkbWluPC90aXRsZT4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvYmFzZS5jc3MiIC8+CgogIAogIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvYWRtaW4vY3NzL2NoYW5nZWxpc3RzLmNzcyIgLz4KICAKICAKICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KICAKICAKICAKCgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvY29yZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL2pxdWVyeS9qcXVlcnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2pxdWVyeS5pbml0LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hZG1pbi9SZWxhdGVkT2JqZWN0TG9va3Vwcy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvYWN0aW9ucy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdXJsaWZ5LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9wcmVwb3B1bGF0ZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL3hyZWdleHAveHJlZ2V4cC5qcyI+PC9zY3JpcHQ+Cgo8bWV0YSBuYW1lPSJyb2JvdHMiIGNvbnRlbnQ9Ik5PTkUsTk9BUkNISVZFIiAvPgo8L2hlYWQ+CgoKPGJvZHkgY2xhc3M9IiBhcHAtY29yZSBtb2RlbC1zdHVkZW50IGNoYW5nZS1saXN0IgogIGRhdGEtYWRtaW4tdXRjLW9mZnNldD0iMCI+Cgo8IS0tIENvbnRhaW5lciAtLT4KPGRpdiBpZD0iY29udGFpbmVyIj4KCiAgICAKICAgIDwhLS0gSGVhZGVyIC0tPgogICAgPGRpdiBpZD0iaGVhZGVyIj4KICAgICAgICA8ZGl2IGlkPSJicmFuZGluZyI+CiAgICAgICAgCjxoMSBpZD0ic2l0ZS1uYW1lIj48YSBocmVmPSIvYWRtaW4vIj5EamFuZ28gYWRtaW5pc3RyYXRpb248L2E+PC9oMT4KCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgPGRpdiBpZD0idXNlci10b29scyI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgV2VsY29tZSwKICAgICAgICAgICAgICAgIDxzdHJvbmc+a2FwZTwvc3Ryb25nPi4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iLyI+VmlldyBzaXRlPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9wYXNzd29yZF9jaGFuZ2UvIj5DaGFuZ2UgcGFzc3dvcmQ8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2xvZ291dC8iPkxvZyBvdXQ8L2E+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIAogICAgPC9kaXY+CiAgICA8IS0tIEVORCBIZWFkZXIgLS0+CiAgICAKPGRpdiBjbGFzcz0iYnJlYWRjcnVtYnMiPgo8YSBocmVmPSIvYWRtaW4vIj5Ib21lPC9hPgomcnNhcXVvOyA8YSBocmVmPSIvYWRtaW4vY29yZS8iPkNvcmU8L2E+CiZyc2FxdW87IFN0dWRlbnRzCjwvZGl2PgoKICAgIAoKICAgIAogICAgICAgIAogICAgCgogICAgPCEtLSBDb250ZW50IC0tPgogICAgPGRpdiBpZD0iY29udGVudCIgY2xhc3M9ImZsZXgiPgogICAgICAgIAogICAgICAgIDxoMT5TZWxlY3Qgc3R1ZGVudCB0byBjaGFuZ2U8L2gxPgogICAgICAgIAogIDxkaXYgaWQ9ImNvbnRlbnQtbWFpbiI+CiAgICAKICAgICAgICA8dWwgY2xhc3M9Im9iamVjdC10b29scyI+CiAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaT4KICAgICAgICAgICAgICAKICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS9zdHVkZW50L2FkZC8iIGNsYXNzPSJhZGRsaW5rIj4KICAgICAgICAgICAgICAgIEFkZCBzdHVkZW50CiAgICAgICAgICAgICAgPC9hPgogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgIAogICAgICAgIDwvdWw+CiAgICAKICAgIAogICAgPGRpdiBjbGFzcz0ibW9kdWxlIiBpZD0iY2hhbmdlbGlzdCI+CiAgICAgIAoKCiAgICAgIAoKCiAgICAgIAogICAgICAgIAogICAgICAKCiAgICAgIDxmb3JtIGlkPSJjaGFuZ2VsaXN0LWZvcm0iIG1ldGhvZD0icG9zdCIgbm92YWxpZGF0ZT48aW5wdXQgdHlwZT0naGlkZGVuJyBuYW1lPSdjc3JmbWlkZGxld2FyZXRva2VuJyB2YWx1ZT0na3MzRk10TmhGaUhFenoybDRiV045cGtxOU9GdnFLeGdKeWF1WVpGY3NmUzNXSDROTkNyZjE2MWE3SkxrS0t0NScgLz4KICAgICAgCgogICAgICAKICAgICAgICAgIAogICAgICAgICAgCgoKCiAgICAgICAgICAKICAgICAgCiAgICAgIAoKPHAgY2xhc3M9InBhZ2luYXRvciI+CgowIHN0dWRlbnRzCgoKPC9wPgoKICAgICAgPC9mb3JtPgogICAgPC9kaXY+CiAgPC9kaXY+CgogICAgICAgIAogICAgICAgIDxiciBjbGFzcz0iY2xlYXIiIC8+CiAgICA8L2Rpdj4KICAgIDwhLS0gRU5EIENvbnRlbnQgLS0+CgogICAgPGRpdiBpZD0iZm9vdGVyIj48L2Rpdj4KPC9kaXY+CjwhLS0gRU5EIENvbnRhaW5lciAtLT4KCjwvYm9keT4KPC9odG1sPgo=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 15:14:27 GMT\", \"Expires\": \"Mon, 27 Mar 2017 15:14:27 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "2b7bc416-a0d5-4a93-a60e-500c15d6a496", - "fields": { - "request": "50dc6132-bfbf-4eeb-acad-4efcf6b8c585", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPkNoYW5nZSB1c2VyIHwgRGphbmdvIHNpdGUgYWRtaW48L3RpdGxlPgo8bGluayByZWw9InN0eWxlc2hlZXQiIHR5cGU9InRleHQvY3NzIiBocmVmPSIvYXNzZXRzL2FkbWluL2Nzcy9iYXNlLmNzcyIgLz4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvZm9ybXMuY3NzIiAvPgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9jb3JlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IvanF1ZXJ5L2pxdWVyeS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvanF1ZXJ5LmluaXQuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2FkbWluL1JlbGF0ZWRPYmplY3RMb29rdXBzLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hY3Rpb25zLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy91cmxpZnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL3ByZXBvcHVsYXRlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IveHJlZ2V4cC94cmVnZXhwLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9TZWxlY3RCb3guanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL1NlbGVjdEZpbHRlcjIuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2NhbGVuZGFyLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hZG1pbi9EYXRlVGltZVNob3J0Y3V0cy5qcyI+PC9zY3JpcHQ+Cgo8bWV0YSBuYW1lPSJyb2JvdHMiIGNvbnRlbnQ9Ik5PTkUsTk9BUkNISVZFIiAvPgo8L2hlYWQ+CgoKPGJvZHkgY2xhc3M9IiBhcHAtYXV0aCBtb2RlbC11c2VyIGNoYW5nZS1mb3JtIgogIGRhdGEtYWRtaW4tdXRjLW9mZnNldD0iMCI+Cgo8IS0tIENvbnRhaW5lciAtLT4KPGRpdiBpZD0iY29udGFpbmVyIj4KCiAgICAKICAgIDwhLS0gSGVhZGVyIC0tPgogICAgPGRpdiBpZD0iaGVhZGVyIj4KICAgICAgICA8ZGl2IGlkPSJicmFuZGluZyI+CiAgICAgICAgCjxoMSBpZD0ic2l0ZS1uYW1lIj48YSBocmVmPSIvYWRtaW4vIj5EamFuZ28gYWRtaW5pc3RyYXRpb248L2E+PC9oMT4KCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgPGRpdiBpZD0idXNlci10b29scyI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgV2VsY29tZSwKICAgICAgICAgICAgICAgIDxzdHJvbmc+a2FwZTwvc3Ryb25nPi4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iLyI+VmlldyBzaXRlPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9wYXNzd29yZF9jaGFuZ2UvIj5DaGFuZ2UgcGFzc3dvcmQ8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2xvZ291dC8iPkxvZyBvdXQ8L2E+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIAogICAgPC9kaXY+CiAgICA8IS0tIEVORCBIZWFkZXIgLS0+CiAgICAKPGRpdiBjbGFzcz0iYnJlYWRjcnVtYnMiPgo8YSBocmVmPSIvYWRtaW4vIj5Ib21lPC9hPgomcnNhcXVvOyA8YSBocmVmPSIvYWRtaW4vYXV0aC8iPkF1dGhlbnRpY2F0aW9uIGFuZCBBdXRob3JpemF0aW9uPC9hPgomcnNhcXVvOyA8YSBocmVmPSIvYWRtaW4vYXV0aC91c2VyLyI+VXNlcnM8L2E+CiZyc2FxdW87IGZhcmhhbnN1cGVyCjwvZGl2PgoKICAgIAoKICAgIAogICAgICAgIAogICAgICAgIDx1bCBjbGFzcz0ibWVzc2FnZWxpc3QiPgogICAgICAgICAgPGxpIGNsYXNzPSJzdWNjZXNzIj5UaGUgdXNlciAiPGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci80L2NoYW5nZS8iPmZhcmhhbnN1cGVyPC9hPiIgd2FzIGFkZGVkIHN1Y2Nlc3NmdWxseS4gWW91IG1heSBlZGl0IGl0IGFnYWluIGJlbG93LjwvbGk+CiAgICAgICAgPC91bD4KICAgICAgICAKICAgIAoKICAgIDwhLS0gQ29udGVudCAtLT4KICAgIDxkaXYgaWQ9ImNvbnRlbnQiIGNsYXNzPSJjb2xNIj4KICAgICAgICAKICAgICAgICA8aDE+Q2hhbmdlIHVzZXI8L2gxPgogICAgICAgIDxkaXYgaWQ9ImNvbnRlbnQtbWFpbiI+CgoKICA8dWwgY2xhc3M9Im9iamVjdC10b29scyI+CiAgICAKICAgIDxsaT4KICAgICAgICAKICAgICAgICA8YSBocmVmPSIvYWRtaW4vYXV0aC91c2VyLzQvaGlzdG9yeS8iIGNsYXNzPSJoaXN0b3J5bGluayI+SGlzdG9yeTwvYT4KICAgIDwvbGk+CiAgICAKICAgIAogIDwvdWw+CgoKPGZvcm0gZW5jdHlwZT0ibXVsdGlwYXJ0L2Zvcm0tZGF0YSIgYWN0aW9uPSIiIG1ldGhvZD0icG9zdCIgaWQ9InVzZXJfZm9ybSIgbm92YWxpZGF0ZT48aW5wdXQgdHlwZT0naGlkZGVuJyBuYW1lPSdjc3JmbWlkZGxld2FyZXRva2VuJyB2YWx1ZT0nQ3lwZU5tNWI5U1E1WEJmRWVpem1nT25OWUJKWFdZNTExRXczWlNYNldQMXVrSmg2WEo0Tzh2NHhXd1BNZ1kxUScgLz4KPGRpdj4KCgoKCgoKCiAgPGZpZWxkc2V0IGNsYXNzPSJtb2R1bGUgYWxpZ25lZCAiPgogICAgCiAgICAKICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImZvcm0tcm93IGZpZWxkLXVzZXJuYW1lIj4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGRpdj4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPGxhYmVsIGNsYXNzPSJyZXF1aXJlZCIgZm9yPSJpZF91c2VybmFtZSI+VXNlcm5hbWU6PC9sYWJlbD4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8aW5wdXQgY2xhc3M9InZUZXh0RmllbGQiIGlkPSJpZF91c2VybmFtZSIgbWF4bGVuZ3RoPSIxNTAiIG5hbWU9InVzZXJuYW1lIiB0eXBlPSJ0ZXh0IiB2YWx1ZT0iZmFyaGFuc3VwZXIiIHJlcXVpcmVkIC8+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8cCBjbGFzcz0iaGVscCI+UmVxdWlyZWQuIDE1MCBjaGFyYWN0ZXJzIG9yIGZld2VyLiBMZXR0ZXJzLCBkaWdpdHMgYW5kIEAvLi8rLy0vXyBvbmx5LjwvcD4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDwvZGl2PgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImZvcm0tcm93IGZpZWxkLXBhc3N3b3JkIj4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGRpdj4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPGxhYmVsIGZvcj0iaWRfcGFzc3dvcmQiPlBhc3N3b3JkOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgPGRpdiBpZD0iaWRfcGFzc3dvcmQiPjxzdHJvbmc+YWxnb3JpdGhtPC9zdHJvbmc+OiBwYmtkZjJfc2hhMjU2IDxzdHJvbmc+aXRlcmF0aW9uczwvc3Ryb25nPjogMzAwMDAgPHN0cm9uZz5zYWx0PC9zdHJvbmc+OiBHbVdNQ0IqKioqKiogPHN0cm9uZz5oYXNoPC9zdHJvbmc+OiBRQlR6SEoqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKiA8L2Rpdj4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxwIGNsYXNzPSJoZWxwIj5SYXcgcGFzc3dvcmRzIGFyZSBub3Qgc3RvcmVkLCBzbyB0aGVyZSBpcyBubyB3YXkgdG8gc2VlIHRoaXMgdXNlcidzIHBhc3N3b3JkLCBidXQgeW91IGNhbiBjaGFuZ2UgdGhlIHBhc3N3b3JkIHVzaW5nIDxhIGhyZWY9Ii4uL3Bhc3N3b3JkLyI+dGhpcyBmb3JtPC9hPi48L3A+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKPC9maWVsZHNldD4KCgogIDxmaWVsZHNldCBjbGFzcz0ibW9kdWxlIGFsaWduZWQgIj4KICAgIDxoMj5QZXJzb25hbCBpbmZvPC9oMj4KICAgIAogICAgCiAgICAgICAgPGRpdiBjbGFzcz0iZm9ybS1yb3cgZmllbGQtZmlyc3RfbmFtZSI+CiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXY+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxsYWJlbCBmb3I9ImlkX2ZpcnN0X25hbWUiPkZpcnN0IG5hbWU6PC9sYWJlbD4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8aW5wdXQgY2xhc3M9InZUZXh0RmllbGQiIGlkPSJpZF9maXJzdF9uYW1lIiBtYXhsZW5ndGg9IjMwIiBuYW1lPSJmaXJzdF9uYW1lIiB0eXBlPSJ0ZXh0IiAvPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDwvZGl2PgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImZvcm0tcm93IGZpZWxkLWxhc3RfbmFtZSI+CiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXY+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxsYWJlbCBmb3I9ImlkX2xhc3RfbmFtZSI+TGFzdCBuYW1lOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgPGlucHV0IGNsYXNzPSJ2VGV4dEZpZWxkIiBpZD0iaWRfbGFzdF9uYW1lIiBtYXhsZW5ndGg9IjMwIiBuYW1lPSJsYXN0X25hbWUiIHR5cGU9InRleHQiIC8+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPC9kaXY+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgCiAgICAgICAgPGRpdiBjbGFzcz0iZm9ybS1yb3cgZmllbGQtZW1haWwiPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgZm9yPSJpZF9lbWFpbCI+RW1haWwgYWRkcmVzczo8L2xhYmVsPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxpbnB1dCBjbGFzcz0idlRleHRGaWVsZCIgaWQ9ImlkX2VtYWlsIiBtYXhsZW5ndGg9IjI1NCIgbmFtZT0iZW1haWwiIHR5cGU9ImVtYWlsIiAvPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDwvZGl2PgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgIAo8L2ZpZWxkc2V0PgoKCiAgPGZpZWxkc2V0IGNsYXNzPSJtb2R1bGUgYWxpZ25lZCAiPgogICAgPGgyPlBlcm1pc3Npb25zPC9oMj4KICAgIAogICAgCiAgICAgICAgPGRpdiBjbGFzcz0iZm9ybS1yb3cgZmllbGQtaXNfYWN0aXZlIj4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGRpdiBjbGFzcz0iY2hlY2tib3gtcm93Ij4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPGlucHV0IGNoZWNrZWQ9ImNoZWNrZWQiIGlkPSJpZF9pc19hY3RpdmUiIG5hbWU9ImlzX2FjdGl2ZSIgdHlwZT0iY2hlY2tib3giIC8+PGxhYmVsIGNsYXNzPSJ2Q2hlY2tib3hMYWJlbCIgZm9yPSJpZF9pc19hY3RpdmUiPkFjdGl2ZTwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxwIGNsYXNzPSJoZWxwIj5EZXNpZ25hdGVzIHdoZXRoZXIgdGhpcyB1c2VyIHNob3VsZCBiZSB0cmVhdGVkIGFzIGFjdGl2ZS4gVW5zZWxlY3QgdGhpcyBpbnN0ZWFkIG9mIGRlbGV0aW5nIGFjY291bnRzLjwvcD4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDwvZGl2PgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImZvcm0tcm93IGZpZWxkLWlzX3N0YWZmIj4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGRpdiBjbGFzcz0iY2hlY2tib3gtcm93Ij4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPGlucHV0IGlkPSJpZF9pc19zdGFmZiIgbmFtZT0iaXNfc3RhZmYiIHR5cGU9ImNoZWNrYm94IiAvPjxsYWJlbCBjbGFzcz0idkNoZWNrYm94TGFiZWwiIGZvcj0iaWRfaXNfc3RhZmYiPlN0YWZmIHN0YXR1czwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxwIGNsYXNzPSJoZWxwIj5EZXNpZ25hdGVzIHdoZXRoZXIgdGhlIHVzZXIgY2FuIGxvZyBpbnRvIHRoaXMgYWRtaW4gc2l0ZS48L3A+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC1pc19zdXBlcnVzZXIiPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPSJjaGVja2JveC1yb3ciPgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8aW5wdXQgaWQ9ImlkX2lzX3N1cGVydXNlciIgbmFtZT0iaXNfc3VwZXJ1c2VyIiB0eXBlPSJjaGVja2JveCIgLz48bGFiZWwgY2xhc3M9InZDaGVja2JveExhYmVsIiBmb3I9ImlkX2lzX3N1cGVydXNlciI+U3VwZXJ1c2VyIHN0YXR1czwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxwIGNsYXNzPSJoZWxwIj5EZXNpZ25hdGVzIHRoYXQgdGhpcyB1c2VyIGhhcyBhbGwgcGVybWlzc2lvbnMgd2l0aG91dCBleHBsaWNpdGx5IGFzc2lnbmluZyB0aGVtLjwvcD4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDwvZGl2PgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImZvcm0tcm93IGZpZWxkLWdyb3VwcyI+CiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXY+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxsYWJlbCBmb3I9ImlkX2dyb3VwcyI+R3JvdXBzOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgCjxkaXYgY2xhc3M9InJlbGF0ZWQtd2lkZ2V0LXdyYXBwZXIiPgogICAgPHNlbGVjdCBtdWx0aXBsZT0ibXVsdGlwbGUiIGNsYXNzPSJzZWxlY3RmaWx0ZXIiIGRhdGEtZmllbGQtbmFtZT0iZ3JvdXBzIiBkYXRhLWlzLXN0YWNrZWQ9IjAiIGlkPSJpZF9ncm91cHMiIG5hbWU9Imdyb3VwcyI+Cjwvc2VsZWN0PgogICAgCiAgICAgICAgCiAgICAgICAgCiAgICAgICAgPGEgY2xhc3M9InJlbGF0ZWQtd2lkZ2V0LXdyYXBwZXItbGluayBhZGQtcmVsYXRlZCIgaWQ9ImFkZF9pZF9ncm91cHMiCiAgICAgICAgICAgIGhyZWY9Ii9hZG1pbi9hdXRoL2dyb3VwL2FkZC8/X3RvX2ZpZWxkPWlkJmFtcDtfcG9wdXA9MSIKICAgICAgICAgICAgdGl0bGU9IkFkZCBhbm90aGVyIGdyb3VwIj4KICAgICAgICAgICAgPGltZyBzcmM9Ii9hc3NldHMvYWRtaW4vaW1nL2ljb24tYWRkbGluay5zdmciIGFsdD0iQWRkIi8+CiAgICAgICAgPC9hPgogICAgICAgIAogICAgICAgIAogICAgCjwvZGl2PgoKICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxwIGNsYXNzPSJoZWxwIj5UaGUgZ3JvdXBzIHRoaXMgdXNlciBiZWxvbmdzIHRvLiBBIHVzZXIgd2lsbCBnZXQgYWxsIHBlcm1pc3Npb25zIGdyYW50ZWQgdG8gZWFjaCBvZiB0aGVpciBncm91cHMuIEhvbGQgZG93biAiQ29udHJvbCIsIG9yICJDb21tYW5kIiBvbiBhIE1hYywgdG8gc2VsZWN0IG1vcmUgdGhhbiBvbmUuPC9wPgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPC9kaXY+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgCiAgICAgICAgPGRpdiBjbGFzcz0iZm9ybS1yb3cgZmllbGQtdXNlcl9wZXJtaXNzaW9ucyI+CiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXY+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxsYWJlbCBmb3I9ImlkX3VzZXJfcGVybWlzc2lvbnMiPlVzZXIgcGVybWlzc2lvbnM6PC9sYWJlbD4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAKPGRpdiBjbGFzcz0icmVsYXRlZC13aWRnZXQtd3JhcHBlciI+CiAgICA8c2VsZWN0IG11bHRpcGxlPSJtdWx0aXBsZSIgY2xhc3M9InNlbGVjdGZpbHRlciIgZGF0YS1maWVsZC1uYW1lPSJ1c2VyIHBlcm1pc3Npb25zIiBkYXRhLWlzLXN0YWNrZWQ9IjAiIGlkPSJpZF91c2VyX3Blcm1pc3Npb25zIiBuYW1lPSJ1c2VyX3Blcm1pc3Npb25zIj4KPG9wdGlvbiB2YWx1ZT0iMSI+YWRtaW4gfCBsb2cgZW50cnkgfCBDYW4gYWRkIGxvZyBlbnRyeTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIyIj5hZG1pbiB8IGxvZyBlbnRyeSB8IENhbiBjaGFuZ2UgbG9nIGVudHJ5PC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjMiPmFkbWluIHwgbG9nIGVudHJ5IHwgQ2FuIGRlbGV0ZSBsb2cgZW50cnk8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMTAiPmF1dGggfCBncm91cCB8IENhbiBhZGQgZ3JvdXA8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMTEiPmF1dGggfCBncm91cCB8IENhbiBjaGFuZ2UgZ3JvdXA8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMTIiPmF1dGggfCBncm91cCB8IENhbiBkZWxldGUgZ3JvdXA8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iNCI+YXV0aCB8IHBlcm1pc3Npb24gfCBDYW4gYWRkIHBlcm1pc3Npb248L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iNSI+YXV0aCB8IHBlcm1pc3Npb24gfCBDYW4gY2hhbmdlIHBlcm1pc3Npb248L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iNiI+YXV0aCB8IHBlcm1pc3Npb24gfCBDYW4gZGVsZXRlIHBlcm1pc3Npb248L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iNyI+YXV0aCB8IHVzZXIgfCBDYW4gYWRkIHVzZXI8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iOCI+YXV0aCB8IHVzZXIgfCBDYW4gY2hhbmdlIHVzZXI8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iOSI+YXV0aCB8IHVzZXIgfCBDYW4gZGVsZXRlIHVzZXI8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMTMiPmNvbnRlbnR0eXBlcyB8IGNvbnRlbnQgdHlwZSB8IENhbiBhZGQgY29udGVudCB0eXBlPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjE0Ij5jb250ZW50dHlwZXMgfCBjb250ZW50IHR5cGUgfCBDYW4gY2hhbmdlIGNvbnRlbnQgdHlwZTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIxNSI+Y29udGVudHR5cGVzIHwgY29udGVudCB0eXBlIHwgQ2FuIGRlbGV0ZSBjb250ZW50IHR5cGU8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMjUiPmNvcmUgfCBhcHBsaWNhdGlvbiB8IENhbiBhZGQgYXBwbGljYXRpb248L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMjYiPmNvcmUgfCBhcHBsaWNhdGlvbiB8IENhbiBjaGFuZ2UgYXBwbGljYXRpb248L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMjciPmNvcmUgfCBhcHBsaWNhdGlvbiB8IENhbiBkZWxldGUgYXBwbGljYXRpb248L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMTkiPmNvcmUgfCBjb21wYW55IHwgQ2FuIGFkZCBjb21wYW55PC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjIwIj5jb3JlIHwgY29tcGFueSB8IENhbiBjaGFuZ2UgY29tcGFueTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIyMSI+Y29yZSB8IGNvbXBhbnkgfCBDYW4gZGVsZXRlIGNvbXBhbnk8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMjIiPmNvcmUgfCBzdHVkZW50IHwgQ2FuIGFkZCBzdHVkZW50PC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjIzIj5jb3JlIHwgc3R1ZGVudCB8IENhbiBjaGFuZ2Ugc3R1ZGVudDwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIyNCI+Y29yZSB8IHN0dWRlbnQgfCBDYW4gZGVsZXRlIHN0dWRlbnQ8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMjgiPmNvcmUgfCBzdXBlcnZpc29yIHwgQ2FuIGFkZCBzdXBlcnZpc29yPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjI5Ij5jb3JlIHwgc3VwZXJ2aXNvciB8IENhbiBjaGFuZ2Ugc3VwZXJ2aXNvcjwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIzMCI+Y29yZSB8IHN1cGVydmlzb3IgfCBDYW4gZGVsZXRlIHN1cGVydmlzb3I8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMzEiPmNvcmUgfCB2YWNhbmN5IHwgQ2FuIGFkZCB2YWNhbmN5PC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjMyIj5jb3JlIHwgdmFjYW5jeSB8IENhbiBjaGFuZ2UgdmFjYW5jeTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIzMyI+Y29yZSB8IHZhY2FuY3kgfCBDYW4gZGVsZXRlIHZhY2FuY3k8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMTYiPnNlc3Npb25zIHwgc2Vzc2lvbiB8IENhbiBhZGQgc2Vzc2lvbjwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIxNyI+c2Vzc2lvbnMgfCBzZXNzaW9uIHwgQ2FuIGNoYW5nZSBzZXNzaW9uPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjE4Ij5zZXNzaW9ucyB8IHNlc3Npb24gfCBDYW4gZGVsZXRlIHNlc3Npb248L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iNDMiPnNpbGsgfCBwcm9maWxlIHwgQ2FuIGFkZCBwcm9maWxlPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjQ0Ij5zaWxrIHwgcHJvZmlsZSB8IENhbiBjaGFuZ2UgcHJvZmlsZTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSI0NSI+c2lsayB8IHByb2ZpbGUgfCBDYW4gZGVsZXRlIHByb2ZpbGU8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMzQiPnNpbGsgfCByZXF1ZXN0IHwgQ2FuIGFkZCByZXF1ZXN0PC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjM1Ij5zaWxrIHwgcmVxdWVzdCB8IENhbiBjaGFuZ2UgcmVxdWVzdDwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIzNiI+c2lsayB8IHJlcXVlc3QgfCBDYW4gZGVsZXRlIHJlcXVlc3Q8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iNDAiPnNpbGsgfCByZXNwb25zZSB8IENhbiBhZGQgcmVzcG9uc2U8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iNDEiPnNpbGsgfCByZXNwb25zZSB8IENhbiBjaGFuZ2UgcmVzcG9uc2U8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iNDIiPnNpbGsgfCByZXNwb25zZSB8IENhbiBkZWxldGUgcmVzcG9uc2U8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMzciPnNpbGsgfCBzcWwgcXVlcnkgfCBDYW4gYWRkIHNxbCBxdWVyeTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIzOCI+c2lsayB8IHNxbCBxdWVyeSB8IENhbiBjaGFuZ2Ugc3FsIHF1ZXJ5PC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjM5Ij5zaWxrIHwgc3FsIHF1ZXJ5IHwgQ2FuIGRlbGV0ZSBzcWwgcXVlcnk8L29wdGlvbj4KPC9zZWxlY3Q+CiAgICAKICAgICAgICAKICAgICAgICAKICAgICAgICAKICAgIAo8L2Rpdj4KCiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8cCBjbGFzcz0iaGVscCI+U3BlY2lmaWMgcGVybWlzc2lvbnMgZm9yIHRoaXMgdXNlci4gSG9sZCBkb3duICJDb250cm9sIiwgb3IgIkNvbW1hbmQiIG9uIGEgTWFjLCB0byBzZWxlY3QgbW9yZSB0aGFuIG9uZS48L3A+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKPC9maWVsZHNldD4KCgogIDxmaWVsZHNldCBjbGFzcz0ibW9kdWxlIGFsaWduZWQgIj4KICAgIDxoMj5JbXBvcnRhbnQgZGF0ZXM8L2gyPgogICAgCiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC1sYXN0X2xvZ2luIj4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGRpdj4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPGxhYmVsIGZvcj0iaWRfbGFzdF9sb2dpbl8wIj5MYXN0IGxvZ2luOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgPHAgY2xhc3M9ImRhdGV0aW1lIj5EYXRlOiA8aW5wdXQgY2xhc3M9InZEYXRlRmllbGQiIGlkPSJpZF9sYXN0X2xvZ2luXzAiIG5hbWU9Imxhc3RfbG9naW5fMCIgc2l6ZT0iMTAiIHR5cGU9InRleHQiIC8+PGJyIC8+VGltZTogPGlucHV0IGNsYXNzPSJ2VGltZUZpZWxkIiBpZD0iaWRfbGFzdF9sb2dpbl8xIiBuYW1lPSJsYXN0X2xvZ2luXzEiIHNpemU9IjgiIHR5cGU9InRleHQiIC8+PC9wPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDwvZGl2PgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImZvcm0tcm93IGZpZWxkLWRhdGVfam9pbmVkIj4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGRpdj4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPGxhYmVsIGNsYXNzPSJyZXF1aXJlZCIgZm9yPSJpZF9kYXRlX2pvaW5lZF8wIj5EYXRlIGpvaW5lZDo8L2xhYmVsPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxwIGNsYXNzPSJkYXRldGltZSI+RGF0ZTogPGlucHV0IGNsYXNzPSJ2RGF0ZUZpZWxkIiBpZD0iaWRfZGF0ZV9qb2luZWRfMCIgbmFtZT0iZGF0ZV9qb2luZWRfMCIgc2l6ZT0iMTAiIHR5cGU9InRleHQiIHZhbHVlPSIyMDE3LTAzLTI3IiByZXF1aXJlZCAvPjxiciAvPlRpbWU6IDxpbnB1dCBjbGFzcz0idlRpbWVGaWVsZCIgaWQ9ImlkX2RhdGVfam9pbmVkXzEiIG5hbWU9ImRhdGVfam9pbmVkXzEiIHNpemU9IjgiIHR5cGU9InRleHQiIHZhbHVlPSIxNDo1NTowOSIgcmVxdWlyZWQgLz48L3A+PGlucHV0IGlkPSJpbml0aWFsLWlkX2RhdGVfam9pbmVkXzAiIG5hbWU9ImluaXRpYWwtZGF0ZV9qb2luZWRfMCIgdHlwZT0iaGlkZGVuIiB2YWx1ZT0iMjAxNy0wMy0yNyIgLz48aW5wdXQgaWQ9ImluaXRpYWwtaWRfZGF0ZV9qb2luZWRfMSIgbmFtZT0iaW5pdGlhbC1kYXRlX2pvaW5lZF8xIiB0eXBlPSJoaWRkZW4iIHZhbHVlPSIxNDo1NTowOSIgLz4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKPC9maWVsZHNldD4KCgoKCgoKCgoKCgoKCjxkaXYgY2xhc3M9InN1Ym1pdC1yb3ciPgo8aW5wdXQgdHlwZT0ic3VibWl0IiB2YWx1ZT0iU2F2ZSIgY2xhc3M9ImRlZmF1bHQiIG5hbWU9Il9zYXZlIiAvPgoKICAgIAogICAgPHAgY2xhc3M9ImRlbGV0ZWxpbmstYm94Ij48YSBocmVmPSIvYWRtaW4vYXV0aC91c2VyLzQvZGVsZXRlLyIgY2xhc3M9ImRlbGV0ZWxpbmsiPkRlbGV0ZTwvYT48L3A+CgoKPGlucHV0IHR5cGU9InN1Ym1pdCIgdmFsdWU9IlNhdmUgYW5kIGFkZCBhbm90aGVyIiBuYW1lPSJfYWRkYW5vdGhlciIgLz4KPGlucHV0IHR5cGU9InN1Ym1pdCIgdmFsdWU9IlNhdmUgYW5kIGNvbnRpbnVlIGVkaXRpbmciIG5hbWU9Il9jb250aW51ZSIgLz4KPC9kaXY+CgoKCiAgICA8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIKICAgICAgICAgICAgaWQ9ImRqYW5nby1hZG1pbi1mb3JtLWFkZC1jb25zdGFudHMiCiAgICAgICAgICAgIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9jaGFuZ2VfZm9ybS5qcyIKICAgICAgICAgICAgPgogICAgPC9zY3JpcHQ+CgoKCgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIKICAgICAgICBpZD0iZGphbmdvLWFkbWluLXByZXBvcHVsYXRlZC1maWVsZHMtY29uc3RhbnRzIgogICAgICAgIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9wcmVwb3B1bGF0ZV9pbml0LmpzIgogICAgICAgIGRhdGEtcHJlcG9wdWxhdGVkLWZpZWxkcz0iW10iPgo8L3NjcmlwdD4KCgo8L2Rpdj4KPC9mb3JtPjwvZGl2PgoKICAgICAgICAKICAgICAgICA8YnIgY2xhc3M9ImNsZWFyIiAvPgogICAgPC9kaXY+CiAgICA8IS0tIEVORCBDb250ZW50IC0tPgoKICAgIDxkaXYgaWQ9ImZvb3RlciI+PC9kaXY+CjwvZGl2Pgo8IS0tIEVORCBDb250YWluZXIgLS0+Cgo8L2JvZHk+CjwvaHRtbD4K", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 14:55:09 GMT\", \"Expires\": \"Mon, 27 Mar 2017 14:55:09 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "2bcb2e34-70e5-4ee4-829f-a40bbd8c6939", - "fields": { - "request": "5d854890-b0c8-449d-b3c1-270673eec6b3", - "status_code": 302, - "raw_body": "", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Location\": \"/admin/auth/user/4/change/\", \"Last-Modified\": \"Mon, 27 Mar 2017 14:55:09 GMT\", \"Expires\": \"Mon, 27 Mar 2017 14:55:09 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\"}" - } -}, -{ - "model": "silk.response", - "pk": "2c2a3f45-5f5d-44b0-84ce-a3516a25dccb", - "fields": { - "request": "7d2e656f-76e4-47db-962a-98dc68b799fc", - "status_code": 200, - "raw_body": "W3siaWQiOjEsImNvbXBhbnkiOnsiaWQiOjIsInVzZXIiOnsidXJsIjoiaHR0cDovLzEyNy4wLjAuMTo4MDAwL2FwaS91c2Vycy8zLyIsInVzZXJuYW1lIjoiZmFyaGFuY29ycCIsImVtYWlsIjoiIiwiaXNfc3RhZmYiOmZhbHNlfSwibmFtZSI6ImZhcmhhbmNvcnAiLCJjcmVhdGVkIjoiMjAxNy0wMy0yN1QxNDo1NTo0NC42NzkwMDBaIiwidXBkYXRlZCI6IjIwMTctMDMtMjdUMTQ6NTU6NDQuNjc5MDAwWiIsImRlc2NyaXB0aW9uIjoiZmFyaGFuY29ycCIsInZlcmlmaWVkIjpmYWxzZSwibG9nbyI6bnVsbCwiYWxhbWF0IjpudWxsfSwidmVyaWZpZWQiOmZhbHNlLCJvcGVuX3RpbWUiOiIyMDE3LTAzLTI3VDE1OjIzOjIwWiIsImRlc2NyaXB0aW9uIjoiIiwiY2xvc2VfdGltZSI6IjIwMTctMDMtMjdUMTU6MjM6MjJaIn1d", - "body": "[\n {\n \"close_time\": \"2017-03-27T15:23:22Z\",\n \"company\": {\n \"alamat\": null,\n \"created\": \"2017-03-27T14:55:44.679000Z\",\n \"description\": \"farhancorp\",\n \"id\": 2,\n \"logo\": null,\n \"name\": \"farhancorp\",\n \"updated\": \"2017-03-27T14:55:44.679000Z\",\n \"user\": {\n \"email\": \"\",\n \"is_staff\": false,\n \"url\": \"http://127.0.0.1:8000/api/users/3/\",\n \"username\": \"farhancorp\"\n },\n \"verified\": false\n },\n \"description\": \"\",\n \"id\": 1,\n \"open_time\": \"2017-03-27T15:23:20Z\",\n \"verified\": false\n }\n]", - "encoded_headers": "{\"Content-Type\": \"application/json\", \"Allow\": \"GET, POST, OPTIONS\", \"Vary\": \"Accept\"}" - } -}, -{ - "model": "silk.response", - "pk": "2e0cef43-1398-437c-a034-77f4ce35bdd4", - "fields": { - "request": "4457e90b-4047-4101-ac15-1ebe431cd0de", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "2e340996-e639-4c50-b723-8a75dfc4d53e", - "fields": { - "request": "508b3b0d-56ed-4cdf-a1fb-435c2b71afd5", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "2e646876-03c2-4b7f-be74-e44d77de48ee", - "fields": { - "request": "f735a214-6668-4362-8659-12759001fbfb", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "2eabfe03-f2ce-4fb5-9d29-cd1b13a8bd22", - "fields": { - "request": "74f2dbd0-df87-4e41-be04-b72b70442705", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "2ebf4303-4b63-4d48-a546-dd88ff1eacd1", - "fields": { - "request": "7147d488-61f8-45b0-9bf0-ce3469bec58c", - "status_code": 500, - "raw_body": "QXR0cmlidXRlRXJyb3IgYXQgL2FwaS9zdHVkZW50cy8zL2Jvb2ttYXJrZWQtdmFjYW5jaWVzLwonZGljdCcgb2JqZWN0IGhhcyBubyBhdHRyaWJ1dGUgJ2lkJwoKUmVxdWVzdCBNZXRob2Q6IFBPU1QKUmVxdWVzdCBVUkw6IGh0dHA6Ly8xMjcuMC4wLjE6ODAwMC9hcGkvc3R1ZGVudHMvMy9ib29rbWFya2VkLXZhY2FuY2llcy8KRGphbmdvIFZlcnNpb246IDEuMTAuNQpQeXRob24gRXhlY3V0YWJsZTogQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXHB5dGhvbi5leGUKUHl0aG9uIFZlcnNpb246IDMuNi4wClB5dGhvbiBQYXRoOiBbJ0Q6XFxQUExBJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXHB5dGhvbjM2LnppcCcsICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyXFxETExzJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXGxpYicsICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXGxpYlxcc2l0ZS1wYWNrYWdlcyddClNlcnZlciB0aW1lOiBNb24sIDI3IE1hciAyMDE3IDE1OjQ4OjQzICswMDAwCkluc3RhbGxlZCBBcHBsaWNhdGlvbnM6ClsnZGphbmdvLmNvbnRyaWIuYWRtaW4nLAogJ2RqYW5nby5jb250cmliLmF1dGgnLAogJ2RqYW5nby5jb250cmliLmNvbnRlbnR0eXBlcycsCiAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMnLAogJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzJywKICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcycsCiAnd2VicGFja19sb2FkZXInLAogJ2NvcmUnLAogJ3Jlc3RfZnJhbWV3b3JrJywKICdkamFuZ29fbm9zZScsCiAncmVzdF9mcmFtZXdvcmtfc3dhZ2dlcicsCiAnc2lsayddCkluc3RhbGxlZCBNaWRkbGV3YXJlOgpbJ2RqYW5nby5taWRkbGV3YXJlLnNlY3VyaXR5LlNlY3VyaXR5TWlkZGxld2FyZScsCiAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMubWlkZGxld2FyZS5TZXNzaW9uTWlkZGxld2FyZScsCiAnZGphbmdvLm1pZGRsZXdhcmUuY29tbW9uLkNvbW1vbk1pZGRsZXdhcmUnLAogJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5hdXRoLm1pZGRsZXdhcmUuQXV0aGVudGljYXRpb25NaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5tZXNzYWdlcy5taWRkbGV3YXJlLk1lc3NhZ2VNaWRkbGV3YXJlJywKICdkamFuZ28ubWlkZGxld2FyZS5jbGlja2phY2tpbmcuWEZyYW1lT3B0aW9uc01pZGRsZXdhcmUnLAogJ3NpbGsubWlkZGxld2FyZS5TaWxreU1pZGRsZXdhcmUnXQoKClRyYWNlYmFjazogIAoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXGRqYW5nb1xjb3JlXGhhbmRsZXJzXGV4Y2VwdGlvbi5weSIgaW4gaW5uZXIKICAzOS4gICAgICAgICAgICAgcmVzcG9uc2UgPSBnZXRfcmVzcG9uc2UocmVxdWVzdCkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cY29yZVxoYW5kbGVyc1xiYXNlLnB5IiBpbiBfZ2V0X3Jlc3BvbnNlCiAgMTg3LiAgICAgICAgICAgICAgICAgcmVzcG9uc2UgPSBzZWxmLnByb2Nlc3NfZXhjZXB0aW9uX2J5X21pZGRsZXdhcmUoZSwgcmVxdWVzdCkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cY29yZVxoYW5kbGVyc1xiYXNlLnB5IiBpbiBfZ2V0X3Jlc3BvbnNlCiAgMTg1LiAgICAgICAgICAgICAgICAgcmVzcG9uc2UgPSB3cmFwcGVkX2NhbGxiYWNrKHJlcXVlc3QsICpjYWxsYmFja19hcmdzLCAqKmNhbGxiYWNrX2t3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cdmlld3NcZGVjb3JhdG9yc1xjc3JmLnB5IiBpbiB3cmFwcGVkX3ZpZXcKICA1OC4gICAgICAgICByZXR1cm4gdmlld19mdW5jKCphcmdzLCAqKmt3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3c2V0cy5weSIgaW4gdmlldwogIDgzLiAgICAgICAgICAgICByZXR1cm4gc2VsZi5kaXNwYXRjaChyZXF1ZXN0LCAqYXJncywgKiprd2FyZ3MpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNccmVzdF9mcmFtZXdvcmtcdmlld3MucHkiIGluIGRpc3BhdGNoCiAgNDgzLiAgICAgICAgICAgICByZXNwb25zZSA9IHNlbGYuaGFuZGxlX2V4Y2VwdGlvbihleGMpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNccmVzdF9mcmFtZXdvcmtcdmlld3MucHkiIGluIGhhbmRsZV9leGNlcHRpb24KICA0NDMuICAgICAgICAgICAgIHNlbGYucmFpc2VfdW5jYXVnaHRfZXhjZXB0aW9uKGV4YykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3cy5weSIgaW4gZGlzcGF0Y2gKICA0ODAuICAgICAgICAgICAgIHJlc3BvbnNlID0gaGFuZGxlcihyZXF1ZXN0LCAqYXJncywgKiprd2FyZ3MpCgpGaWxlICJEOlxQUExBXGNvcmVcdmlld3NcYWNjb3VudHMucHkiIGluIGJvb2ttYXJrX3ZhY2FuY2llcwogIDMwLiAgICAgICAgIHZhY2FuY3kgPSBnZXRfb2JqZWN0X29yXzQwNChWYWNhbmN5Lm9iamVjdHMuYWxsKCksIHBrPXJlcXVlc3QuZGF0YS5pZCkKCkV4Y2VwdGlvbiBUeXBlOiBBdHRyaWJ1dGVFcnJvciBhdCAvYXBpL3N0dWRlbnRzLzMvYm9va21hcmtlZC12YWNhbmNpZXMvCkV4Y2VwdGlvbiBWYWx1ZTogJ2RpY3QnIG9iamVjdCBoYXMgbm8gYXR0cmlidXRlICdpZCcKUmVxdWVzdCBpbmZvcm1hdGlvbjoKVVNFUjoga2FwZQoKR0VUOiBObyBHRVQgZGF0YQoKUE9TVDogTm8gUE9TVCBkYXRhCgpGSUxFUzogTm8gRklMRVMgZGF0YQoKQ09PS0lFUzoKc2Vzc2lvbmlkID0gJ2JsdDg3N2c1ZmptdWN4eTNkZDV1eGNpemF2YjlvcG92Jwpjc3JmdG9rZW4gPSAnMUVFUDJTd0t0MUs5UWJXbkZQU3lXUElpYnRPN01BYVZxS0xFZW9vRmdZVnlkallQb2duME93cDI5b1VXNkE2SycKCk1FVEE6CkFMTFVTRVJTUFJPRklMRSA9ICdDOlxcUHJvZ3JhbURhdGEnCkFQUERBVEEgPSAnQzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmcnCkNPTU1PTlBST0dSQU1GSUxFUyA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcQ29tbW9uIEZpbGVzJwpDT01NT05QUk9HUkFNRklMRVMoWDg2KSA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcQ29tbW9uIEZpbGVzJwpDT01NT05QUk9HUkFNVzY0MzIgPSAnQzpcXFByb2dyYW0gRmlsZXNcXENvbW1vbiBGaWxlcycKQ09NUFVURVJOQU1FID0gJ0ZBUkhBTicKQ09NU1BFQyA9ICdDOlxcV0lORE9XU1xcc3lzdGVtMzJcXGNtZC5leGUnCkNPTlRFTlRfTEVOR1RIID0gJzEyOCcKQ09OVEVOVF9UWVBFID0gJ2FwcGxpY2F0aW9uL2pzb24nCkNTUkZfQ09PS0lFID0gJzFFRVAyU3dLdDFLOVFiV25GUFN5V1BJaWJ0TzdNQWFWcUtMRWVvb0ZnWVZ5ZGpZUG9nbjBPd3AyOW9VVzZBNksnCkRKQU5HT19TRVRUSU5HU19NT0RVTEUgPSAna2FwZS5zZXR0aW5ncycKRlBTX0JST1dTRVJfQVBQX1BST0ZJTEVfU1RSSU5HID0gJ0ludGVybmV0IEV4cGxvcmVyJwpGUFNfQlJPV1NFUl9VU0VSX1BST0ZJTEVfU1RSSU5HID0gJ0RlZmF1bHQnCkZQX05PX0hPU1RfQ0hFQ0sgPSAnTk8nCkdBVEVXQVlfSU5URVJGQUNFID0gJ0NHSS8xLjEnCkhPTUVEUklWRSA9ICdDOicKSE9NRVBBVEggPSAnXFxVc2Vyc1xcZmFyaGFfMDAwJwpIVFRQX0FDQ0VQVCA9ICdhcHBsaWNhdGlvbi9qc29uJwpIVFRQX0FDQ0VQVF9FTkNPRElORyA9ICdnemlwLCBkZWZsYXRlLCBicicKSFRUUF9BQ0NFUFRfTEFOR1VBR0UgPSAnaWQtSUQsaWQ7cT0wLjgsZW4tVVM7cT0wLjYsZW47cT0wLjQnCkhUVFBfQ09OTkVDVElPTiA9ICdrZWVwLWFsaXZlJwpIVFRQX0NPT0tJRSA9ICdzZXNzaW9uaWQ9Ymx0ODc3ZzVmam11Y3h5M2RkNXV4Y2l6YXZiOW9wb3Y7IGNzcmZ0b2tlbj0xRUVQMlN3S3QxSzlRYlduRlBTeVdQSWlidE83TUFhVnFLTEVlb29GZ1lWeWRqWVBvZ24wT3dwMjlvVVc2QTZLJwpIVFRQX0hPU1QgPSAnMTI3LjAuMC4xOjgwMDAnCkhUVFBfT1JJR0lOID0gJ2h0dHA6Ly8xMjcuMC4wLjE6ODAwMCcKSFRUUF9SRUZFUkVSID0gJ2h0dHA6Ly8xMjcuMC4wLjE6ODAwMC9hcGknCkhUVFBfVVNFUl9BR0VOVCA9ICdNb3ppbGxhLzUuMCAoV2luZG93cyBOVCAxMC4wOyBXT1c2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzU2LjAuMjkyNC44NyBTYWZhcmkvNTM3LjM2JwpIVFRQX1hfQ1NSRlRPS0VOID0gJ2pxOTFCdUY1ZTVSN1NqTUZSYzJUTmZ2V1U4bERPNnd5SXdnUU4weDAxMjJ3ZnJPN0FEeGxGV2NHUzNyczg2c24nCkxPQ0FMQVBQREFUQSA9ICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWwnCkxPR09OU0VSVkVSID0gJ1xcXFxGQVJIQU4nCk5VTUJFUl9PRl9QUk9DRVNTT1JTID0gJzInCk9ORURSSVZFID0gJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxPbmVEcml2ZScKT1MgPSAnV2luZG93c19OVCcKUEFUSCA9ICdDOlxcUHJvZ3JhbURhdGFcXE9yYWNsZVxcSmF2YVxcamF2YXBhdGg7QzpcXFByb2dyYW0gRmlsZXNcXEhhc2tlbGxcXGJpbjtDOlxcUHJvZ3JhbSBGaWxlc1xcSGFza2VsbCBQbGF0Zm9ybVxcNy4xMC4zXFxsaWJcXGV4dHJhbGlic1xcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxIYXNrZWxsIFBsYXRmb3JtXFw3LjEwLjNcXGJpbjtDOlxcV0lORE9XU1xcc3lzdGVtMzI7QzpcXFdJTkRPV1M7QzpcXFdJTkRPV1NcXFN5c3RlbTMyXFxXYmVtO0M6XFxXSU5ET1dTXFxTeXN0ZW0zMlxcV2luZG93c1Bvd2VyU2hlbGxcXHYxLjBcXDtDOlxcUHJvZ3JhbSBGaWxlc1xcSGFza2VsbCBQbGF0Zm9ybVxcNy4xMC4zXFxtaW5nd1xcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxKYXZhXFxqZGsxLjguMF83N1xcYmluO0M6XFxjeWd3aW42NFxcYmluOyVsb2NhbGFwcGRhdGElXFxNaWNyb3NvZnRcXFdpbmRvd3NBcHBzO0Q6XFxYQU1QUFxccGhwO0M6XFxQcm9ncmFtIEZpbGVzXFxHaXRcXGNtZDtDOlxceGFtcHBcXHBocDtDOlxcUHJvZ3JhbURhdGFcXENvbXBvc2VyU2V0dXBcXGJpbjtDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcbm9kZWpzXFw7QzpcXFByb2dyYW0gRmlsZXNcXFBvc3RncmVTUUxcXDkuNlxcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxNQVRMQUJcXFIyMDE3YVxcYmluO0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXFNjcmlwdHNcXDtDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyXFw7QzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmdcXGNhYmFsXFxiaW47RDpcXFhBTVBQXFxwaHA7QzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmdcXENvbXBvc2VyXFx2ZW5kb3JcXGJpbjtDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXE1pY3Jvc29mdFxcV2luZG93c0FwcHM7QzpcXHB5dGhvbi0zLjYuMCcKUEFUSEVYVCA9ICcuQ09NOy5FWEU7LkJBVDsuQ01EOy5WQlM7LlZCRTsuSlM7LkpTRTsuV1NGOy5XU0g7Lk1TQycKUEFUSF9JTkZPID0gJy9hcGkvc3R1ZGVudHMvMy9ib29rbWFya2VkLXZhY2FuY2llcy8nClBST0NFU1NPUl9BUkNISVRFQ1RVUkUgPSAneDg2JwpQUk9DRVNTT1JfQVJDSElURVc2NDMyID0gJ0FNRDY0JwpQUk9DRVNTT1JfSURFTlRJRklFUiA9ICdJbnRlbDY0IEZhbWlseSA2IE1vZGVsIDU4IFN0ZXBwaW5nIDksIEdlbnVpbmVJbnRlbCcKUFJPQ0VTU09SX0xFVkVMID0gJzYnClBST0NFU1NPUl9SRVZJU0lPTiA9ICczYTA5JwpQUk9HUkFNREFUQSA9ICdDOlxcUHJvZ3JhbURhdGEnClBST0dSQU1GSUxFUyA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KScKUFJPR1JBTUZJTEVTKFg4NikgPSAnQzpcXFByb2dyYW0gRmlsZXMgKHg4NiknClBST0dSQU1XNjQzMiA9ICdDOlxcUHJvZ3JhbSBGaWxlcycKUFJPTVBUID0gJyRQJEcnClBTTU9EVUxFUEFUSCA9ICdDOlxcV0lORE9XU1xcc3lzdGVtMzJcXFdpbmRvd3NQb3dlclNoZWxsXFx2MS4wXFxNb2R1bGVzXFwnClBVQkxJQyA9ICdDOlxcVXNlcnNcXFB1YmxpYycKUVVFUllfU1RSSU5HID0gJycKUkVNT1RFX0FERFIgPSAnMTI3LjAuMC4xJwpSRU1PVEVfSE9TVCA9ICcnClJFUVVFU1RfTUVUSE9EID0gJ1BPU1QnClJVTl9NQUlOID0gJ3RydWUnClNDUklQVF9OQU1FID0gJycKU0VSVkVSX05BTUUgPSAnRmFyaGFuJwpTRVJWRVJfUE9SVCA9ICc4MDAwJwpTRVJWRVJfUFJPVE9DT0wgPSAnSFRUUC8xLjEnClNFUlZFUl9TT0ZUV0FSRSA9ICdXU0dJU2VydmVyLzAuMicKU0VTU0lPTk5BTUUgPSAnQ29uc29sZScKU1lTVEVNRFJJVkUgPSAnQzonClNZU1RFTVJPT1QgPSAnQzpcXFdJTkRPV1MnClRFTVAgPSAnQzpcXFVzZXJzXFxGQVJIQV9+MVxcQXBwRGF0YVxcTG9jYWxcXFRlbXAnClRNUCA9ICdDOlxcVXNlcnNcXEZBUkhBX34xXFxBcHBEYXRhXFxMb2NhbFxcVGVtcCcKVVNFUkRPTUFJTiA9ICdGYXJoYW4nClVTRVJET01BSU5fUk9BTUlOR1BST0ZJTEUgPSAnRmFyaGFuJwpVU0VSTkFNRSA9ICdGYXJoYW4gRmFyYXNkYWsnClVTRVJQUk9GSUxFID0gJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwJwpWQk9YX01TSV9JTlNUQUxMX1BBVEggPSAnQzpcXFByb2dyYW0gRmlsZXNcXE9yYWNsZVxcVmlydHVhbEJveFxcJwpXSU5ESVIgPSAnQzpcXFdJTkRPV1MnCndzZ2kuZXJyb3JzID0gPF9pby5UZXh0SU9XcmFwcGVyIG5hbWU9JzxzdGRlcnI+JyBtb2RlPSd3JyBlbmNvZGluZz0ndXRmLTgnPgp3c2dpLmZpbGVfd3JhcHBlciA9ICcnCndzZ2kuaW5wdXQgPSA8X2lvLkJ1ZmZlcmVkUmVhZGVyIG5hbWU9MTAzNj4Kd3NnaS5tdWx0aXByb2Nlc3MgPSBGYWxzZQp3c2dpLm11bHRpdGhyZWFkID0gVHJ1ZQp3c2dpLnJ1bl9vbmNlID0gRmFsc2UKd3NnaS51cmxfc2NoZW1lID0gJ2h0dHAnCndzZ2kudmVyc2lvbiA9IAoKU2V0dGluZ3M6ClVzaW5nIHNldHRpbmdzIG1vZHVsZSBrYXBlLnNldHRpbmdzCkFCU09MVVRFX1VSTF9PVkVSUklERVMgPSB7fQpBRE1JTlMgPSBbXQpBTExPV0VEX0hPU1RTID0gWydib3QucmVjcnVpdC5pZCcsICcxMDQuMjM2Ljc2LjE2MScsICdsb2NhbGhvc3QnLCAnMTI3LjAuMC4xJ10KQVBQRU5EX1NMQVNIID0gVHJ1ZQpBVVRIRU5USUNBVElPTl9CQUNLRU5EUyA9IFsnZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQnXQpBVVRIX1BBU1NXT1JEX1ZBTElEQVRPUlMgPSAnKioqKioqKioqKioqKioqKioqKionCkFVVEhfVVNFUl9NT0RFTCA9ICdhdXRoLlVzZXInCkJBU0VfRElSID0gJ0Q6XFxQUExBJwpDQUNIRVMgPSB7J2RlZmF1bHQnOiB7J0JBQ0tFTkQnOiAnZGphbmdvLmNvcmUuY2FjaGUuYmFja2VuZHMubG9jbWVtLkxvY01lbUNhY2hlJ319CkNBQ0hFX01JRERMRVdBUkVfQUxJQVMgPSAnZGVmYXVsdCcKQ0FDSEVfTUlERExFV0FSRV9LRVlfUFJFRklYID0gJyoqKioqKioqKioqKioqKioqKioqJwpDQUNIRV9NSURETEVXQVJFX1NFQ09ORFMgPSA2MDAKQ1NSRl9DT09LSUVfQUdFID0gMzE0NDk2MDAKQ1NSRl9DT09LSUVfRE9NQUlOID0gTm9uZQpDU1JGX0NPT0tJRV9IVFRQT05MWSA9IEZhbHNlCkNTUkZfQ09PS0lFX05BTUUgPSAnY3NyZnRva2VuJwpDU1JGX0NPT0tJRV9QQVRIID0gJy8nCkNTUkZfQ09PS0lFX1NFQ1VSRSA9IEZhbHNlCkNTUkZfRkFJTFVSRV9WSUVXID0gJ2RqYW5nby52aWV3cy5jc3JmLmNzcmZfZmFpbHVyZScKQ1NSRl9IRUFERVJfTkFNRSA9ICdIVFRQX1hfQ1NSRlRPS0VOJwpDU1JGX1RSVVNURURfT1JJR0lOUyA9IFtdCkRBVEFCQVNFUyA9IHsnZGVmYXVsdCc6IHsnRU5HSU5FJzogJ2RqYW5nby5kYi5iYWNrZW5kcy5wb3N0Z3Jlc3FsX3BzeWNvcGcyJywgJ05BTUUnOiAna2FwZScsICdVU0VSJzogJ2thcGUnLCAnUEFTU1dPUkQnOiAnKioqKioqKioqKioqKioqKioqKionLCAnSE9TVCc6ICdsb2NhbGhvc3QnLCAnUE9SVCc6ICcnLCAnQVRPTUlDX1JFUVVFU1RTJzogRmFsc2UsICdBVVRPQ09NTUlUJzogVHJ1ZSwgJ0NPTk5fTUFYX0FHRSc6IDAsICdPUFRJT05TJzoge30sICdUSU1FX1pPTkUnOiBOb25lLCAnVEVTVCc6IHsnQ0hBUlNFVCc6IE5vbmUsICdDT0xMQVRJT04nOiBOb25lLCAnTkFNRSc6IE5vbmUsICdNSVJST1InOiBOb25lfX19CkRBVEFCQVNFX1JPVVRFUlMgPSBbXQpEQVRBX1VQTE9BRF9NQVhfTUVNT1JZX1NJWkUgPSAyNjIxNDQwCkRBVEFfVVBMT0FEX01BWF9OVU1CRVJfRklFTERTID0gMTAwMApEQVRFVElNRV9GT1JNQVQgPSAnTiBqLCBZLCBQJwpEQVRFVElNRV9JTlBVVF9GT1JNQVRTID0gWyclWS0lbS0lZCAlSDolTTolUycsICclWS0lbS0lZCAlSDolTTolUy4lZicsICclWS0lbS0lZCAlSDolTScsICclWS0lbS0lZCcsICclbS8lZC8lWSAlSDolTTolUycsICclbS8lZC8lWSAlSDolTTolUy4lZicsICclbS8lZC8lWSAlSDolTScsICclbS8lZC8lWScsICclbS8lZC8leSAlSDolTTolUycsICclbS8lZC8leSAlSDolTTolUy4lZicsICclbS8lZC8leSAlSDolTScsICclbS8lZC8leSddCkRBVEVfRk9STUFUID0gJ04gaiwgWScKREFURV9JTlBVVF9GT1JNQVRTID0gWyclWS0lbS0lZCcsICclbS8lZC8lWScsICclbS8lZC8leScsICclYiAlZCAlWScsICclYiAlZCwgJVknLCAnJWQgJWIgJVknLCAnJWQgJWIsICVZJywgJyVCICVkICVZJywgJyVCICVkLCAlWScsICclZCAlQiAlWScsICclZCAlQiwgJVknXQpERUJVRyA9IFRydWUKREVCVUdfUFJPUEFHQVRFX0VYQ0VQVElPTlMgPSBGYWxzZQpERUNJTUFMX1NFUEFSQVRPUiA9ICcuJwpERUZBVUxUX0NIQVJTRVQgPSAndXRmLTgnCkRFRkFVTFRfQ09OVEVOVF9UWVBFID0gJ3RleHQvaHRtbCcKREVGQVVMVF9FWENFUFRJT05fUkVQT1JURVJfRklMVEVSID0gJ2RqYW5nby52aWV3cy5kZWJ1Zy5TYWZlRXhjZXB0aW9uUmVwb3J0ZXJGaWx0ZXInCkRFRkFVTFRfRklMRV9TVE9SQUdFID0gJ2RqYW5nby5jb3JlLmZpbGVzLnN0b3JhZ2UuRmlsZVN5c3RlbVN0b3JhZ2UnCkRFRkFVTFRfRlJPTV9FTUFJTCA9ICd3ZWJtYXN0ZXJAbG9jYWxob3N0JwpERUZBVUxUX0lOREVYX1RBQkxFU1BBQ0UgPSAnJwpERUZBVUxUX1RBQkxFU1BBQ0UgPSAnJwpESVNBTExPV0VEX1VTRVJfQUdFTlRTID0gW10KRU1BSUxfQkFDS0VORCA9ICdkamFuZ28uY29yZS5tYWlsLmJhY2tlbmRzLnNtdHAuRW1haWxCYWNrZW5kJwpFTUFJTF9IT1NUID0gJ2xvY2FsaG9zdCcKRU1BSUxfSE9TVF9QQVNTV09SRCA9ICcqKioqKioqKioqKioqKioqKioqKicKRU1BSUxfSE9TVF9VU0VSID0gJycKRU1BSUxfUE9SVCA9IDI1CkVNQUlMX1NTTF9DRVJURklMRSA9IE5vbmUKRU1BSUxfU1NMX0tFWUZJTEUgPSAnKioqKioqKioqKioqKioqKioqKionCkVNQUlMX1NVQkpFQ1RfUFJFRklYID0gJ1tEamFuZ29dICcKRU1BSUxfVElNRU9VVCA9IE5vbmUKRU1BSUxfVVNFX1NTTCA9IEZhbHNlCkVNQUlMX1VTRV9UTFMgPSBGYWxzZQpGSUxFX0NIQVJTRVQgPSAndXRmLTgnCkZJTEVfVVBMT0FEX0RJUkVDVE9SWV9QRVJNSVNTSU9OUyA9IE5vbmUKRklMRV9VUExPQURfSEFORExFUlMgPSBbJ2RqYW5nby5jb3JlLmZpbGVzLnVwbG9hZGhhbmRsZXIuTWVtb3J5RmlsZVVwbG9hZEhhbmRsZXInLCAnZGphbmdvLmNvcmUuZmlsZXMudXBsb2FkaGFuZGxlci5UZW1wb3JhcnlGaWxlVXBsb2FkSGFuZGxlciddCkZJTEVfVVBMT0FEX01BWF9NRU1PUllfU0laRSA9IDI2MjE0NDAKRklMRV9VUExPQURfUEVSTUlTU0lPTlMgPSBOb25lCkZJTEVfVVBMT0FEX1RFTVBfRElSID0gTm9uZQpGSVJTVF9EQVlfT0ZfV0VFSyA9IDAKRklYVFVSRV9ESVJTID0gW10KRk9SQ0VfU0NSSVBUX05BTUUgPSBOb25lCkZPUk1BVF9NT0RVTEVfUEFUSCA9IE5vbmUKR1pJUF9DT05URU5UX1RZUEVTID0gCklHTk9SQUJMRV80MDRfVVJMUyA9IFtdCklOU1RBTExFRF9BUFBTID0gWydkamFuZ28uY29udHJpYi5hZG1pbicsICdkamFuZ28uY29udHJpYi5hdXRoJywgJ2RqYW5nby5jb250cmliLmNvbnRlbnR0eXBlcycsICdkamFuZ28uY29udHJpYi5zZXNzaW9ucycsICdkamFuZ28uY29udHJpYi5tZXNzYWdlcycsICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcycsICd3ZWJwYWNrX2xvYWRlcicsICdjb3JlJywgJ3Jlc3RfZnJhbWV3b3JrJywgJ2RqYW5nb19ub3NlJywgJ3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXInLCAnc2lsayddCklOVEVSTkFMX0lQUyA9IFtdCkxBTkdVQUdFUyA9IFsoJ2FmJywgJ0FmcmlrYWFucycpLCAoJ2FyJywgJ0FyYWJpYycpLCAoJ2FzdCcsICdBc3R1cmlhbicpLCAoJ2F6JywgJ0F6ZXJiYWlqYW5pJyksICgnYmcnLCAnQnVsZ2FyaWFuJyksICgnYmUnLCAnQmVsYXJ1c2lhbicpLCAoJ2JuJywgJ0JlbmdhbGknKSwgKCdicicsICdCcmV0b24nKSwgKCdicycsICdCb3NuaWFuJyksICgnY2EnLCAnQ2F0YWxhbicpLCAoJ2NzJywgJ0N6ZWNoJyksICgnY3knLCAnV2Vsc2gnKSwgKCdkYScsICdEYW5pc2gnKSwgKCdkZScsICdHZXJtYW4nKSwgKCdkc2InLCAnTG93ZXIgU29yYmlhbicpLCAoJ2VsJywgJ0dyZWVrJyksICgnZW4nLCAnRW5nbGlzaCcpLCAoJ2VuLWF1JywgJ0F1c3RyYWxpYW4gRW5nbGlzaCcpLCAoJ2VuLWdiJywgJ0JyaXRpc2ggRW5nbGlzaCcpLCAoJ2VvJywgJ0VzcGVyYW50bycpLCAoJ2VzJywgJ1NwYW5pc2gnKSwgKCdlcy1hcicsICdBcmdlbnRpbmlhbiBTcGFuaXNoJyksICgnZXMtY28nLCAnQ29sb21iaWFuIFNwYW5pc2gnKSwgKCdlcy1teCcsICdNZXhpY2FuIFNwYW5pc2gnKSwgKCdlcy1uaScsICdOaWNhcmFndWFuIFNwYW5pc2gnKSwgKCdlcy12ZScsICdWZW5lenVlbGFuIFNwYW5pc2gnKSwgKCdldCcsICdFc3RvbmlhbicpLCAoJ2V1JywgJ0Jhc3F1ZScpLCAoJ2ZhJywgJ1BlcnNpYW4nKSwgKCdmaScsICdGaW5uaXNoJyksICgnZnInLCAnRnJlbmNoJyksICgnZnknLCAnRnJpc2lhbicpLCAoJ2dhJywgJ0lyaXNoJyksICgnZ2QnLCAnU2NvdHRpc2ggR2FlbGljJyksICgnZ2wnLCAnR2FsaWNpYW4nKSwgKCdoZScsICdIZWJyZXcnKSwgKCdoaScsICdIaW5kaScpLCAoJ2hyJywgJ0Nyb2F0aWFuJyksICgnaHNiJywgJ1VwcGVyIFNvcmJpYW4nKSwgKCdodScsICdIdW5nYXJpYW4nKSwgKCdpYScsICdJbnRlcmxpbmd1YScpLCAoJ2lkJywgJ0luZG9uZXNpYW4nKSwgKCdpbycsICdJZG8nKSwgKCdpcycsICdJY2VsYW5kaWMnKSwgKCdpdCcsICdJdGFsaWFuJyksICgnamEnLCAnSmFwYW5lc2UnKSwgKCdrYScsICdHZW9yZ2lhbicpLCAoJ2trJywgJ0themFraCcpLCAoJ2ttJywgJ0tobWVyJyksICgna24nLCAnS2FubmFkYScpLCAoJ2tvJywgJ0tvcmVhbicpLCAoJ2xiJywgJ0x1eGVtYm91cmdpc2gnKSwgKCdsdCcsICdMaXRodWFuaWFuJyksICgnbHYnLCAnTGF0dmlhbicpLCAoJ21rJywgJ01hY2Vkb25pYW4nKSwgKCdtbCcsICdNYWxheWFsYW0nKSwgKCdtbicsICdNb25nb2xpYW4nKSwgKCdtcicsICdNYXJhdGhpJyksICgnbXknLCAnQnVybWVzZScpLCAoJ25iJywgJ05vcndlZ2lhbiBCb2ttw6VsJyksICgnbmUnLCAnTmVwYWxpJyksICgnbmwnLCAnRHV0Y2gnKSwgKCdubicsICdOb3J3ZWdpYW4gTnlub3JzaycpLCAoJ29zJywgJ09zc2V0aWMnKSwgKCdwYScsICdQdW5qYWJpJyksICgncGwnLCAnUG9saXNoJyksICgncHQnLCAnUG9ydHVndWVzZScpLCAoJ3B0LWJyJywgJ0JyYXppbGlhbiBQb3J0dWd1ZXNlJyksICgncm8nLCAnUm9tYW5pYW4nKSwgKCdydScsICdSdXNzaWFuJyksICgnc2snLCAnU2xvdmFrJyksICgnc2wnLCAnU2xvdmVuaWFuJyksICgnc3EnLCAnQWxiYW5pYW4nKSwgKCdzcicsICdTZXJiaWFuJyksICgnc3ItbGF0bicsICdTZXJiaWFuIExhdGluJyksICgnc3YnLCAnU3dlZGlzaCcpLCAoJ3N3JywgJ1N3YWhpbGknKSwgKCd0YScsICdUYW1pbCcpLCAoJ3RlJywgJ1RlbHVndScpLCAoJ3RoJywgJ1RoYWknKSwgKCd0cicsICdUdXJraXNoJyksICgndHQnLCAnVGF0YXInKSwgKCd1ZG0nLCAnVWRtdXJ0JyksICgndWsnLCAnVWtyYWluaWFuJyksICgndXInLCAnVXJkdScpLCAoJ3ZpJywgJ1ZpZXRuYW1lc2UnKSwgKCd6aC1oYW5zJywgJ1NpbXBsaWZpZWQgQ2hpbmVzZScpLCAoJ3poLWhhbnQnLCAnVHJhZGl0aW9uYWwgQ2hpbmVzZScpXQpMQU5HVUFHRVNfQklESSA9IFsnaGUnLCAnYXInLCAnZmEnLCAndXInXQpMQU5HVUFHRV9DT0RFID0gJ2VuLXVzJwpMQU5HVUFHRV9DT09LSUVfQUdFID0gTm9uZQpMQU5HVUFHRV9DT09LSUVfRE9NQUlOID0gTm9uZQpMQU5HVUFHRV9DT09LSUVfTkFNRSA9ICdkamFuZ29fbGFuZ3VhZ2UnCkxBTkdVQUdFX0NPT0tJRV9QQVRIID0gJy8nCkxPQ0FMRV9QQVRIUyA9IFtdCkxPR0dJTkcgPSB7fQpMT0dHSU5HX0NPTkZJRyA9ICdsb2dnaW5nLmNvbmZpZy5kaWN0Q29uZmlnJwpMT0dJTl9SRURJUkVDVF9VUkwgPSAnL2FjY291bnRzL3Byb2ZpbGUvJwpMT0dJTl9VUkwgPSAnL2FjY291bnRzL2xvZ2luLycKTE9HT1VUX1JFRElSRUNUX1VSTCA9IE5vbmUKTUFOQUdFUlMgPSBbXQpNRURJQV9ST09UID0gJy9ob21lL2ZpbGVzJwpNRURJQV9VUkwgPSAnL2ZpbGVzLycKTUVTU0FHRV9TVE9SQUdFID0gJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzLnN0b3JhZ2UuZmFsbGJhY2suRmFsbGJhY2tTdG9yYWdlJwpNSURETEVXQVJFID0gWydkamFuZ28ubWlkZGxld2FyZS5zZWN1cml0eS5TZWN1cml0eU1pZGRsZXdhcmUnLCAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMubWlkZGxld2FyZS5TZXNzaW9uTWlkZGxld2FyZScsICdkamFuZ28ubWlkZGxld2FyZS5jb21tb24uQ29tbW9uTWlkZGxld2FyZScsICdkamFuZ28ubWlkZGxld2FyZS5jc3JmLkNzcmZWaWV3TWlkZGxld2FyZScsICdkamFuZ28uY29udHJpYi5hdXRoLm1pZGRsZXdhcmUuQXV0aGVudGljYXRpb25NaWRkbGV3YXJlJywgJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzLm1pZGRsZXdhcmUuTWVzc2FnZU1pZGRsZXdhcmUnLCAnZGphbmdvLm1pZGRsZXdhcmUuY2xpY2tqYWNraW5nLlhGcmFtZU9wdGlvbnNNaWRkbGV3YXJlJywgJ3NpbGsubWlkZGxld2FyZS5TaWxreU1pZGRsZXdhcmUnXQpNSURETEVXQVJFX0NMQVNTRVMgPSBbJ2RqYW5nby5taWRkbGV3YXJlLmNvbW1vbi5Db21tb25NaWRkbGV3YXJlJywgJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJ10KTUlHUkFUSU9OX01PRFVMRVMgPSB7fQpNT05USF9EQVlfRk9STUFUID0gJ0YgaicKTk9TRV9BUkdTID0gWyctLXdpdGgtY292ZXJhZ2UnLCAnLS1jb3Zlci1wYWNrYWdlPWNvcmUudmlld3MnLCAnLS1jb3Zlci1odG1sLWRpcj10ZXN0L2JhY2tlbmQnLCAnLS1jb3Zlci1odG1sJ10KTlVNQkVSX0dST1VQSU5HID0gMApQQVNTV09SRF9IQVNIRVJTID0gJyoqKioqKioqKioqKioqKioqKioqJwpQQVNTV09SRF9SRVNFVF9USU1FT1VUX0RBWVMgPSAnKioqKioqKioqKioqKioqKioqKionClBSRVBFTkRfV1dXID0gRmFsc2UKUkVTVF9GUkFNRVdPUksgPSB7J0RFRkFVTFRfUEVSTUlTU0lPTl9DTEFTU0VTJzogWydyZXN0X2ZyYW1ld29yay5wZXJtaXNzaW9ucy5EamFuZ29Nb2RlbFBlcm1pc3Npb25zT3JBbm9uUmVhZE9ubHknXX0KUk9PVF9VUkxDT05GID0gJ2thcGUudXJscycKUlVOTklOR19ERVZTRVJWRVIgPSBUcnVlClNFQ1JFVF9LRVkgPSAnKioqKioqKioqKioqKioqKioqKionClNFQ1VSRV9CUk9XU0VSX1hTU19GSUxURVIgPSBGYWxzZQpTRUNVUkVfQ09OVEVOVF9UWVBFX05PU05JRkYgPSBGYWxzZQpTRUNVUkVfSFNUU19JTkNMVURFX1NVQkRPTUFJTlMgPSBGYWxzZQpTRUNVUkVfSFNUU19TRUNPTkRTID0gMApTRUNVUkVfUFJPWFlfU1NMX0hFQURFUiA9IE5vbmUKU0VDVVJFX1JFRElSRUNUX0VYRU1QVCA9IFtdClNFQ1VSRV9TU0xfSE9TVCA9IE5vbmUKU0VDVVJFX1NTTF9SRURJUkVDVCA9IEZhbHNlClNFUlZFUl9FTUFJTCA9ICdyb290QGxvY2FsaG9zdCcKU0VTU0lPTl9DQUNIRV9BTElBUyA9ICdkZWZhdWx0JwpTRVNTSU9OX0NPT0tJRV9BR0UgPSAxMjA5NjAwClNFU1NJT05fQ09PS0lFX0RPTUFJTiA9IE5vbmUKU0VTU0lPTl9DT09LSUVfSFRUUE9OTFkgPSBGYWxzZQpTRVNTSU9OX0NPT0tJRV9OQU1FID0gJ3Nlc3Npb25pZCcKU0VTU0lPTl9DT09LSUVfUEFUSCA9ICcvJwpTRVNTSU9OX0NPT0tJRV9TRUNVUkUgPSBGYWxzZQpTRVNTSU9OX0VOR0lORSA9ICdkamFuZ28uY29udHJpYi5zZXNzaW9ucy5iYWNrZW5kcy5kYicKU0VTU0lPTl9FWFBJUkVfQVRfQlJPV1NFUl9DTE9TRSA9IEZhbHNlClNFU1NJT05fRklMRV9QQVRIID0gTm9uZQpTRVNTSU9OX1NBVkVfRVZFUllfUkVRVUVTVCA9IEZhbHNlClNFU1NJT05fU0VSSUFMSVpFUiA9ICdkamFuZ28uY29udHJpYi5zZXNzaW9ucy5zZXJpYWxpemVycy5KU09OU2VyaWFsaXplcicKU0VUVElOR1NfTU9EVUxFID0gJ2thcGUuc2V0dGluZ3MnClNIT1JUX0RBVEVUSU1FX0ZPUk1BVCA9ICdtL2QvWSBQJwpTSE9SVF9EQVRFX0ZPUk1BVCA9ICdtL2QvWScKU0lHTklOR19CQUNLRU5EID0gJ2RqYW5nby5jb3JlLnNpZ25pbmcuVGltZXN0YW1wU2lnbmVyJwpTSUxFTkNFRF9TWVNURU1fQ0hFQ0tTID0gW10KU1RBVElDRklMRVNfRElSUyA9ICdEOlxcUFBMQVxcYXNzZXRzJwpTVEFUSUNGSUxFU19GSU5ERVJTID0gWydkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcy5maW5kZXJzLkZpbGVTeXN0ZW1GaW5kZXInLCAnZGphbmdvLmNvbnRyaWIuc3RhdGljZmlsZXMuZmluZGVycy5BcHBEaXJlY3Rvcmllc0ZpbmRlciddClNUQVRJQ0ZJTEVTX1NUT1JBR0UgPSAnZGphbmdvLmNvbnRyaWIuc3RhdGljZmlsZXMuc3RvcmFnZS5TdGF0aWNGaWxlc1N0b3JhZ2UnClNUQVRJQ19ST09UID0gJy9ob21lL2Fzc2V0cycKU1RBVElDX1VSTCA9ICcvYXNzZXRzLycKVEVNUExBVEVTID0gW3snQkFDS0VORCc6ICdkamFuZ28udGVtcGxhdGUuYmFja2VuZHMuZGphbmdvLkRqYW5nb1RlbXBsYXRlcycsICdESVJTJzogW10sICdBUFBfRElSUyc6IFRydWUsICdPUFRJT05TJzogeydjb250ZXh0X3Byb2Nlc3NvcnMnOiBbJ2RqYW5nby50ZW1wbGF0ZS5jb250ZXh0X3Byb2Nlc3NvcnMuZGVidWcnLCAnZGphbmdvLnRlbXBsYXRlLmNvbnRleHRfcHJvY2Vzc29ycy5yZXF1ZXN0JywgJ2RqYW5nby5jb250cmliLmF1dGguY29udGV4dF9wcm9jZXNzb3JzLmF1dGgnLCAnZGphbmdvLmNvbnRyaWIubWVzc2FnZXMuY29udGV4dF9wcm9jZXNzb3JzLm1lc3NhZ2VzJ119fV0KVEVTVF9OT05fU0VSSUFMSVpFRF9BUFBTID0gW10KVEVTVF9SVU5ORVIgPSAnZGphbmdvX25vc2UuTm9zZVRlc3RTdWl0ZVJ1bm5lcicKVEhPVVNBTkRfU0VQQVJBVE9SID0gJywnClRJTUVfRk9STUFUID0gJ1AnClRJTUVfSU5QVVRfRk9STUFUUyA9IFsnJUg6JU06JVMnLCAnJUg6JU06JVMuJWYnLCAnJUg6JU0nXQpUSU1FX1pPTkUgPSAnVVRDJwpVU0VfRVRBR1MgPSBGYWxzZQpVU0VfSTE4TiA9IFRydWUKVVNFX0wxME4gPSBUcnVlClVTRV9USE9VU0FORF9TRVBBUkFUT1IgPSBGYWxzZQpVU0VfVFogPSBUcnVlClVTRV9YX0ZPUldBUkRFRF9IT1NUID0gRmFsc2UKVVNFX1hfRk9SV0FSREVEX1BPUlQgPSBGYWxzZQpXRUJQQUNLX0xPQURFUiA9IHsnREVGQVVMVCc6IHsnQlVORExFX0RJUl9OQU1FJzogJ2J1bmRsZXMvJywgJ1NUQVRTX0ZJTEUnOiAnRDpcXFBQTEFcXHdlYnBhY2stc3RhdHMuanNvbid9fQpXU0dJX0FQUExJQ0FUSU9OID0gJ2thcGUud3NnaS5hcHBsaWNhdGlvbicKWF9GUkFNRV9PUFRJT05TID0gJ1NBTUVPUklHSU4nCllFQVJfTU9OVEhfRk9STUFUID0gJ0YgWScKCgpZb3UncmUgc2VlaW5nIHRoaXMgZXJyb3IgYmVjYXVzZSB5b3UgaGF2ZSBERUJVRyA9IFRydWUgaW4geW91cgpEamFuZ28gc2V0dGluZ3MgZmlsZS4gQ2hhbmdlIHRoYXQgdG8gRmFsc2UsIGFuZCBEamFuZ28gd2lsbApkaXNwbGF5IGEgc3RhbmRhcmQgcGFnZSBnZW5lcmF0ZWQgYnkgdGhlIGhhbmRsZXIgZm9yIHRoaXMgc3RhdHVzIGNvZGUuCgo=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/plain\"}" - } -}, -{ - "model": "silk.response", - "pk": "2ef37b2e-f20a-418a-b83f-f3916fed53ca", - "fields": { - "request": "4ab833ac-d756-4bce-936c-3cfcc3b6f9f3", - "status_code": 500, - "raw_body": "QXR0cmlidXRlRXJyb3IgYXQgL2FwaQondHVwbGUnIG9iamVjdCBoYXMgbm8gYXR0cmlidXRlICdfbWV0YScKClJlcXVlc3QgTWV0aG9kOiBHRVQKUmVxdWVzdCBVUkw6IGh0dHA6Ly8xMjcuMC4wLjE6ODAwMC9hcGkKRGphbmdvIFZlcnNpb246IDEuMTAuNQpQeXRob24gRXhlY3V0YWJsZTogQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXHB5dGhvbi5leGUKUHl0aG9uIFZlcnNpb246IDMuNi4wClB5dGhvbiBQYXRoOiBbJ0Q6XFxQUExBJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXHB5dGhvbjM2LnppcCcsICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyXFxETExzJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXGxpYicsICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXGxpYlxcc2l0ZS1wYWNrYWdlcyddClNlcnZlciB0aW1lOiBNb24sIDI3IE1hciAyMDE3IDE4OjE2OjIwICswMDAwCkluc3RhbGxlZCBBcHBsaWNhdGlvbnM6ClsnZGphbmdvLmNvbnRyaWIuYWRtaW4nLAogJ2RqYW5nby5jb250cmliLmF1dGgnLAogJ2RqYW5nby5jb250cmliLmNvbnRlbnR0eXBlcycsCiAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMnLAogJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzJywKICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcycsCiAnd2VicGFja19sb2FkZXInLAogJ2NvcmUnLAogJ3Jlc3RfZnJhbWV3b3JrJywKICdkamFuZ29fbm9zZScsCiAncmVzdF9mcmFtZXdvcmtfc3dhZ2dlcicsCiAnc2lsayddCkluc3RhbGxlZCBNaWRkbGV3YXJlOgpbJ2RqYW5nby5taWRkbGV3YXJlLnNlY3VyaXR5LlNlY3VyaXR5TWlkZGxld2FyZScsCiAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMubWlkZGxld2FyZS5TZXNzaW9uTWlkZGxld2FyZScsCiAnZGphbmdvLm1pZGRsZXdhcmUuY29tbW9uLkNvbW1vbk1pZGRsZXdhcmUnLAogJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5hdXRoLm1pZGRsZXdhcmUuQXV0aGVudGljYXRpb25NaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5tZXNzYWdlcy5taWRkbGV3YXJlLk1lc3NhZ2VNaWRkbGV3YXJlJywKICdkamFuZ28ubWlkZGxld2FyZS5jbGlja2phY2tpbmcuWEZyYW1lT3B0aW9uc01pZGRsZXdhcmUnLAogJ3NpbGsubWlkZGxld2FyZS5TaWxreU1pZGRsZXdhcmUnXQoKClRyYWNlYmFjazogIAoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXGRqYW5nb1xjb3JlXGhhbmRsZXJzXGV4Y2VwdGlvbi5weSIgaW4gaW5uZXIKICAzOS4gICAgICAgICAgICAgcmVzcG9uc2UgPSBnZXRfcmVzcG9uc2UocmVxdWVzdCkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cY29yZVxoYW5kbGVyc1xiYXNlLnB5IiBpbiBfZ2V0X3Jlc3BvbnNlCiAgMTg3LiAgICAgICAgICAgICAgICAgcmVzcG9uc2UgPSBzZWxmLnByb2Nlc3NfZXhjZXB0aW9uX2J5X21pZGRsZXdhcmUoZSwgcmVxdWVzdCkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cY29yZVxoYW5kbGVyc1xiYXNlLnB5IiBpbiBfZ2V0X3Jlc3BvbnNlCiAgMTg1LiAgICAgICAgICAgICAgICAgcmVzcG9uc2UgPSB3cmFwcGVkX2NhbGxiYWNrKHJlcXVlc3QsICpjYWxsYmFja19hcmdzLCAqKmNhbGxiYWNrX2t3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cdmlld3NcZGVjb3JhdG9yc1xjc3JmLnB5IiBpbiB3cmFwcGVkX3ZpZXcKICA1OC4gICAgICAgICByZXR1cm4gdmlld19mdW5jKCphcmdzLCAqKmt3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cdmlld3NcZ2VuZXJpY1xiYXNlLnB5IiBpbiB2aWV3CiAgNjguICAgICAgICAgICAgIHJldHVybiBzZWxmLmRpc3BhdGNoKHJlcXVlc3QsICphcmdzLCAqKmt3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3cy5weSIgaW4gZGlzcGF0Y2gKICA0ODMuICAgICAgICAgICAgIHJlc3BvbnNlID0gc2VsZi5oYW5kbGVfZXhjZXB0aW9uKGV4YykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3cy5weSIgaW4gaGFuZGxlX2V4Y2VwdGlvbgogIDQ0My4gICAgICAgICAgICAgc2VsZi5yYWlzZV91bmNhdWdodF9leGNlcHRpb24oZXhjKQoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXHJlc3RfZnJhbWV3b3JrXHZpZXdzLnB5IiBpbiBkaXNwYXRjaAogIDQ4MC4gICAgICAgICAgICAgcmVzcG9uc2UgPSBoYW5kbGVyKHJlcXVlc3QsICphcmdzLCAqKmt3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya19zd2FnZ2VyXHZpZXdzLnB5IiBpbiBnZXQKICAzMi4gICAgICAgICAgICAgc2NoZW1hID0gZ2VuZXJhdG9yLmdldF9zY2hlbWEocmVxdWVzdD1yZXF1ZXN0KQoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXHJlc3RfZnJhbWV3b3JrXHNjaGVtYXMucHkiIGluIGdldF9zY2hlbWEKICAyNDIuICAgICAgICAgbGlua3MgPSBzZWxmLmdldF9saW5rcyhyZXF1ZXN0KQoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXHJlc3RfZnJhbWV3b3JrXHNjaGVtYXMucHkiIGluIGdldF9saW5rcwogIDI3My4gICAgICAgICAgICAgbGluayA9IHNlbGYuZ2V0X2xpbmsocGF0aCwgbWV0aG9kLCB2aWV3KQoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXHJlc3RfZnJhbWV3b3JrXHNjaGVtYXMucHkiIGluIGdldF9saW5rCiAgMzcyLiAgICAgICAgIGZpZWxkcyArPSBzZWxmLmdldF9zZXJpYWxpemVyX2ZpZWxkcyhwYXRoLCBtZXRob2QsIHZpZXcpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNccmVzdF9mcmFtZXdvcmtcc2NoZW1hcy5weSIgaW4gZ2V0X3NlcmlhbGl6ZXJfZmllbGRzCiAgNDg4LiAgICAgICAgIGZvciBmaWVsZCBpbiBzZXJpYWxpemVyLmZpZWxkcy52YWx1ZXMoKToKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1xzZXJpYWxpemVycy5weSIgaW4gZmllbGRzCiAgMzYzLiAgICAgICAgICAgICBmb3Iga2V5LCB2YWx1ZSBpbiBzZWxmLmdldF9maWVsZHMoKS5pdGVtcygpOgoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXHJlc3RfZnJhbWV3b3JrXHNlcmlhbGl6ZXJzLnB5IiBpbiBnZXRfZmllbGRzCiAgOTgzLiAgICAgICAgIGluZm8gPSBtb2RlbF9tZXRhLmdldF9maWVsZF9pbmZvKG1vZGVsKQoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXHJlc3RfZnJhbWV3b3JrXHV0aWxzXG1vZGVsX21ldGEucHkiIGluIGdldF9maWVsZF9pbmZvCiAgMzcuICAgICBvcHRzID0gbW9kZWwuX21ldGEuY29uY3JldGVfbW9kZWwuX21ldGEKCkV4Y2VwdGlvbiBUeXBlOiBBdHRyaWJ1dGVFcnJvciBhdCAvYXBpCkV4Y2VwdGlvbiBWYWx1ZTogJ3R1cGxlJyBvYmplY3QgaGFzIG5vIGF0dHJpYnV0ZSAnX21ldGEnClJlcXVlc3QgaW5mb3JtYXRpb246ClVTRVI6IGthcGUKCkdFVDogTm8gR0VUIGRhdGEKClBPU1Q6IE5vIFBPU1QgZGF0YQoKRklMRVM6IE5vIEZJTEVTIGRhdGEKCkNPT0tJRVM6CnNlc3Npb25pZCA9ICdibHQ4NzdnNWZqbXVjeHkzZGQ1dXhjaXphdmI5b3BvdicKY3NyZnRva2VuID0gJzFFRVAyU3dLdDFLOVFiV25GUFN5V1BJaWJ0TzdNQWFWcUtMRWVvb0ZnWVZ5ZGpZUG9nbjBPd3AyOW9VVzZBNksnCgpNRVRBOgpBTExVU0VSU1BST0ZJTEUgPSAnQzpcXFByb2dyYW1EYXRhJwpBUFBEQVRBID0gJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxSb2FtaW5nJwpDT01NT05QUk9HUkFNRklMRVMgPSAnQzpcXFByb2dyYW0gRmlsZXMgKHg4NilcXENvbW1vbiBGaWxlcycKQ09NTU9OUFJPR1JBTUZJTEVTKFg4NikgPSAnQzpcXFByb2dyYW0gRmlsZXMgKHg4NilcXENvbW1vbiBGaWxlcycKQ09NTU9OUFJPR1JBTVc2NDMyID0gJ0M6XFxQcm9ncmFtIEZpbGVzXFxDb21tb24gRmlsZXMnCkNPTVBVVEVSTkFNRSA9ICdGQVJIQU4nCkNPTVNQRUMgPSAnQzpcXFdJTkRPV1NcXHN5c3RlbTMyXFxjbWQuZXhlJwpDT05URU5UX0xFTkdUSCA9ICcnCkNPTlRFTlRfVFlQRSA9ICd0ZXh0L3BsYWluJwpDU1JGX0NPT0tJRSA9ICcxRUVQMlN3S3QxSzlRYlduRlBTeVdQSWlidE83TUFhVnFLTEVlb29GZ1lWeWRqWVBvZ24wT3dwMjlvVVc2QTZLJwpESkFOR09fU0VUVElOR1NfTU9EVUxFID0gJ2thcGUuc2V0dGluZ3MnCkZQU19CUk9XU0VSX0FQUF9QUk9GSUxFX1NUUklORyA9ICdJbnRlcm5ldCBFeHBsb3JlcicKRlBTX0JST1dTRVJfVVNFUl9QUk9GSUxFX1NUUklORyA9ICdEZWZhdWx0JwpGUF9OT19IT1NUX0NIRUNLID0gJ05PJwpHQVRFV0FZX0lOVEVSRkFDRSA9ICdDR0kvMS4xJwpIT01FRFJJVkUgPSAnQzonCkhPTUVQQVRIID0gJ1xcVXNlcnNcXGZhcmhhXzAwMCcKSFRUUF9BQ0NFUFQgPSAndGV4dC9odG1sLGFwcGxpY2F0aW9uL3hodG1sK3htbCxhcHBsaWNhdGlvbi94bWw7cT0wLjksaW1hZ2Uvd2VicCwqLyo7cT0wLjgnCkhUVFBfQUNDRVBUX0VOQ09ESU5HID0gJ2d6aXAsIGRlZmxhdGUsIHNkY2gsIGJyJwpIVFRQX0FDQ0VQVF9MQU5HVUFHRSA9ICdpZC1JRCxpZDtxPTAuOCxlbi1VUztxPTAuNixlbjtxPTAuNCcKSFRUUF9DT05ORUNUSU9OID0gJ2tlZXAtYWxpdmUnCkhUVFBfQ09PS0lFID0gJ3Nlc3Npb25pZD1ibHQ4NzdnNWZqbXVjeHkzZGQ1dXhjaXphdmI5b3BvdjsgY3NyZnRva2VuPTFFRVAyU3dLdDFLOVFiV25GUFN5V1BJaWJ0TzdNQWFWcUtMRWVvb0ZnWVZ5ZGpZUG9nbjBPd3AyOW9VVzZBNksnCkhUVFBfSE9TVCA9ICcxMjcuMC4wLjE6ODAwMCcKSFRUUF9VUEdSQURFX0lOU0VDVVJFX1JFUVVFU1RTID0gJzEnCkhUVFBfVVNFUl9BR0VOVCA9ICdNb3ppbGxhLzUuMCAoV2luZG93cyBOVCAxMC4wOyBXT1c2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzU2LjAuMjkyNC44NyBTYWZhcmkvNTM3LjM2JwpMT0NBTEFQUERBVEEgPSAnQzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXExvY2FsJwpMT0dPTlNFUlZFUiA9ICdcXFxcRkFSSEFOJwpOVU1CRVJfT0ZfUFJPQ0VTU09SUyA9ICcyJwpPTkVEUklWRSA9ICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcT25lRHJpdmUnCk9TID0gJ1dpbmRvd3NfTlQnClBBVEggPSAnQzpcXFByb2dyYW1EYXRhXFxPcmFjbGVcXEphdmFcXGphdmFwYXRoO0M6XFxQcm9ncmFtIEZpbGVzXFxIYXNrZWxsXFxiaW47QzpcXFByb2dyYW0gRmlsZXNcXEhhc2tlbGwgUGxhdGZvcm1cXDcuMTAuM1xcbGliXFxleHRyYWxpYnNcXGJpbjtDOlxcUHJvZ3JhbSBGaWxlc1xcSGFza2VsbCBQbGF0Zm9ybVxcNy4xMC4zXFxiaW47QzpcXFdJTkRPV1NcXHN5c3RlbTMyO0M6XFxXSU5ET1dTO0M6XFxXSU5ET1dTXFxTeXN0ZW0zMlxcV2JlbTtDOlxcV0lORE9XU1xcU3lzdGVtMzJcXFdpbmRvd3NQb3dlclNoZWxsXFx2MS4wXFw7QzpcXFByb2dyYW0gRmlsZXNcXEhhc2tlbGwgUGxhdGZvcm1cXDcuMTAuM1xcbWluZ3dcXGJpbjtDOlxcUHJvZ3JhbSBGaWxlc1xcSmF2YVxcamRrMS44LjBfNzdcXGJpbjtDOlxcY3lnd2luNjRcXGJpbjslbG9jYWxhcHBkYXRhJVxcTWljcm9zb2Z0XFxXaW5kb3dzQXBwcztEOlxcWEFNUFBcXHBocDtDOlxcUHJvZ3JhbSBGaWxlc1xcR2l0XFxjbWQ7QzpcXHhhbXBwXFxwaHA7QzpcXFByb2dyYW1EYXRhXFxDb21wb3NlclNldHVwXFxiaW47QzpcXFByb2dyYW0gRmlsZXMgKHg4NilcXG5vZGVqc1xcO0M6XFxQcm9ncmFtIEZpbGVzXFxQb3N0Z3JlU1FMXFw5LjZcXGJpbjtDOlxcUHJvZ3JhbSBGaWxlc1xcTUFUTEFCXFxSMjAxN2FcXGJpbjtDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyXFxTY3JpcHRzXFw7QzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXExvY2FsXFxQcm9ncmFtc1xcUHl0aG9uXFxQeXRob24zNi0zMlxcO0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxSb2FtaW5nXFxjYWJhbFxcYmluO0Q6XFxYQU1QUFxccGhwO0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxSb2FtaW5nXFxDb21wb3NlclxcdmVuZG9yXFxiaW47QzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXExvY2FsXFxNaWNyb3NvZnRcXFdpbmRvd3NBcHBzO0M6XFxweXRob24tMy42LjAnClBBVEhFWFQgPSAnLkNPTTsuRVhFOy5CQVQ7LkNNRDsuVkJTOy5WQkU7LkpTOy5KU0U7LldTRjsuV1NIOy5NU0MnClBBVEhfSU5GTyA9ICcvYXBpJwpQUk9DRVNTT1JfQVJDSElURUNUVVJFID0gJ3g4NicKUFJPQ0VTU09SX0FSQ0hJVEVXNjQzMiA9ICdBTUQ2NCcKUFJPQ0VTU09SX0lERU5USUZJRVIgPSAnSW50ZWw2NCBGYW1pbHkgNiBNb2RlbCA1OCBTdGVwcGluZyA5LCBHZW51aW5lSW50ZWwnClBST0NFU1NPUl9MRVZFTCA9ICc2JwpQUk9DRVNTT1JfUkVWSVNJT04gPSAnM2EwOScKUFJPR1JBTURBVEEgPSAnQzpcXFByb2dyYW1EYXRhJwpQUk9HUkFNRklMRVMgPSAnQzpcXFByb2dyYW0gRmlsZXMgKHg4NiknClBST0dSQU1GSUxFUyhYODYpID0gJ0M6XFxQcm9ncmFtIEZpbGVzICh4ODYpJwpQUk9HUkFNVzY0MzIgPSAnQzpcXFByb2dyYW0gRmlsZXMnClBST01QVCA9ICckUCRHJwpQU01PRFVMRVBBVEggPSAnQzpcXFdJTkRPV1NcXHN5c3RlbTMyXFxXaW5kb3dzUG93ZXJTaGVsbFxcdjEuMFxcTW9kdWxlc1xcJwpQVUJMSUMgPSAnQzpcXFVzZXJzXFxQdWJsaWMnClFVRVJZX1NUUklORyA9ICcnClJFTU9URV9BRERSID0gJzEyNy4wLjAuMScKUkVNT1RFX0hPU1QgPSAnJwpSRVFVRVNUX01FVEhPRCA9ICdHRVQnClJVTl9NQUlOID0gJ3RydWUnClNDUklQVF9OQU1FID0gJycKU0VSVkVSX05BTUUgPSAnRmFyaGFuJwpTRVJWRVJfUE9SVCA9ICc4MDAwJwpTRVJWRVJfUFJPVE9DT0wgPSAnSFRUUC8xLjEnClNFUlZFUl9TT0ZUV0FSRSA9ICdXU0dJU2VydmVyLzAuMicKU0VTU0lPTk5BTUUgPSAnQ29uc29sZScKU1lTVEVNRFJJVkUgPSAnQzonClNZU1RFTVJPT1QgPSAnQzpcXFdJTkRPV1MnClRFTVAgPSAnQzpcXFVzZXJzXFxGQVJIQV9+MVxcQXBwRGF0YVxcTG9jYWxcXFRlbXAnClRNUCA9ICdDOlxcVXNlcnNcXEZBUkhBX34xXFxBcHBEYXRhXFxMb2NhbFxcVGVtcCcKVVNFUkRPTUFJTiA9ICdGYXJoYW4nClVTRVJET01BSU5fUk9BTUlOR1BST0ZJTEUgPSAnRmFyaGFuJwpVU0VSTkFNRSA9ICdGYXJoYW4gRmFyYXNkYWsnClVTRVJQUk9GSUxFID0gJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwJwpWQk9YX01TSV9JTlNUQUxMX1BBVEggPSAnQzpcXFByb2dyYW0gRmlsZXNcXE9yYWNsZVxcVmlydHVhbEJveFxcJwpXSU5ESVIgPSAnQzpcXFdJTkRPV1MnCndzZ2kuZXJyb3JzID0gPF9pby5UZXh0SU9XcmFwcGVyIG5hbWU9JzxzdGRlcnI+JyBtb2RlPSd3JyBlbmNvZGluZz0ndXRmLTgnPgp3c2dpLmZpbGVfd3JhcHBlciA9ICcnCndzZ2kuaW5wdXQgPSA8X2lvLkJ1ZmZlcmVkUmVhZGVyIG5hbWU9OTgwPgp3c2dpLm11bHRpcHJvY2VzcyA9IEZhbHNlCndzZ2kubXVsdGl0aHJlYWQgPSBUcnVlCndzZ2kucnVuX29uY2UgPSBGYWxzZQp3c2dpLnVybF9zY2hlbWUgPSAnaHR0cCcKd3NnaS52ZXJzaW9uID0gCgpTZXR0aW5nczoKVXNpbmcgc2V0dGluZ3MgbW9kdWxlIGthcGUuc2V0dGluZ3MKQUJTT0xVVEVfVVJMX09WRVJSSURFUyA9IHt9CkFETUlOUyA9IFtdCkFMTE9XRURfSE9TVFMgPSBbJ2JvdC5yZWNydWl0LmlkJywgJzEwNC4yMzYuNzYuMTYxJywgJ2xvY2FsaG9zdCcsICcxMjcuMC4wLjEnXQpBUFBFTkRfU0xBU0ggPSBUcnVlCkFVVEhFTlRJQ0FUSU9OX0JBQ0tFTkRTID0gWydkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCddCkFVVEhfUEFTU1dPUkRfVkFMSURBVE9SUyA9ICcqKioqKioqKioqKioqKioqKioqKicKQVVUSF9VU0VSX01PREVMID0gJ2F1dGguVXNlcicKQkFTRV9ESVIgPSAnRDpcXFBQTEEnCkNBQ0hFUyA9IHsnZGVmYXVsdCc6IHsnQkFDS0VORCc6ICdkamFuZ28uY29yZS5jYWNoZS5iYWNrZW5kcy5sb2NtZW0uTG9jTWVtQ2FjaGUnfX0KQ0FDSEVfTUlERExFV0FSRV9BTElBUyA9ICdkZWZhdWx0JwpDQUNIRV9NSURETEVXQVJFX0tFWV9QUkVGSVggPSAnKioqKioqKioqKioqKioqKioqKionCkNBQ0hFX01JRERMRVdBUkVfU0VDT05EUyA9IDYwMApDU1JGX0NPT0tJRV9BR0UgPSAzMTQ0OTYwMApDU1JGX0NPT0tJRV9ET01BSU4gPSBOb25lCkNTUkZfQ09PS0lFX0hUVFBPTkxZID0gRmFsc2UKQ1NSRl9DT09LSUVfTkFNRSA9ICdjc3JmdG9rZW4nCkNTUkZfQ09PS0lFX1BBVEggPSAnLycKQ1NSRl9DT09LSUVfU0VDVVJFID0gRmFsc2UKQ1NSRl9GQUlMVVJFX1ZJRVcgPSAnZGphbmdvLnZpZXdzLmNzcmYuY3NyZl9mYWlsdXJlJwpDU1JGX0hFQURFUl9OQU1FID0gJ0hUVFBfWF9DU1JGVE9LRU4nCkNTUkZfVFJVU1RFRF9PUklHSU5TID0gW10KREFUQUJBU0VTID0geydkZWZhdWx0JzogeydFTkdJTkUnOiAnZGphbmdvLmRiLmJhY2tlbmRzLnBvc3RncmVzcWxfcHN5Y29wZzInLCAnTkFNRSc6ICdrYXBlJywgJ1VTRVInOiAna2FwZScsICdQQVNTV09SRCc6ICcqKioqKioqKioqKioqKioqKioqKicsICdIT1NUJzogJ2xvY2FsaG9zdCcsICdQT1JUJzogJycsICdBVE9NSUNfUkVRVUVTVFMnOiBGYWxzZSwgJ0FVVE9DT01NSVQnOiBUcnVlLCAnQ09OTl9NQVhfQUdFJzogMCwgJ09QVElPTlMnOiB7fSwgJ1RJTUVfWk9ORSc6IE5vbmUsICdURVNUJzogeydDSEFSU0VUJzogTm9uZSwgJ0NPTExBVElPTic6IE5vbmUsICdOQU1FJzogTm9uZSwgJ01JUlJPUic6IE5vbmV9fX0KREFUQUJBU0VfUk9VVEVSUyA9IFtdCkRBVEFfVVBMT0FEX01BWF9NRU1PUllfU0laRSA9IDI2MjE0NDAKREFUQV9VUExPQURfTUFYX05VTUJFUl9GSUVMRFMgPSAxMDAwCkRBVEVUSU1FX0ZPUk1BVCA9ICdOIGosIFksIFAnCkRBVEVUSU1FX0lOUFVUX0ZPUk1BVFMgPSBbJyVZLSVtLSVkICVIOiVNOiVTJywgJyVZLSVtLSVkICVIOiVNOiVTLiVmJywgJyVZLSVtLSVkICVIOiVNJywgJyVZLSVtLSVkJywgJyVtLyVkLyVZICVIOiVNOiVTJywgJyVtLyVkLyVZICVIOiVNOiVTLiVmJywgJyVtLyVkLyVZICVIOiVNJywgJyVtLyVkLyVZJywgJyVtLyVkLyV5ICVIOiVNOiVTJywgJyVtLyVkLyV5ICVIOiVNOiVTLiVmJywgJyVtLyVkLyV5ICVIOiVNJywgJyVtLyVkLyV5J10KREFURV9GT1JNQVQgPSAnTiBqLCBZJwpEQVRFX0lOUFVUX0ZPUk1BVFMgPSBbJyVZLSVtLSVkJywgJyVtLyVkLyVZJywgJyVtLyVkLyV5JywgJyViICVkICVZJywgJyViICVkLCAlWScsICclZCAlYiAlWScsICclZCAlYiwgJVknLCAnJUIgJWQgJVknLCAnJUIgJWQsICVZJywgJyVkICVCICVZJywgJyVkICVCLCAlWSddCkRFQlVHID0gVHJ1ZQpERUJVR19QUk9QQUdBVEVfRVhDRVBUSU9OUyA9IEZhbHNlCkRFQ0lNQUxfU0VQQVJBVE9SID0gJy4nCkRFRkFVTFRfQ0hBUlNFVCA9ICd1dGYtOCcKREVGQVVMVF9DT05URU5UX1RZUEUgPSAndGV4dC9odG1sJwpERUZBVUxUX0VYQ0VQVElPTl9SRVBPUlRFUl9GSUxURVIgPSAnZGphbmdvLnZpZXdzLmRlYnVnLlNhZmVFeGNlcHRpb25SZXBvcnRlckZpbHRlcicKREVGQVVMVF9GSUxFX1NUT1JBR0UgPSAnZGphbmdvLmNvcmUuZmlsZXMuc3RvcmFnZS5GaWxlU3lzdGVtU3RvcmFnZScKREVGQVVMVF9GUk9NX0VNQUlMID0gJ3dlYm1hc3RlckBsb2NhbGhvc3QnCkRFRkFVTFRfSU5ERVhfVEFCTEVTUEFDRSA9ICcnCkRFRkFVTFRfVEFCTEVTUEFDRSA9ICcnCkRJU0FMTE9XRURfVVNFUl9BR0VOVFMgPSBbXQpFTUFJTF9CQUNLRU5EID0gJ2RqYW5nby5jb3JlLm1haWwuYmFja2VuZHMuc210cC5FbWFpbEJhY2tlbmQnCkVNQUlMX0hPU1QgPSAnbG9jYWxob3N0JwpFTUFJTF9IT1NUX1BBU1NXT1JEID0gJyoqKioqKioqKioqKioqKioqKioqJwpFTUFJTF9IT1NUX1VTRVIgPSAnJwpFTUFJTF9QT1JUID0gMjUKRU1BSUxfU1NMX0NFUlRGSUxFID0gTm9uZQpFTUFJTF9TU0xfS0VZRklMRSA9ICcqKioqKioqKioqKioqKioqKioqKicKRU1BSUxfU1VCSkVDVF9QUkVGSVggPSAnW0RqYW5nb10gJwpFTUFJTF9USU1FT1VUID0gTm9uZQpFTUFJTF9VU0VfU1NMID0gRmFsc2UKRU1BSUxfVVNFX1RMUyA9IEZhbHNlCkZJTEVfQ0hBUlNFVCA9ICd1dGYtOCcKRklMRV9VUExPQURfRElSRUNUT1JZX1BFUk1JU1NJT05TID0gTm9uZQpGSUxFX1VQTE9BRF9IQU5ETEVSUyA9IFsnZGphbmdvLmNvcmUuZmlsZXMudXBsb2FkaGFuZGxlci5NZW1vcnlGaWxlVXBsb2FkSGFuZGxlcicsICdkamFuZ28uY29yZS5maWxlcy51cGxvYWRoYW5kbGVyLlRlbXBvcmFyeUZpbGVVcGxvYWRIYW5kbGVyJ10KRklMRV9VUExPQURfTUFYX01FTU9SWV9TSVpFID0gMjYyMTQ0MApGSUxFX1VQTE9BRF9QRVJNSVNTSU9OUyA9IE5vbmUKRklMRV9VUExPQURfVEVNUF9ESVIgPSBOb25lCkZJUlNUX0RBWV9PRl9XRUVLID0gMApGSVhUVVJFX0RJUlMgPSBbXQpGT1JDRV9TQ1JJUFRfTkFNRSA9IE5vbmUKRk9STUFUX01PRFVMRV9QQVRIID0gTm9uZQpHWklQX0NPTlRFTlRfVFlQRVMgPSAKSUdOT1JBQkxFXzQwNF9VUkxTID0gW10KSU5TVEFMTEVEX0FQUFMgPSBbJ2RqYW5nby5jb250cmliLmFkbWluJywgJ2RqYW5nby5jb250cmliLmF1dGgnLCAnZGphbmdvLmNvbnRyaWIuY29udGVudHR5cGVzJywgJ2RqYW5nby5jb250cmliLnNlc3Npb25zJywgJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzJywgJ2RqYW5nby5jb250cmliLnN0YXRpY2ZpbGVzJywgJ3dlYnBhY2tfbG9hZGVyJywgJ2NvcmUnLCAncmVzdF9mcmFtZXdvcmsnLCAnZGphbmdvX25vc2UnLCAncmVzdF9mcmFtZXdvcmtfc3dhZ2dlcicsICdzaWxrJ10KSU5URVJOQUxfSVBTID0gW10KTEFOR1VBR0VTID0gWygnYWYnLCAnQWZyaWthYW5zJyksICgnYXInLCAnQXJhYmljJyksICgnYXN0JywgJ0FzdHVyaWFuJyksICgnYXonLCAnQXplcmJhaWphbmknKSwgKCdiZycsICdCdWxnYXJpYW4nKSwgKCdiZScsICdCZWxhcnVzaWFuJyksICgnYm4nLCAnQmVuZ2FsaScpLCAoJ2JyJywgJ0JyZXRvbicpLCAoJ2JzJywgJ0Jvc25pYW4nKSwgKCdjYScsICdDYXRhbGFuJyksICgnY3MnLCAnQ3plY2gnKSwgKCdjeScsICdXZWxzaCcpLCAoJ2RhJywgJ0RhbmlzaCcpLCAoJ2RlJywgJ0dlcm1hbicpLCAoJ2RzYicsICdMb3dlciBTb3JiaWFuJyksICgnZWwnLCAnR3JlZWsnKSwgKCdlbicsICdFbmdsaXNoJyksICgnZW4tYXUnLCAnQXVzdHJhbGlhbiBFbmdsaXNoJyksICgnZW4tZ2InLCAnQnJpdGlzaCBFbmdsaXNoJyksICgnZW8nLCAnRXNwZXJhbnRvJyksICgnZXMnLCAnU3BhbmlzaCcpLCAoJ2VzLWFyJywgJ0FyZ2VudGluaWFuIFNwYW5pc2gnKSwgKCdlcy1jbycsICdDb2xvbWJpYW4gU3BhbmlzaCcpLCAoJ2VzLW14JywgJ01leGljYW4gU3BhbmlzaCcpLCAoJ2VzLW5pJywgJ05pY2FyYWd1YW4gU3BhbmlzaCcpLCAoJ2VzLXZlJywgJ1ZlbmV6dWVsYW4gU3BhbmlzaCcpLCAoJ2V0JywgJ0VzdG9uaWFuJyksICgnZXUnLCAnQmFzcXVlJyksICgnZmEnLCAnUGVyc2lhbicpLCAoJ2ZpJywgJ0Zpbm5pc2gnKSwgKCdmcicsICdGcmVuY2gnKSwgKCdmeScsICdGcmlzaWFuJyksICgnZ2EnLCAnSXJpc2gnKSwgKCdnZCcsICdTY290dGlzaCBHYWVsaWMnKSwgKCdnbCcsICdHYWxpY2lhbicpLCAoJ2hlJywgJ0hlYnJldycpLCAoJ2hpJywgJ0hpbmRpJyksICgnaHInLCAnQ3JvYXRpYW4nKSwgKCdoc2InLCAnVXBwZXIgU29yYmlhbicpLCAoJ2h1JywgJ0h1bmdhcmlhbicpLCAoJ2lhJywgJ0ludGVybGluZ3VhJyksICgnaWQnLCAnSW5kb25lc2lhbicpLCAoJ2lvJywgJ0lkbycpLCAoJ2lzJywgJ0ljZWxhbmRpYycpLCAoJ2l0JywgJ0l0YWxpYW4nKSwgKCdqYScsICdKYXBhbmVzZScpLCAoJ2thJywgJ0dlb3JnaWFuJyksICgna2snLCAnS2F6YWtoJyksICgna20nLCAnS2htZXInKSwgKCdrbicsICdLYW5uYWRhJyksICgna28nLCAnS29yZWFuJyksICgnbGInLCAnTHV4ZW1ib3VyZ2lzaCcpLCAoJ2x0JywgJ0xpdGh1YW5pYW4nKSwgKCdsdicsICdMYXR2aWFuJyksICgnbWsnLCAnTWFjZWRvbmlhbicpLCAoJ21sJywgJ01hbGF5YWxhbScpLCAoJ21uJywgJ01vbmdvbGlhbicpLCAoJ21yJywgJ01hcmF0aGknKSwgKCdteScsICdCdXJtZXNlJyksICgnbmInLCAnTm9yd2VnaWFuIEJva23DpWwnKSwgKCduZScsICdOZXBhbGknKSwgKCdubCcsICdEdXRjaCcpLCAoJ25uJywgJ05vcndlZ2lhbiBOeW5vcnNrJyksICgnb3MnLCAnT3NzZXRpYycpLCAoJ3BhJywgJ1B1bmphYmknKSwgKCdwbCcsICdQb2xpc2gnKSwgKCdwdCcsICdQb3J0dWd1ZXNlJyksICgncHQtYnInLCAnQnJhemlsaWFuIFBvcnR1Z3Vlc2UnKSwgKCdybycsICdSb21hbmlhbicpLCAoJ3J1JywgJ1J1c3NpYW4nKSwgKCdzaycsICdTbG92YWsnKSwgKCdzbCcsICdTbG92ZW5pYW4nKSwgKCdzcScsICdBbGJhbmlhbicpLCAoJ3NyJywgJ1NlcmJpYW4nKSwgKCdzci1sYXRuJywgJ1NlcmJpYW4gTGF0aW4nKSwgKCdzdicsICdTd2VkaXNoJyksICgnc3cnLCAnU3dhaGlsaScpLCAoJ3RhJywgJ1RhbWlsJyksICgndGUnLCAnVGVsdWd1JyksICgndGgnLCAnVGhhaScpLCAoJ3RyJywgJ1R1cmtpc2gnKSwgKCd0dCcsICdUYXRhcicpLCAoJ3VkbScsICdVZG11cnQnKSwgKCd1aycsICdVa3JhaW5pYW4nKSwgKCd1cicsICdVcmR1JyksICgndmknLCAnVmlldG5hbWVzZScpLCAoJ3poLWhhbnMnLCAnU2ltcGxpZmllZCBDaGluZXNlJyksICgnemgtaGFudCcsICdUcmFkaXRpb25hbCBDaGluZXNlJyldCkxBTkdVQUdFU19CSURJID0gWydoZScsICdhcicsICdmYScsICd1ciddCkxBTkdVQUdFX0NPREUgPSAnZW4tdXMnCkxBTkdVQUdFX0NPT0tJRV9BR0UgPSBOb25lCkxBTkdVQUdFX0NPT0tJRV9ET01BSU4gPSBOb25lCkxBTkdVQUdFX0NPT0tJRV9OQU1FID0gJ2RqYW5nb19sYW5ndWFnZScKTEFOR1VBR0VfQ09PS0lFX1BBVEggPSAnLycKTE9DQUxFX1BBVEhTID0gW10KTE9HR0lORyA9IHt9CkxPR0dJTkdfQ09ORklHID0gJ2xvZ2dpbmcuY29uZmlnLmRpY3RDb25maWcnCkxPR0lOX1JFRElSRUNUX1VSTCA9ICcvYWNjb3VudHMvcHJvZmlsZS8nCkxPR0lOX1VSTCA9ICcvYWNjb3VudHMvbG9naW4vJwpMT0dPVVRfUkVESVJFQ1RfVVJMID0gTm9uZQpNQU5BR0VSUyA9IFtdCk1FRElBX1JPT1QgPSAnL2hvbWUvZmlsZXMnCk1FRElBX1VSTCA9ICcvZmlsZXMvJwpNRVNTQUdFX1NUT1JBR0UgPSAnZGphbmdvLmNvbnRyaWIubWVzc2FnZXMuc3RvcmFnZS5mYWxsYmFjay5GYWxsYmFja1N0b3JhZ2UnCk1JRERMRVdBUkUgPSBbJ2RqYW5nby5taWRkbGV3YXJlLnNlY3VyaXR5LlNlY3VyaXR5TWlkZGxld2FyZScsICdkamFuZ28uY29udHJpYi5zZXNzaW9ucy5taWRkbGV3YXJlLlNlc3Npb25NaWRkbGV3YXJlJywgJ2RqYW5nby5taWRkbGV3YXJlLmNvbW1vbi5Db21tb25NaWRkbGV3YXJlJywgJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJywgJ2RqYW5nby5jb250cmliLmF1dGgubWlkZGxld2FyZS5BdXRoZW50aWNhdGlvbk1pZGRsZXdhcmUnLCAnZGphbmdvLmNvbnRyaWIubWVzc2FnZXMubWlkZGxld2FyZS5NZXNzYWdlTWlkZGxld2FyZScsICdkamFuZ28ubWlkZGxld2FyZS5jbGlja2phY2tpbmcuWEZyYW1lT3B0aW9uc01pZGRsZXdhcmUnLCAnc2lsay5taWRkbGV3YXJlLlNpbGt5TWlkZGxld2FyZSddCk1JRERMRVdBUkVfQ0xBU1NFUyA9IFsnZGphbmdvLm1pZGRsZXdhcmUuY29tbW9uLkNvbW1vbk1pZGRsZXdhcmUnLCAnZGphbmdvLm1pZGRsZXdhcmUuY3NyZi5Dc3JmVmlld01pZGRsZXdhcmUnXQpNSUdSQVRJT05fTU9EVUxFUyA9IHt9Ck1PTlRIX0RBWV9GT1JNQVQgPSAnRiBqJwpOT1NFX0FSR1MgPSBbJy0td2l0aC1jb3ZlcmFnZScsICctLWNvdmVyLXBhY2thZ2U9Y29yZS52aWV3cycsICctLWNvdmVyLWh0bWwtZGlyPXRlc3QvYmFja2VuZCcsICctLWNvdmVyLWh0bWwnXQpOVU1CRVJfR1JPVVBJTkcgPSAwClBBU1NXT1JEX0hBU0hFUlMgPSAnKioqKioqKioqKioqKioqKioqKionClBBU1NXT1JEX1JFU0VUX1RJTUVPVVRfREFZUyA9ICcqKioqKioqKioqKioqKioqKioqKicKUFJFUEVORF9XV1cgPSBGYWxzZQpSRVNUX0ZSQU1FV09SSyA9IHsnREVGQVVMVF9QRVJNSVNTSU9OX0NMQVNTRVMnOiBbJ3Jlc3RfZnJhbWV3b3JrLnBlcm1pc3Npb25zLkRqYW5nb01vZGVsUGVybWlzc2lvbnNPckFub25SZWFkT25seSddfQpST09UX1VSTENPTkYgPSAna2FwZS51cmxzJwpSVU5OSU5HX0RFVlNFUlZFUiA9IFRydWUKU0VDUkVUX0tFWSA9ICcqKioqKioqKioqKioqKioqKioqKicKU0VDVVJFX0JST1dTRVJfWFNTX0ZJTFRFUiA9IEZhbHNlClNFQ1VSRV9DT05URU5UX1RZUEVfTk9TTklGRiA9IEZhbHNlClNFQ1VSRV9IU1RTX0lOQ0xVREVfU1VCRE9NQUlOUyA9IEZhbHNlClNFQ1VSRV9IU1RTX1NFQ09ORFMgPSAwClNFQ1VSRV9QUk9YWV9TU0xfSEVBREVSID0gTm9uZQpTRUNVUkVfUkVESVJFQ1RfRVhFTVBUID0gW10KU0VDVVJFX1NTTF9IT1NUID0gTm9uZQpTRUNVUkVfU1NMX1JFRElSRUNUID0gRmFsc2UKU0VSVkVSX0VNQUlMID0gJ3Jvb3RAbG9jYWxob3N0JwpTRVNTSU9OX0NBQ0hFX0FMSUFTID0gJ2RlZmF1bHQnClNFU1NJT05fQ09PS0lFX0FHRSA9IDEyMDk2MDAKU0VTU0lPTl9DT09LSUVfRE9NQUlOID0gTm9uZQpTRVNTSU9OX0NPT0tJRV9IVFRQT05MWSA9IEZhbHNlClNFU1NJT05fQ09PS0lFX05BTUUgPSAnc2Vzc2lvbmlkJwpTRVNTSU9OX0NPT0tJRV9QQVRIID0gJy8nClNFU1NJT05fQ09PS0lFX1NFQ1VSRSA9IEZhbHNlClNFU1NJT05fRU5HSU5FID0gJ2RqYW5nby5jb250cmliLnNlc3Npb25zLmJhY2tlbmRzLmRiJwpTRVNTSU9OX0VYUElSRV9BVF9CUk9XU0VSX0NMT1NFID0gRmFsc2UKU0VTU0lPTl9GSUxFX1BBVEggPSBOb25lClNFU1NJT05fU0FWRV9FVkVSWV9SRVFVRVNUID0gRmFsc2UKU0VTU0lPTl9TRVJJQUxJWkVSID0gJ2RqYW5nby5jb250cmliLnNlc3Npb25zLnNlcmlhbGl6ZXJzLkpTT05TZXJpYWxpemVyJwpTRVRUSU5HU19NT0RVTEUgPSAna2FwZS5zZXR0aW5ncycKU0hPUlRfREFURVRJTUVfRk9STUFUID0gJ20vZC9ZIFAnClNIT1JUX0RBVEVfRk9STUFUID0gJ20vZC9ZJwpTSUdOSU5HX0JBQ0tFTkQgPSAnZGphbmdvLmNvcmUuc2lnbmluZy5UaW1lc3RhbXBTaWduZXInClNJTEVOQ0VEX1NZU1RFTV9DSEVDS1MgPSBbXQpTVEFUSUNGSUxFU19ESVJTID0gJ0Q6XFxQUExBXFxhc3NldHMnClNUQVRJQ0ZJTEVTX0ZJTkRFUlMgPSBbJ2RqYW5nby5jb250cmliLnN0YXRpY2ZpbGVzLmZpbmRlcnMuRmlsZVN5c3RlbUZpbmRlcicsICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcy5maW5kZXJzLkFwcERpcmVjdG9yaWVzRmluZGVyJ10KU1RBVElDRklMRVNfU1RPUkFHRSA9ICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcy5zdG9yYWdlLlN0YXRpY0ZpbGVzU3RvcmFnZScKU1RBVElDX1JPT1QgPSAnL2hvbWUvYXNzZXRzJwpTVEFUSUNfVVJMID0gJy9hc3NldHMvJwpURU1QTEFURVMgPSBbeydCQUNLRU5EJzogJ2RqYW5nby50ZW1wbGF0ZS5iYWNrZW5kcy5kamFuZ28uRGphbmdvVGVtcGxhdGVzJywgJ0RJUlMnOiBbXSwgJ0FQUF9ESVJTJzogVHJ1ZSwgJ09QVElPTlMnOiB7J2NvbnRleHRfcHJvY2Vzc29ycyc6IFsnZGphbmdvLnRlbXBsYXRlLmNvbnRleHRfcHJvY2Vzc29ycy5kZWJ1ZycsICdkamFuZ28udGVtcGxhdGUuY29udGV4dF9wcm9jZXNzb3JzLnJlcXVlc3QnLCAnZGphbmdvLmNvbnRyaWIuYXV0aC5jb250ZXh0X3Byb2Nlc3NvcnMuYXV0aCcsICdkamFuZ28uY29udHJpYi5tZXNzYWdlcy5jb250ZXh0X3Byb2Nlc3NvcnMubWVzc2FnZXMnXX19XQpURVNUX05PTl9TRVJJQUxJWkVEX0FQUFMgPSBbXQpURVNUX1JVTk5FUiA9ICdkamFuZ29fbm9zZS5Ob3NlVGVzdFN1aXRlUnVubmVyJwpUSE9VU0FORF9TRVBBUkFUT1IgPSAnLCcKVElNRV9GT1JNQVQgPSAnUCcKVElNRV9JTlBVVF9GT1JNQVRTID0gWyclSDolTTolUycsICclSDolTTolUy4lZicsICclSDolTSddClRJTUVfWk9ORSA9ICdVVEMnClVTRV9FVEFHUyA9IEZhbHNlClVTRV9JMThOID0gVHJ1ZQpVU0VfTDEwTiA9IFRydWUKVVNFX1RIT1VTQU5EX1NFUEFSQVRPUiA9IEZhbHNlClVTRV9UWiA9IFRydWUKVVNFX1hfRk9SV0FSREVEX0hPU1QgPSBGYWxzZQpVU0VfWF9GT1JXQVJERURfUE9SVCA9IEZhbHNlCldFQlBBQ0tfTE9BREVSID0geydERUZBVUxUJzogeydCVU5ETEVfRElSX05BTUUnOiAnYnVuZGxlcy8nLCAnU1RBVFNfRklMRSc6ICdEOlxcUFBMQVxcd2VicGFjay1zdGF0cy5qc29uJ319CldTR0lfQVBQTElDQVRJT04gPSAna2FwZS53c2dpLmFwcGxpY2F0aW9uJwpYX0ZSQU1FX09QVElPTlMgPSAnU0FNRU9SSUdJTicKWUVBUl9NT05USF9GT1JNQVQgPSAnRiBZJwoKCllvdSdyZSBzZWVpbmcgdGhpcyBlcnJvciBiZWNhdXNlIHlvdSBoYXZlIERFQlVHID0gVHJ1ZSBpbiB5b3VyCkRqYW5nbyBzZXR0aW5ncyBmaWxlLiBDaGFuZ2UgdGhhdCB0byBGYWxzZSwgYW5kIERqYW5nbyB3aWxsCmRpc3BsYXkgYSBzdGFuZGFyZCBwYWdlIGdlbmVyYXRlZCBieSB0aGUgaGFuZGxlciBmb3IgdGhpcyBzdGF0dXMgY29kZS4KCg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/plain\"}" - } -}, -{ - "model": "silk.response", - "pk": "2f0cc968-c0f5-4187-97bc-94f79446e961", - "fields": { - "request": "fc768874-6455-486d-bcb7-1efefa413f01", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "2f181a1b-39fa-4507-9f40-e61ce866810a", - "fields": { - "request": "ecc712ca-aa5b-467e-9646-a9abf4b50f03", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPlNlbGVjdCB2YWNhbmN5IHRvIGNoYW5nZSB8IERqYW5nbyBzaXRlIGFkbWluPC90aXRsZT4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvYmFzZS5jc3MiIC8+CgogIAogIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvYWRtaW4vY3NzL2NoYW5nZWxpc3RzLmNzcyIgLz4KICAKICAKICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KICAKICAKICAKCgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvY29yZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL2pxdWVyeS9qcXVlcnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2pxdWVyeS5pbml0LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hZG1pbi9SZWxhdGVkT2JqZWN0TG9va3Vwcy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvYWN0aW9ucy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdXJsaWZ5LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9wcmVwb3B1bGF0ZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL3hyZWdleHAveHJlZ2V4cC5qcyI+PC9zY3JpcHQ+Cgo8bWV0YSBuYW1lPSJyb2JvdHMiIGNvbnRlbnQ9Ik5PTkUsTk9BUkNISVZFIiAvPgo8L2hlYWQ+CgoKPGJvZHkgY2xhc3M9IiBhcHAtY29yZSBtb2RlbC12YWNhbmN5IGNoYW5nZS1saXN0IgogIGRhdGEtYWRtaW4tdXRjLW9mZnNldD0iMCI+Cgo8IS0tIENvbnRhaW5lciAtLT4KPGRpdiBpZD0iY29udGFpbmVyIj4KCiAgICAKICAgIDwhLS0gSGVhZGVyIC0tPgogICAgPGRpdiBpZD0iaGVhZGVyIj4KICAgICAgICA8ZGl2IGlkPSJicmFuZGluZyI+CiAgICAgICAgCjxoMSBpZD0ic2l0ZS1uYW1lIj48YSBocmVmPSIvYWRtaW4vIj5EamFuZ28gYWRtaW5pc3RyYXRpb248L2E+PC9oMT4KCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgPGRpdiBpZD0idXNlci10b29scyI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgV2VsY29tZSwKICAgICAgICAgICAgICAgIDxzdHJvbmc+a2FwZTwvc3Ryb25nPi4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iLyI+VmlldyBzaXRlPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9wYXNzd29yZF9jaGFuZ2UvIj5DaGFuZ2UgcGFzc3dvcmQ8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2xvZ291dC8iPkxvZyBvdXQ8L2E+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIAogICAgPC9kaXY+CiAgICA8IS0tIEVORCBIZWFkZXIgLS0+CiAgICAKPGRpdiBjbGFzcz0iYnJlYWRjcnVtYnMiPgo8YSBocmVmPSIvYWRtaW4vIj5Ib21lPC9hPgomcnNhcXVvOyA8YSBocmVmPSIvYWRtaW4vY29yZS8iPkNvcmU8L2E+CiZyc2FxdW87IFZhY2FuY3lzCjwvZGl2PgoKICAgIAoKICAgIAogICAgICAgIAogICAgCgogICAgPCEtLSBDb250ZW50IC0tPgogICAgPGRpdiBpZD0iY29udGVudCIgY2xhc3M9ImZsZXgiPgogICAgICAgIAogICAgICAgIDxoMT5TZWxlY3QgdmFjYW5jeSB0byBjaGFuZ2U8L2gxPgogICAgICAgIAogIDxkaXYgaWQ9ImNvbnRlbnQtbWFpbiI+CiAgICAKICAgICAgICA8dWwgY2xhc3M9Im9iamVjdC10b29scyI+CiAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaT4KICAgICAgICAgICAgICAKICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS92YWNhbmN5L2FkZC8iIGNsYXNzPSJhZGRsaW5rIj4KICAgICAgICAgICAgICAgIEFkZCB2YWNhbmN5CiAgICAgICAgICAgICAgPC9hPgogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgIAogICAgICAgIDwvdWw+CiAgICAKICAgIAogICAgPGRpdiBjbGFzcz0ibW9kdWxlIiBpZD0iY2hhbmdlbGlzdCI+CiAgICAgIAoKCiAgICAgIAoKCiAgICAgIAogICAgICAgIAogICAgICAKCiAgICAgIDxmb3JtIGlkPSJjaGFuZ2VsaXN0LWZvcm0iIG1ldGhvZD0icG9zdCIgbm92YWxpZGF0ZT48aW5wdXQgdHlwZT0naGlkZGVuJyBuYW1lPSdjc3JmbWlkZGxld2FyZXRva2VuJyB2YWx1ZT0nVjIySHdCVnJ3SVdTMlNxN0FvSTFNaFRySnFFTDh2RlBZMWxoN2l0Z09ROUszMVc2ODZURWZzb1pZbHRsell0OCcgLz4KICAgICAgCgogICAgICAKICAgICAgICAgIAogICAgICAgICAgCgoKCiAgICAgICAgICAKICAgICAgCiAgICAgIAoKPHAgY2xhc3M9InBhZ2luYXRvciI+CgowIHZhY2FuY3lzCgoKPC9wPgoKICAgICAgPC9mb3JtPgogICAgPC9kaXY+CiAgPC9kaXY+CgogICAgICAgIAogICAgICAgIDxiciBjbGFzcz0iY2xlYXIiIC8+CiAgICA8L2Rpdj4KICAgIDwhLS0gRU5EIENvbnRlbnQgLS0+CgogICAgPGRpdiBpZD0iZm9vdGVyIj48L2Rpdj4KPC9kaXY+CjwhLS0gRU5EIENvbnRhaW5lciAtLT4KCjwvYm9keT4KPC9odG1sPgo=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 14:33:31 GMT\", \"Expires\": \"Mon, 27 Mar 2017 14:33:31 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "2f7f82ba-3be3-493f-b152-59539c68048c", - "fields": { - "request": "9cf06b2f-2c22-4ae9-88f7-b2cb20d70d11", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "3091254b-5aab-47d7-8057-53d71adb3c1d", - "fields": { - "request": "65a46d83-3ee3-41fe-9acd-5150f80ebc89", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "31b96889-76de-48fb-ad44-29ee89dcc879", - "fields": { - "request": "c3d5b5cd-be07-4cde-b2b9-8cc61dfa6795", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPkxvZyBpbiB8IERqYW5nbyBzaXRlIGFkbWluPC90aXRsZT4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvYmFzZS5jc3MiIC8+CjxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvYWRtaW4vY3NzL2xvZ2luLmNzcyIgLz4KCgoKCjxtZXRhIG5hbWU9InJvYm90cyIgY29udGVudD0iTk9ORSxOT0FSQ0hJVkUiIC8+CjwvaGVhZD4KCgo8Ym9keSBjbGFzcz0iIGxvZ2luIgogIGRhdGEtYWRtaW4tdXRjLW9mZnNldD0iMCI+Cgo8IS0tIENvbnRhaW5lciAtLT4KPGRpdiBpZD0iY29udGFpbmVyIj4KCiAgICAKICAgIDwhLS0gSGVhZGVyIC0tPgogICAgPGRpdiBpZD0iaGVhZGVyIj4KICAgICAgICA8ZGl2IGlkPSJicmFuZGluZyI+CiAgICAgICAgCjxoMSBpZD0ic2l0ZS1uYW1lIj48YSBocmVmPSIvYWRtaW4vIj5EamFuZ28gYWRtaW5pc3RyYXRpb248L2E+PC9oMT4KCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICA8L2Rpdj4KICAgIDwhLS0gRU5EIEhlYWRlciAtLT4KICAgIAogICAgCgogICAgCiAgICAgICAgCiAgICAKCiAgICA8IS0tIENvbnRlbnQgLS0+CiAgICA8ZGl2IGlkPSJjb250ZW50IiBjbGFzcz0iY29sTSI+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgCgoKCgo8ZGl2IGlkPSJjb250ZW50LW1haW4iPgoKCgo8Zm9ybSBhY3Rpb249Ii9hZG1pbi9sb2dpbi8/bmV4dD0vYWRtaW4vIiBtZXRob2Q9InBvc3QiIGlkPSJsb2dpbi1mb3JtIj48aW5wdXQgdHlwZT0naGlkZGVuJyBuYW1lPSdjc3JmbWlkZGxld2FyZXRva2VuJyB2YWx1ZT0neDBsQzhTWk1NczlEWkxNd1cxT0cwc2xkODMxRDBuTEVZWWVldmNseW1mTFdMM2NIT3VXT29UY3dGcnNvQ1FSVScgLz4KICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyI+CiAgICAKICAgIDxsYWJlbCBjbGFzcz0icmVxdWlyZWQiIGZvcj0iaWRfdXNlcm5hbWUiPlVzZXJuYW1lOjwvbGFiZWw+IDxpbnB1dCBhdXRvZm9jdXM9IiIgaWQ9ImlkX3VzZXJuYW1lIiBtYXhsZW5ndGg9IjI1NCIgbmFtZT0idXNlcm5hbWUiIHR5cGU9InRleHQiIHJlcXVpcmVkIC8+CiAgPC9kaXY+CiAgPGRpdiBjbGFzcz0iZm9ybS1yb3ciPgogICAgCiAgICA8bGFiZWwgY2xhc3M9InJlcXVpcmVkIiBmb3I9ImlkX3Bhc3N3b3JkIj5QYXNzd29yZDo8L2xhYmVsPiA8aW5wdXQgaWQ9ImlkX3Bhc3N3b3JkIiBuYW1lPSJwYXNzd29yZCIgdHlwZT0icGFzc3dvcmQiIHJlcXVpcmVkIC8+CiAgICA8aW5wdXQgdHlwZT0iaGlkZGVuIiBuYW1lPSJuZXh0IiB2YWx1ZT0iL2FkbWluLyIgLz4KICA8L2Rpdj4KICAKICAKICA8ZGl2IGNsYXNzPSJzdWJtaXQtcm93Ij4KICAgIDxsYWJlbD4mbmJzcDs8L2xhYmVsPjxpbnB1dCB0eXBlPSJzdWJtaXQiIHZhbHVlPSJMb2cgaW4iIC8+CiAgPC9kaXY+CjwvZm9ybT4KCjwvZGl2PgoKICAgICAgICAKICAgICAgICA8YnIgY2xhc3M9ImNsZWFyIiAvPgogICAgPC9kaXY+CiAgICA8IS0tIEVORCBDb250ZW50IC0tPgoKICAgIDxkaXYgaWQ9ImZvb3RlciI+PC9kaXY+CjwvZGl2Pgo8IS0tIEVORCBDb250YWluZXIgLS0+Cgo8L2JvZHk+CjwvaHRtbD4K", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 14:51:56 GMT\", \"Expires\": \"Mon, 27 Mar 2017 14:51:56 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "32d0a8d9-2753-4ae4-8025-c5572bebd1ba", - "fields": { - "request": "d855c02e-f7f9-43bd-9752-e3d0b7e53e74", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "338c251a-194e-4244-92e6-9b15b73eaaf2", - "fields": { - "request": "23da5a5a-2791-47ec-9f38-824cd6ed8d5e", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "34c7507a-f7e7-48ab-94cb-59128bb325cc", - "fields": { - "request": "8a384d1d-0241-41ad-a72c-8af9a191b99a", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPlNpdGUgYWRtaW5pc3RyYXRpb24gfCBEamFuZ28gc2l0ZSBhZG1pbjwvdGl0bGU+CjxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvYWRtaW4vY3NzL2Jhc2UuY3NzIiAvPgo8bGluayByZWw9InN0eWxlc2hlZXQiIHR5cGU9InRleHQvY3NzIiBocmVmPSIvYXNzZXRzL2FkbWluL2Nzcy9kYXNoYm9hcmQuY3NzIiAvPgoKCjxtZXRhIG5hbWU9InJvYm90cyIgY29udGVudD0iTk9ORSxOT0FSQ0hJVkUiIC8+CjwvaGVhZD4KCgo8Ym9keSBjbGFzcz0iIGRhc2hib2FyZCIKICBkYXRhLWFkbWluLXV0Yy1vZmZzZXQ9IjAiPgoKPCEtLSBDb250YWluZXIgLS0+CjxkaXYgaWQ9ImNvbnRhaW5lciI+CgogICAgCiAgICA8IS0tIEhlYWRlciAtLT4KICAgIDxkaXYgaWQ9ImhlYWRlciI+CiAgICAgICAgPGRpdiBpZD0iYnJhbmRpbmciPgogICAgICAgIAo8aDEgaWQ9InNpdGUtbmFtZSI+PGEgaHJlZj0iL2FkbWluLyI+RGphbmdvIGFkbWluaXN0cmF0aW9uPC9hPjwvaDE+CgogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIDxkaXYgaWQ9InVzZXItdG9vbHMiPgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIFdlbGNvbWUsCiAgICAgICAgICAgICAgICA8c3Ryb25nPmthcGU8L3N0cm9uZz4uCiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii8iPlZpZXcgc2l0ZTwvYT4gLwogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vcGFzc3dvcmRfY2hhbmdlLyI+Q2hhbmdlIHBhc3N3b3JkPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9sb2dvdXQvIj5Mb2cgb3V0PC9hPgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgICAgICAKICAgICAgICAKICAgICAgICAKICAgIDwvZGl2PgogICAgPCEtLSBFTkQgSGVhZGVyIC0tPgogICAgCiAgICAKCiAgICAKICAgICAgICAKICAgIAoKICAgIDwhLS0gQ29udGVudCAtLT4KICAgIDxkaXYgaWQ9ImNvbnRlbnQiIGNsYXNzPSJjb2xNUyI+CiAgICAgICAgCiAgICAgICAgPGgxPlNpdGUgYWRtaW5pc3RyYXRpb248L2gxPgogICAgICAgIAo8ZGl2IGlkPSJjb250ZW50LW1haW4iPgoKCiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJhcHAtYXV0aCBtb2R1bGUiPgogICAgICAgIDx0YWJsZT4KICAgICAgICA8Y2FwdGlvbj4KICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2F1dGgvIiBjbGFzcz0ic2VjdGlvbiIgdGl0bGU9Ik1vZGVscyBpbiB0aGUgQXV0aGVudGljYXRpb24gYW5kIEF1dGhvcml6YXRpb24gYXBwbGljYXRpb24iPkF1dGhlbnRpY2F0aW9uIGFuZCBBdXRob3JpemF0aW9uPC9hPgogICAgICAgIDwvY2FwdGlvbj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1ncm91cCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL2dyb3VwLyI+R3JvdXBzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvZ3JvdXAvYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL2dyb3VwLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC11c2VyIj4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8iPlVzZXJzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgPC90YWJsZT4KICAgICAgICA8L2Rpdj4KICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImFwcC1jb3JlIG1vZHVsZSI+CiAgICAgICAgPHRhYmxlPgogICAgICAgIDxjYXB0aW9uPgogICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS8iIGNsYXNzPSJzZWN0aW9uIiB0aXRsZT0iTW9kZWxzIGluIHRoZSBDb3JlIGFwcGxpY2F0aW9uIj5Db3JlPC9hPgogICAgICAgIDwvY2FwdGlvbj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1hcHBsaWNhdGlvbiI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL2FwcGxpY2F0aW9uLyI+QXBwbGljYXRpb25zPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvYXBwbGljYXRpb24vYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL2FwcGxpY2F0aW9uLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1jb21wYW55Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8iPkNvbXBhbnlzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgICAgIDx0ciBjbGFzcz0ibW9kZWwtc3R1ZGVudCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvIj5TdHVkZW50czwvYT48L3RoPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvIiBjbGFzcz0iY2hhbmdlbGluayI+Q2hhbmdlPC9hPjwvdGQ+CiAgICAgICAgICAgIAogICAgICAgICAgICA8L3RyPgogICAgICAgIAogICAgICAgICAgICA8dHIgY2xhc3M9Im1vZGVsLXN1cGVydmlzb3IiPgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0aCBzY29wZT0icm93Ij48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yLyI+U3VwZXJ2aXNvcnM8L2E+PC90aD4KICAgICAgICAgICAgCgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0ZD48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yL2FkZC8iIGNsYXNzPSJhZGRsaW5rIj5BZGQ8L2E+PC90ZD4KICAgICAgICAgICAgCgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0ZD48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC12YWNhbmN5Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS8iPlZhY2FuY3lzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgPC90YWJsZT4KICAgICAgICA8L2Rpdj4KICAgIAoKPC9kaXY+CgogICAgICAgIAo8ZGl2IGlkPSJjb250ZW50LXJlbGF0ZWQiPgogICAgPGRpdiBjbGFzcz0ibW9kdWxlIiBpZD0icmVjZW50LWFjdGlvbnMtbW9kdWxlIj4KICAgICAgICA8aDI+UmVjZW50IGFjdGlvbnM8L2gyPgogICAgICAgIDxoMz5NeSBhY3Rpb25zPC9oMz4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgPHVsIGNsYXNzPSJhY3Rpb25saXN0Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaSBjbGFzcz0iYWRkbGluayI+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS9jb21wYW55LzEvY2hhbmdlLyI+Q29tcGFueSBvYmplY3Q8L2E+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxici8+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz0ibWluaSBxdWlldCI+Q29tcGFueTwvc3Bhbj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgICAgPC91bD4KICAgICAgICAgICAgCiAgICA8L2Rpdj4KPC9kaXY+CgogICAgICAgIDxiciBjbGFzcz0iY2xlYXIiIC8+CiAgICA8L2Rpdj4KICAgIDwhLS0gRU5EIENvbnRlbnQgLS0+CgogICAgPGRpdiBpZD0iZm9vdGVyIj48L2Rpdj4KPC9kaXY+CjwhLS0gRU5EIENvbnRhaW5lciAtLT4KCjwvYm9keT4KPC9odG1sPgo=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 14:52:06 GMT\", \"Expires\": \"Mon, 27 Mar 2017 14:52:06 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\"}" - } -}, -{ - "model": "silk.response", - "pk": "35074b53-6506-4689-9a85-ce5edf22a3b7", - "fields": { - "request": "21e26479-6a89-4b52-955d-c213d1647586", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPlNlbGVjdCBzdXBlcnZpc29yIHRvIGNoYW5nZSB8IERqYW5nbyBzaXRlIGFkbWluPC90aXRsZT4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvYmFzZS5jc3MiIC8+CgogIAogIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvYWRtaW4vY3NzL2NoYW5nZWxpc3RzLmNzcyIgLz4KICAKICAKICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KICAKICAKICAKCgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvY29yZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL2pxdWVyeS9qcXVlcnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2pxdWVyeS5pbml0LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hZG1pbi9SZWxhdGVkT2JqZWN0TG9va3Vwcy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvYWN0aW9ucy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdXJsaWZ5LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9wcmVwb3B1bGF0ZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL3hyZWdleHAveHJlZ2V4cC5qcyI+PC9zY3JpcHQ+Cgo8bWV0YSBuYW1lPSJyb2JvdHMiIGNvbnRlbnQ9Ik5PTkUsTk9BUkNISVZFIiAvPgo8L2hlYWQ+CgoKPGJvZHkgY2xhc3M9IiBhcHAtY29yZSBtb2RlbC1zdXBlcnZpc29yIGNoYW5nZS1saXN0IgogIGRhdGEtYWRtaW4tdXRjLW9mZnNldD0iMCI+Cgo8IS0tIENvbnRhaW5lciAtLT4KPGRpdiBpZD0iY29udGFpbmVyIj4KCiAgICAKICAgIDwhLS0gSGVhZGVyIC0tPgogICAgPGRpdiBpZD0iaGVhZGVyIj4KICAgICAgICA8ZGl2IGlkPSJicmFuZGluZyI+CiAgICAgICAgCjxoMSBpZD0ic2l0ZS1uYW1lIj48YSBocmVmPSIvYWRtaW4vIj5EamFuZ28gYWRtaW5pc3RyYXRpb248L2E+PC9oMT4KCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgPGRpdiBpZD0idXNlci10b29scyI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgV2VsY29tZSwKICAgICAgICAgICAgICAgIDxzdHJvbmc+a2FwZTwvc3Ryb25nPi4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iLyI+VmlldyBzaXRlPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9wYXNzd29yZF9jaGFuZ2UvIj5DaGFuZ2UgcGFzc3dvcmQ8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2xvZ291dC8iPkxvZyBvdXQ8L2E+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIAogICAgPC9kaXY+CiAgICA8IS0tIEVORCBIZWFkZXIgLS0+CiAgICAKPGRpdiBjbGFzcz0iYnJlYWRjcnVtYnMiPgo8YSBocmVmPSIvYWRtaW4vIj5Ib21lPC9hPgomcnNhcXVvOyA8YSBocmVmPSIvYWRtaW4vY29yZS8iPkNvcmU8L2E+CiZyc2FxdW87IFN1cGVydmlzb3JzCjwvZGl2PgoKICAgIAoKICAgIAogICAgICAgIAogICAgICAgIDx1bCBjbGFzcz0ibWVzc2FnZWxpc3QiPgogICAgICAgICAgPGxpIGNsYXNzPSJzdWNjZXNzIj5UaGUgc3VwZXJ2aXNvciAiPGEgaHJlZj0iL2FkbWluL2NvcmUvc3VwZXJ2aXNvci8xL2NoYW5nZS8iPlN1cGVydmlzb3Igb2JqZWN0PC9hPiIgd2FzIGFkZGVkIHN1Y2Nlc3NmdWxseS48L2xpPgogICAgICAgIDwvdWw+CiAgICAgICAgCiAgICAKCiAgICA8IS0tIENvbnRlbnQgLS0+CiAgICA8ZGl2IGlkPSJjb250ZW50IiBjbGFzcz0iZmxleCI+CiAgICAgICAgCiAgICAgICAgPGgxPlNlbGVjdCBzdXBlcnZpc29yIHRvIGNoYW5nZTwvaDE+CiAgICAgICAgCiAgPGRpdiBpZD0iY29udGVudC1tYWluIj4KICAgIAogICAgICAgIDx1bCBjbGFzcz0ib2JqZWN0LXRvb2xzIj4KICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgPGxpPgogICAgICAgICAgICAgIAogICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N1cGVydmlzb3IvYWRkLyIgY2xhc3M9ImFkZGxpbmsiPgogICAgICAgICAgICAgICAgQWRkIHN1cGVydmlzb3IKICAgICAgICAgICAgICA8L2E+CiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgCiAgICAgICAgPC91bD4KICAgIAogICAgCiAgICA8ZGl2IGNsYXNzPSJtb2R1bGUiIGlkPSJjaGFuZ2VsaXN0Ij4KICAgICAgCgoKICAgICAgCgoKICAgICAgCiAgICAgICAgCiAgICAgIAoKICAgICAgPGZvcm0gaWQ9ImNoYW5nZWxpc3QtZm9ybSIgbWV0aG9kPSJwb3N0IiBub3ZhbGlkYXRlPjxpbnB1dCB0eXBlPSdoaWRkZW4nIG5hbWU9J2NzcmZtaWRkbGV3YXJldG9rZW4nIHZhbHVlPSdxRW1YVDRXaUQ3amxiRXB3M0F2YzNOSXd1WVZ0SXkxQlBLdE01QU9kcTR1S3lNcllNMTBFVnVwZ3NUMWkyeVhxJyAvPgogICAgICAKCiAgICAgIAogICAgICAgICAgCjxkaXYgY2xhc3M9ImFjdGlvbnMiPgogICAgPGxhYmVsPkFjdGlvbjogPHNlbGVjdCBuYW1lPSJhY3Rpb24iIHJlcXVpcmVkPgo8b3B0aW9uIHZhbHVlPSIiIHNlbGVjdGVkPSJzZWxlY3RlZCI+LS0tLS0tLS0tPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9ImRlbGV0ZV9zZWxlY3RlZCI+RGVsZXRlIHNlbGVjdGVkIHN1cGVydmlzb3JzPC9vcHRpb24+Cjwvc2VsZWN0PjwvbGFiZWw+PGlucHV0IGNsYXNzPSJzZWxlY3QtYWNyb3NzIiBuYW1lPSJzZWxlY3RfYWNyb3NzIiB0eXBlPSJoaWRkZW4iIHZhbHVlPSIwIiAvPgogICAgPGJ1dHRvbiB0eXBlPSJzdWJtaXQiIGNsYXNzPSJidXR0b24iIHRpdGxlPSJSdW4gdGhlIHNlbGVjdGVkIGFjdGlvbiIgbmFtZT0iaW5kZXgiIHZhbHVlPSIwIj5HbzwvYnV0dG9uPgogICAgCiAgICAgICAgPHNwYW4gY2xhc3M9ImFjdGlvbi1jb3VudGVyIiBkYXRhLWFjdGlvbnMtaWNudD0iMSI+MCBvZiAxIHNlbGVjdGVkPC9zcGFuPgogICAgICAgIAogICAgCjwvZGl2PgoKICAgICAgICAgIAoKCjxkaXYgY2xhc3M9InJlc3VsdHMiPgo8dGFibGUgaWQ9InJlc3VsdF9saXN0Ij4KPHRoZWFkPgo8dHI+Cgo8dGggc2NvcGU9ImNvbCIgIGNsYXNzPSJhY3Rpb24tY2hlY2tib3gtY29sdW1uIj4KICAgCiAgIDxkaXYgY2xhc3M9InRleHQiPjxzcGFuPjxpbnB1dCB0eXBlPSJjaGVja2JveCIgaWQ9ImFjdGlvbi10b2dnbGUiIC8+PC9zcGFuPjwvZGl2PgogICA8ZGl2IGNsYXNzPSJjbGVhciI+PC9kaXY+CjwvdGg+Cjx0aCBzY29wZT0iY29sIiAgY2xhc3M9ImNvbHVtbi1fX3N0cl9fIj4KICAgCiAgIDxkaXYgY2xhc3M9InRleHQiPjxzcGFuPlN1cGVydmlzb3I8L3NwYW4+PC9kaXY+CiAgIDxkaXYgY2xhc3M9ImNsZWFyIj48L2Rpdj4KPC90aD4KPC90cj4KPC90aGVhZD4KPHRib2R5PgoKCjx0ciBjbGFzcz0icm93MSI+PHRkIGNsYXNzPSJhY3Rpb24tY2hlY2tib3giPjxpbnB1dCBjbGFzcz0iYWN0aW9uLXNlbGVjdCIgbmFtZT0iX3NlbGVjdGVkX2FjdGlvbiIgdHlwZT0iY2hlY2tib3giIHZhbHVlPSIxIiAvPjwvdGQ+PHRoIGNsYXNzPSJmaWVsZC1fX3N0cl9fIj48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yLzEvY2hhbmdlLyI+U3VwZXJ2aXNvciBvYmplY3Q8L2E+PC90aD48L3RyPgoKPC90Ym9keT4KPC90YWJsZT4KPC9kaXY+CgoKICAgICAgICAgIAogICAgICAKICAgICAgCgo8cCBjbGFzcz0icGFnaW5hdG9yIj4KCjEgc3VwZXJ2aXNvcgoKCjwvcD4KCiAgICAgIDwvZm9ybT4KICAgIDwvZGl2PgogIDwvZGl2PgoKICAgICAgICAKICAgICAgICA8YnIgY2xhc3M9ImNsZWFyIiAvPgogICAgPC9kaXY+CiAgICA8IS0tIEVORCBDb250ZW50IC0tPgoKICAgIDxkaXYgaWQ9ImZvb3RlciI+PC9kaXY+CjwvZGl2Pgo8IS0tIEVORCBDb250YWluZXIgLS0+Cgo8L2JvZHk+CjwvaHRtbD4K", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 15:22:39 GMT\", \"Expires\": \"Mon, 27 Mar 2017 15:22:39 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "35edca59-3dba-44f6-a6cb-4081fe324025", - "fields": { - "request": "36c80b59-5c19-49c9-bb78-0bc331cc9ece", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "3743dc33-3701-4c4a-9485-9163744967fb", - "fields": { - "request": "c2ea75e4-8c80-474a-8ca7-b73d6ed51480", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPkFkZCB1c2VyIHwgRGphbmdvIHNpdGUgYWRtaW48L3RpdGxlPgo8bGluayByZWw9InN0eWxlc2hlZXQiIHR5cGU9InRleHQvY3NzIiBocmVmPSIvYXNzZXRzL2FkbWluL2Nzcy9iYXNlLmNzcyIgLz4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvZm9ybXMuY3NzIiAvPgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9jb3JlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IvanF1ZXJ5L2pxdWVyeS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvanF1ZXJ5LmluaXQuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2FkbWluL1JlbGF0ZWRPYmplY3RMb29rdXBzLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hY3Rpb25zLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy91cmxpZnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL3ByZXBvcHVsYXRlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IveHJlZ2V4cC94cmVnZXhwLmpzIj48L3NjcmlwdD4KCjxtZXRhIG5hbWU9InJvYm90cyIgY29udGVudD0iTk9ORSxOT0FSQ0hJVkUiIC8+CjwvaGVhZD4KCgo8Ym9keSBjbGFzcz0iIGFwcC1hdXRoIG1vZGVsLXVzZXIgY2hhbmdlLWZvcm0iCiAgZGF0YS1hZG1pbi11dGMtb2Zmc2V0PSIwIj4KCjwhLS0gQ29udGFpbmVyIC0tPgo8ZGl2IGlkPSJjb250YWluZXIiPgoKICAgIAogICAgPCEtLSBIZWFkZXIgLS0+CiAgICA8ZGl2IGlkPSJoZWFkZXIiPgogICAgICAgIDxkaXYgaWQ9ImJyYW5kaW5nIj4KICAgICAgICAKPGgxIGlkPSJzaXRlLW5hbWUiPjxhIGhyZWY9Ii9hZG1pbi8iPkRqYW5nbyBhZG1pbmlzdHJhdGlvbjwvYT48L2gxPgoKICAgICAgICA8L2Rpdj4KICAgICAgICAKICAgICAgICAKICAgICAgICA8ZGl2IGlkPSJ1c2VyLXRvb2xzIj4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICBXZWxjb21lLAogICAgICAgICAgICAgICAgPHN0cm9uZz5rYXBlPC9zdHJvbmc+LgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvIj5WaWV3IHNpdGU8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL3Bhc3N3b3JkX2NoYW5nZS8iPkNoYW5nZSBwYXNzd29yZDwvYT4gLwogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vbG9nb3V0LyI+TG9nIG91dDwvYT4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgCiAgICA8L2Rpdj4KICAgIDwhLS0gRU5EIEhlYWRlciAtLT4KICAgIAo8ZGl2IGNsYXNzPSJicmVhZGNydW1icyI+CjxhIGhyZWY9Ii9hZG1pbi8iPkhvbWU8L2E+CiZyc2FxdW87IDxhIGhyZWY9Ii9hZG1pbi9hdXRoLyI+QXV0aGVudGljYXRpb24gYW5kIEF1dGhvcml6YXRpb248L2E+CiZyc2FxdW87IDxhIGhyZWY9Ii9hZG1pbi9hdXRoL3VzZXIvIj5Vc2VyczwvYT4KJnJzYXF1bzsgQWRkIHVzZXIKPC9kaXY+CgogICAgCgogICAgCiAgICAgICAgCiAgICAKCiAgICA8IS0tIENvbnRlbnQgLS0+CiAgICA8ZGl2IGlkPSJjb250ZW50IiBjbGFzcz0iY29sTSI+CiAgICAgICAgCiAgICAgICAgPGgxPkFkZCB1c2VyPC9oMT4KICAgICAgICA8ZGl2IGlkPSJjb250ZW50LW1haW4iPgoKCgo8Zm9ybSBlbmN0eXBlPSJtdWx0aXBhcnQvZm9ybS1kYXRhIiBhY3Rpb249IiIgbWV0aG9kPSJwb3N0IiBpZD0idXNlcl9mb3JtIiBub3ZhbGlkYXRlPjxpbnB1dCB0eXBlPSdoaWRkZW4nIG5hbWU9J2NzcmZtaWRkbGV3YXJldG9rZW4nIHZhbHVlPSdsUndJMWF6aVk5YmtrNVo2YWhlQTB0RTJ6MWI3VFJXSEtYRHhkR3JkTDZtSkhkMXlUSUoyU2FsTXhXaFdkUlN3JyAvPgogIAogICAgPHA+Rmlyc3QsIGVudGVyIGEgdXNlcm5hbWUgYW5kIHBhc3N3b3JkLiBUaGVuLCB5b3UnbGwgYmUgYWJsZSB0byBlZGl0IG1vcmUgdXNlciBvcHRpb25zLjwvcD4KICAKCjxkaXY+CgoKCgoKCgogIDxmaWVsZHNldCBjbGFzcz0ibW9kdWxlIGFsaWduZWQgd2lkZSI+CiAgICAKICAgIAogICAgCiAgICAgICAgPGRpdiBjbGFzcz0iZm9ybS1yb3cgZmllbGQtdXNlcm5hbWUiPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgY2xhc3M9InJlcXVpcmVkIiBmb3I9ImlkX3VzZXJuYW1lIj5Vc2VybmFtZTo8L2xhYmVsPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxpbnB1dCBhdXRvZm9jdXM9IiIgY2xhc3M9InZUZXh0RmllbGQiIGlkPSJpZF91c2VybmFtZSIgbWF4bGVuZ3RoPSIxNTAiIG5hbWU9InVzZXJuYW1lIiB0eXBlPSJ0ZXh0IiByZXF1aXJlZCAvPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPHAgY2xhc3M9ImhlbHAiPlJlcXVpcmVkLiAxNTAgY2hhcmFjdGVycyBvciBmZXdlci4gTGV0dGVycywgZGlnaXRzIGFuZCBALy4vKy8tL18gb25seS48L3A+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC1wYXNzd29yZDEiPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgY2xhc3M9InJlcXVpcmVkIiBmb3I9ImlkX3Bhc3N3b3JkMSI+UGFzc3dvcmQ6PC9sYWJlbD4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8aW5wdXQgaWQ9ImlkX3Bhc3N3b3JkMSIgbmFtZT0icGFzc3dvcmQxIiB0eXBlPSJwYXNzd29yZCIgcmVxdWlyZWQgLz4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC1wYXNzd29yZDIiPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgY2xhc3M9InJlcXVpcmVkIiBmb3I9ImlkX3Bhc3N3b3JkMiI+UGFzc3dvcmQgY29uZmlybWF0aW9uOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgPGlucHV0IGlkPSJpZF9wYXNzd29yZDIiIG5hbWU9InBhc3N3b3JkMiIgdHlwZT0icGFzc3dvcmQiIHJlcXVpcmVkIC8+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8cCBjbGFzcz0iaGVscCI+RW50ZXIgdGhlIHNhbWUgcGFzc3dvcmQgYXMgYmVmb3JlLCBmb3IgdmVyaWZpY2F0aW9uLjwvcD4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDwvZGl2PgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgIAo8L2ZpZWxkc2V0PgoKCgoKCgoKCgoKCgoKPGRpdiBjbGFzcz0ic3VibWl0LXJvdyI+CjxpbnB1dCB0eXBlPSJzdWJtaXQiIHZhbHVlPSJTYXZlIiBjbGFzcz0iZGVmYXVsdCIgbmFtZT0iX3NhdmUiIC8+CgoKPGlucHV0IHR5cGU9InN1Ym1pdCIgdmFsdWU9IlNhdmUgYW5kIGFkZCBhbm90aGVyIiBuYW1lPSJfYWRkYW5vdGhlciIgLz4KPGlucHV0IHR5cGU9InN1Ym1pdCIgdmFsdWU9IlNhdmUgYW5kIGNvbnRpbnVlIGVkaXRpbmciIG5hbWU9Il9jb250aW51ZSIgLz4KPC9kaXY+CgoKCiAgICA8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIKICAgICAgICAgICAgaWQ9ImRqYW5nby1hZG1pbi1mb3JtLWFkZC1jb25zdGFudHMiCiAgICAgICAgICAgIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9jaGFuZ2VfZm9ybS5qcyIKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICBkYXRhLW1vZGVsLW5hbWU9InVzZXIiCiAgICAgICAgICAgID4KICAgIDwvc2NyaXB0PgoKCgoKPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiCiAgICAgICAgaWQ9ImRqYW5nby1hZG1pbi1wcmVwb3B1bGF0ZWQtZmllbGRzLWNvbnN0YW50cyIKICAgICAgICBzcmM9Ii9hc3NldHMvYWRtaW4vanMvcHJlcG9wdWxhdGVfaW5pdC5qcyIKICAgICAgICBkYXRhLXByZXBvcHVsYXRlZC1maWVsZHM9IltdIj4KPC9zY3JpcHQ+CgoKPC9kaXY+CjwvZm9ybT48L2Rpdj4KCiAgICAgICAgCiAgICAgICAgPGJyIGNsYXNzPSJjbGVhciIgLz4KICAgIDwvZGl2PgogICAgPCEtLSBFTkQgQ29udGVudCAtLT4KCiAgICA8ZGl2IGlkPSJmb290ZXIiPjwvZGl2Pgo8L2Rpdj4KPCEtLSBFTkQgQ29udGFpbmVyIC0tPgoKPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 14:53:56 GMT\", \"Expires\": \"Mon, 27 Mar 2017 14:53:56 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "38a85717-ccbd-4a63-aeb2-b3e5c3e30ebd", - "fields": { - "request": "c23c3ce3-67af-4691-9c2c-8f0a363c89dc", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPkxvZyBpbiB8IERqYW5nbyBzaXRlIGFkbWluPC90aXRsZT4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvYmFzZS5jc3MiIC8+CjxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvYWRtaW4vY3NzL2xvZ2luLmNzcyIgLz4KCgoKCjxtZXRhIG5hbWU9InJvYm90cyIgY29udGVudD0iTk9ORSxOT0FSQ0hJVkUiIC8+CjwvaGVhZD4KCgo8Ym9keSBjbGFzcz0iIGxvZ2luIgogIGRhdGEtYWRtaW4tdXRjLW9mZnNldD0iMCI+Cgo8IS0tIENvbnRhaW5lciAtLT4KPGRpdiBpZD0iY29udGFpbmVyIj4KCiAgICAKICAgIDwhLS0gSGVhZGVyIC0tPgogICAgPGRpdiBpZD0iaGVhZGVyIj4KICAgICAgICA8ZGl2IGlkPSJicmFuZGluZyI+CiAgICAgICAgCjxoMSBpZD0ic2l0ZS1uYW1lIj48YSBocmVmPSIvYWRtaW4vIj5EamFuZ28gYWRtaW5pc3RyYXRpb248L2E+PC9oMT4KCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICA8L2Rpdj4KICAgIDwhLS0gRU5EIEhlYWRlciAtLT4KICAgIAogICAgCgogICAgCiAgICAgICAgCiAgICAKCiAgICA8IS0tIENvbnRlbnQgLS0+CiAgICA8ZGl2IGlkPSJjb250ZW50IiBjbGFzcz0iY29sTSI+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgCgoKCgo8ZGl2IGlkPSJjb250ZW50LW1haW4iPgoKCgo8Zm9ybSBhY3Rpb249Ii9hZG1pbi9sb2dpbi8/bmV4dD0vYWRtaW4vIiBtZXRob2Q9InBvc3QiIGlkPSJsb2dpbi1mb3JtIj48aW5wdXQgdHlwZT0naGlkZGVuJyBuYW1lPSdjc3JmbWlkZGxld2FyZXRva2VuJyB2YWx1ZT0nZGxCVzZFSzd6dGdyVUV4QjNZaU4wMkJTVURkSjNod3ZSenY1MUNpZVVxY1VXSzNpa3ZLVnBnOW1ES3hnb0VnYScgLz4KICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyI+CiAgICAKICAgIDxsYWJlbCBjbGFzcz0icmVxdWlyZWQiIGZvcj0iaWRfdXNlcm5hbWUiPlVzZXJuYW1lOjwvbGFiZWw+IDxpbnB1dCBhdXRvZm9jdXM9IiIgaWQ9ImlkX3VzZXJuYW1lIiBtYXhsZW5ndGg9IjI1NCIgbmFtZT0idXNlcm5hbWUiIHR5cGU9InRleHQiIHJlcXVpcmVkIC8+CiAgPC9kaXY+CiAgPGRpdiBjbGFzcz0iZm9ybS1yb3ciPgogICAgCiAgICA8bGFiZWwgY2xhc3M9InJlcXVpcmVkIiBmb3I9ImlkX3Bhc3N3b3JkIj5QYXNzd29yZDo8L2xhYmVsPiA8aW5wdXQgaWQ9ImlkX3Bhc3N3b3JkIiBuYW1lPSJwYXNzd29yZCIgdHlwZT0icGFzc3dvcmQiIHJlcXVpcmVkIC8+CiAgICA8aW5wdXQgdHlwZT0iaGlkZGVuIiBuYW1lPSJuZXh0IiB2YWx1ZT0iL2FkbWluLyIgLz4KICA8L2Rpdj4KICAKICAKICA8ZGl2IGNsYXNzPSJzdWJtaXQtcm93Ij4KICAgIDxsYWJlbD4mbmJzcDs8L2xhYmVsPjxpbnB1dCB0eXBlPSJzdWJtaXQiIHZhbHVlPSJMb2cgaW4iIC8+CiAgPC9kaXY+CjwvZm9ybT4KCjwvZGl2PgoKICAgICAgICAKICAgICAgICA8YnIgY2xhc3M9ImNsZWFyIiAvPgogICAgPC9kaXY+CiAgICA8IS0tIEVORCBDb250ZW50IC0tPgoKICAgIDxkaXYgaWQ9ImZvb3RlciI+PC9kaXY+CjwvZGl2Pgo8IS0tIEVORCBDb250YWluZXIgLS0+Cgo8L2JvZHk+CjwvaHRtbD4K", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 14:32:32 GMT\", \"Expires\": \"Mon, 27 Mar 2017 14:32:32 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "390886b9-9e68-4ec9-91c9-0f7fb7de8b2e", - "fields": { - "request": "497b6136-0c5b-4517-864f-7dce8c9a9466", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "39fde832-3cf3-4b6b-bafa-9189c33fa8e7", - "fields": { - "request": "713f1416-072f-4a51-be1a-319dc9a21917", - "status_code": 500, - "raw_body": "QXR0cmlidXRlRXJyb3IgYXQgL2FwaS9zdHVkZW50cy8xL2Jvb2ttYXJrZWQtdmFjYW5jaWVzLwonZGljdCcgb2JqZWN0IGhhcyBubyBhdHRyaWJ1dGUgJ2lkJwoKUmVxdWVzdCBNZXRob2Q6IFBPU1QKUmVxdWVzdCBVUkw6IGh0dHA6Ly8xMjcuMC4wLjE6ODAwMC9hcGkvc3R1ZGVudHMvMS9ib29rbWFya2VkLXZhY2FuY2llcy8KRGphbmdvIFZlcnNpb246IDEuMTAuNQpQeXRob24gRXhlY3V0YWJsZTogQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXHB5dGhvbi5leGUKUHl0aG9uIFZlcnNpb246IDMuNi4wClB5dGhvbiBQYXRoOiBbJ0Q6XFxQUExBJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXHB5dGhvbjM2LnppcCcsICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyXFxETExzJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXGxpYicsICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXGxpYlxcc2l0ZS1wYWNrYWdlcyddClNlcnZlciB0aW1lOiBNb24sIDI3IE1hciAyMDE3IDE1OjQ4OjI3ICswMDAwCkluc3RhbGxlZCBBcHBsaWNhdGlvbnM6ClsnZGphbmdvLmNvbnRyaWIuYWRtaW4nLAogJ2RqYW5nby5jb250cmliLmF1dGgnLAogJ2RqYW5nby5jb250cmliLmNvbnRlbnR0eXBlcycsCiAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMnLAogJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzJywKICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcycsCiAnd2VicGFja19sb2FkZXInLAogJ2NvcmUnLAogJ3Jlc3RfZnJhbWV3b3JrJywKICdkamFuZ29fbm9zZScsCiAncmVzdF9mcmFtZXdvcmtfc3dhZ2dlcicsCiAnc2lsayddCkluc3RhbGxlZCBNaWRkbGV3YXJlOgpbJ2RqYW5nby5taWRkbGV3YXJlLnNlY3VyaXR5LlNlY3VyaXR5TWlkZGxld2FyZScsCiAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMubWlkZGxld2FyZS5TZXNzaW9uTWlkZGxld2FyZScsCiAnZGphbmdvLm1pZGRsZXdhcmUuY29tbW9uLkNvbW1vbk1pZGRsZXdhcmUnLAogJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5hdXRoLm1pZGRsZXdhcmUuQXV0aGVudGljYXRpb25NaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5tZXNzYWdlcy5taWRkbGV3YXJlLk1lc3NhZ2VNaWRkbGV3YXJlJywKICdkamFuZ28ubWlkZGxld2FyZS5jbGlja2phY2tpbmcuWEZyYW1lT3B0aW9uc01pZGRsZXdhcmUnLAogJ3NpbGsubWlkZGxld2FyZS5TaWxreU1pZGRsZXdhcmUnXQoKClRyYWNlYmFjazogIAoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXGRqYW5nb1xjb3JlXGhhbmRsZXJzXGV4Y2VwdGlvbi5weSIgaW4gaW5uZXIKICAzOS4gICAgICAgICAgICAgcmVzcG9uc2UgPSBnZXRfcmVzcG9uc2UocmVxdWVzdCkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cY29yZVxoYW5kbGVyc1xiYXNlLnB5IiBpbiBfZ2V0X3Jlc3BvbnNlCiAgMTg3LiAgICAgICAgICAgICAgICAgcmVzcG9uc2UgPSBzZWxmLnByb2Nlc3NfZXhjZXB0aW9uX2J5X21pZGRsZXdhcmUoZSwgcmVxdWVzdCkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cY29yZVxoYW5kbGVyc1xiYXNlLnB5IiBpbiBfZ2V0X3Jlc3BvbnNlCiAgMTg1LiAgICAgICAgICAgICAgICAgcmVzcG9uc2UgPSB3cmFwcGVkX2NhbGxiYWNrKHJlcXVlc3QsICpjYWxsYmFja19hcmdzLCAqKmNhbGxiYWNrX2t3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cdmlld3NcZGVjb3JhdG9yc1xjc3JmLnB5IiBpbiB3cmFwcGVkX3ZpZXcKICA1OC4gICAgICAgICByZXR1cm4gdmlld19mdW5jKCphcmdzLCAqKmt3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3c2V0cy5weSIgaW4gdmlldwogIDgzLiAgICAgICAgICAgICByZXR1cm4gc2VsZi5kaXNwYXRjaChyZXF1ZXN0LCAqYXJncywgKiprd2FyZ3MpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNccmVzdF9mcmFtZXdvcmtcdmlld3MucHkiIGluIGRpc3BhdGNoCiAgNDgzLiAgICAgICAgICAgICByZXNwb25zZSA9IHNlbGYuaGFuZGxlX2V4Y2VwdGlvbihleGMpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNccmVzdF9mcmFtZXdvcmtcdmlld3MucHkiIGluIGhhbmRsZV9leGNlcHRpb24KICA0NDMuICAgICAgICAgICAgIHNlbGYucmFpc2VfdW5jYXVnaHRfZXhjZXB0aW9uKGV4YykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3cy5weSIgaW4gZGlzcGF0Y2gKICA0ODAuICAgICAgICAgICAgIHJlc3BvbnNlID0gaGFuZGxlcihyZXF1ZXN0LCAqYXJncywgKiprd2FyZ3MpCgpGaWxlICJEOlxQUExBXGNvcmVcdmlld3NcYWNjb3VudHMucHkiIGluIGJvb2ttYXJrX3ZhY2FuY2llcwogIDMwLiAgICAgICAgIHZhY2FuY3kgPSBnZXRfb2JqZWN0X29yXzQwNChWYWNhbmN5Lm9iamVjdHMuYWxsKCksIHBrPXJlcXVlc3QuZGF0YS5pZCkKCkV4Y2VwdGlvbiBUeXBlOiBBdHRyaWJ1dGVFcnJvciBhdCAvYXBpL3N0dWRlbnRzLzEvYm9va21hcmtlZC12YWNhbmNpZXMvCkV4Y2VwdGlvbiBWYWx1ZTogJ2RpY3QnIG9iamVjdCBoYXMgbm8gYXR0cmlidXRlICdpZCcKUmVxdWVzdCBpbmZvcm1hdGlvbjoKVVNFUjoga2FwZQoKR0VUOiBObyBHRVQgZGF0YQoKUE9TVDogTm8gUE9TVCBkYXRhCgpGSUxFUzogTm8gRklMRVMgZGF0YQoKQ09PS0lFUzoKc2Vzc2lvbmlkID0gJ2JsdDg3N2c1ZmptdWN4eTNkZDV1eGNpemF2YjlvcG92Jwpjc3JmdG9rZW4gPSAnMUVFUDJTd0t0MUs5UWJXbkZQU3lXUElpYnRPN01BYVZxS0xFZW9vRmdZVnlkallQb2duME93cDI5b1VXNkE2SycKCk1FVEE6CkFMTFVTRVJTUFJPRklMRSA9ICdDOlxcUHJvZ3JhbURhdGEnCkFQUERBVEEgPSAnQzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmcnCkNPTU1PTlBST0dSQU1GSUxFUyA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcQ29tbW9uIEZpbGVzJwpDT01NT05QUk9HUkFNRklMRVMoWDg2KSA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcQ29tbW9uIEZpbGVzJwpDT01NT05QUk9HUkFNVzY0MzIgPSAnQzpcXFByb2dyYW0gRmlsZXNcXENvbW1vbiBGaWxlcycKQ09NUFVURVJOQU1FID0gJ0ZBUkhBTicKQ09NU1BFQyA9ICdDOlxcV0lORE9XU1xcc3lzdGVtMzJcXGNtZC5leGUnCkNPTlRFTlRfTEVOR1RIID0gJzEyOCcKQ09OVEVOVF9UWVBFID0gJ2FwcGxpY2F0aW9uL2pzb24nCkNTUkZfQ09PS0lFID0gJzFFRVAyU3dLdDFLOVFiV25GUFN5V1BJaWJ0TzdNQWFWcUtMRWVvb0ZnWVZ5ZGpZUG9nbjBPd3AyOW9VVzZBNksnCkRKQU5HT19TRVRUSU5HU19NT0RVTEUgPSAna2FwZS5zZXR0aW5ncycKRlBTX0JST1dTRVJfQVBQX1BST0ZJTEVfU1RSSU5HID0gJ0ludGVybmV0IEV4cGxvcmVyJwpGUFNfQlJPV1NFUl9VU0VSX1BST0ZJTEVfU1RSSU5HID0gJ0RlZmF1bHQnCkZQX05PX0hPU1RfQ0hFQ0sgPSAnTk8nCkdBVEVXQVlfSU5URVJGQUNFID0gJ0NHSS8xLjEnCkhPTUVEUklWRSA9ICdDOicKSE9NRVBBVEggPSAnXFxVc2Vyc1xcZmFyaGFfMDAwJwpIVFRQX0FDQ0VQVCA9ICdhcHBsaWNhdGlvbi9qc29uJwpIVFRQX0FDQ0VQVF9FTkNPRElORyA9ICdnemlwLCBkZWZsYXRlLCBicicKSFRUUF9BQ0NFUFRfTEFOR1VBR0UgPSAnaWQtSUQsaWQ7cT0wLjgsZW4tVVM7cT0wLjYsZW47cT0wLjQnCkhUVFBfQ09OTkVDVElPTiA9ICdrZWVwLWFsaXZlJwpIVFRQX0NPT0tJRSA9ICdzZXNzaW9uaWQ9Ymx0ODc3ZzVmam11Y3h5M2RkNXV4Y2l6YXZiOW9wb3Y7IGNzcmZ0b2tlbj0xRUVQMlN3S3QxSzlRYlduRlBTeVdQSWlidE83TUFhVnFLTEVlb29GZ1lWeWRqWVBvZ24wT3dwMjlvVVc2QTZLJwpIVFRQX0hPU1QgPSAnMTI3LjAuMC4xOjgwMDAnCkhUVFBfT1JJR0lOID0gJ2h0dHA6Ly8xMjcuMC4wLjE6ODAwMCcKSFRUUF9SRUZFUkVSID0gJ2h0dHA6Ly8xMjcuMC4wLjE6ODAwMC9hcGknCkhUVFBfVVNFUl9BR0VOVCA9ICdNb3ppbGxhLzUuMCAoV2luZG93cyBOVCAxMC4wOyBXT1c2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzU2LjAuMjkyNC44NyBTYWZhcmkvNTM3LjM2JwpIVFRQX1hfQ1NSRlRPS0VOID0gJ2pxOTFCdUY1ZTVSN1NqTUZSYzJUTmZ2V1U4bERPNnd5SXdnUU4weDAxMjJ3ZnJPN0FEeGxGV2NHUzNyczg2c24nCkxPQ0FMQVBQREFUQSA9ICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWwnCkxPR09OU0VSVkVSID0gJ1xcXFxGQVJIQU4nCk5VTUJFUl9PRl9QUk9DRVNTT1JTID0gJzInCk9ORURSSVZFID0gJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxPbmVEcml2ZScKT1MgPSAnV2luZG93c19OVCcKUEFUSCA9ICdDOlxcUHJvZ3JhbURhdGFcXE9yYWNsZVxcSmF2YVxcamF2YXBhdGg7QzpcXFByb2dyYW0gRmlsZXNcXEhhc2tlbGxcXGJpbjtDOlxcUHJvZ3JhbSBGaWxlc1xcSGFza2VsbCBQbGF0Zm9ybVxcNy4xMC4zXFxsaWJcXGV4dHJhbGlic1xcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxIYXNrZWxsIFBsYXRmb3JtXFw3LjEwLjNcXGJpbjtDOlxcV0lORE9XU1xcc3lzdGVtMzI7QzpcXFdJTkRPV1M7QzpcXFdJTkRPV1NcXFN5c3RlbTMyXFxXYmVtO0M6XFxXSU5ET1dTXFxTeXN0ZW0zMlxcV2luZG93c1Bvd2VyU2hlbGxcXHYxLjBcXDtDOlxcUHJvZ3JhbSBGaWxlc1xcSGFza2VsbCBQbGF0Zm9ybVxcNy4xMC4zXFxtaW5nd1xcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxKYXZhXFxqZGsxLjguMF83N1xcYmluO0M6XFxjeWd3aW42NFxcYmluOyVsb2NhbGFwcGRhdGElXFxNaWNyb3NvZnRcXFdpbmRvd3NBcHBzO0Q6XFxYQU1QUFxccGhwO0M6XFxQcm9ncmFtIEZpbGVzXFxHaXRcXGNtZDtDOlxceGFtcHBcXHBocDtDOlxcUHJvZ3JhbURhdGFcXENvbXBvc2VyU2V0dXBcXGJpbjtDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcbm9kZWpzXFw7QzpcXFByb2dyYW0gRmlsZXNcXFBvc3RncmVTUUxcXDkuNlxcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxNQVRMQUJcXFIyMDE3YVxcYmluO0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXFNjcmlwdHNcXDtDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyXFw7QzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmdcXGNhYmFsXFxiaW47RDpcXFhBTVBQXFxwaHA7QzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmdcXENvbXBvc2VyXFx2ZW5kb3JcXGJpbjtDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXE1pY3Jvc29mdFxcV2luZG93c0FwcHM7QzpcXHB5dGhvbi0zLjYuMCcKUEFUSEVYVCA9ICcuQ09NOy5FWEU7LkJBVDsuQ01EOy5WQlM7LlZCRTsuSlM7LkpTRTsuV1NGOy5XU0g7Lk1TQycKUEFUSF9JTkZPID0gJy9hcGkvc3R1ZGVudHMvMS9ib29rbWFya2VkLXZhY2FuY2llcy8nClBST0NFU1NPUl9BUkNISVRFQ1RVUkUgPSAneDg2JwpQUk9DRVNTT1JfQVJDSElURVc2NDMyID0gJ0FNRDY0JwpQUk9DRVNTT1JfSURFTlRJRklFUiA9ICdJbnRlbDY0IEZhbWlseSA2IE1vZGVsIDU4IFN0ZXBwaW5nIDksIEdlbnVpbmVJbnRlbCcKUFJPQ0VTU09SX0xFVkVMID0gJzYnClBST0NFU1NPUl9SRVZJU0lPTiA9ICczYTA5JwpQUk9HUkFNREFUQSA9ICdDOlxcUHJvZ3JhbURhdGEnClBST0dSQU1GSUxFUyA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KScKUFJPR1JBTUZJTEVTKFg4NikgPSAnQzpcXFByb2dyYW0gRmlsZXMgKHg4NiknClBST0dSQU1XNjQzMiA9ICdDOlxcUHJvZ3JhbSBGaWxlcycKUFJPTVBUID0gJyRQJEcnClBTTU9EVUxFUEFUSCA9ICdDOlxcV0lORE9XU1xcc3lzdGVtMzJcXFdpbmRvd3NQb3dlclNoZWxsXFx2MS4wXFxNb2R1bGVzXFwnClBVQkxJQyA9ICdDOlxcVXNlcnNcXFB1YmxpYycKUVVFUllfU1RSSU5HID0gJycKUkVNT1RFX0FERFIgPSAnMTI3LjAuMC4xJwpSRU1PVEVfSE9TVCA9ICcnClJFUVVFU1RfTUVUSE9EID0gJ1BPU1QnClJVTl9NQUlOID0gJ3RydWUnClNDUklQVF9OQU1FID0gJycKU0VSVkVSX05BTUUgPSAnRmFyaGFuJwpTRVJWRVJfUE9SVCA9ICc4MDAwJwpTRVJWRVJfUFJPVE9DT0wgPSAnSFRUUC8xLjEnClNFUlZFUl9TT0ZUV0FSRSA9ICdXU0dJU2VydmVyLzAuMicKU0VTU0lPTk5BTUUgPSAnQ29uc29sZScKU1lTVEVNRFJJVkUgPSAnQzonClNZU1RFTVJPT1QgPSAnQzpcXFdJTkRPV1MnClRFTVAgPSAnQzpcXFVzZXJzXFxGQVJIQV9+MVxcQXBwRGF0YVxcTG9jYWxcXFRlbXAnClRNUCA9ICdDOlxcVXNlcnNcXEZBUkhBX34xXFxBcHBEYXRhXFxMb2NhbFxcVGVtcCcKVVNFUkRPTUFJTiA9ICdGYXJoYW4nClVTRVJET01BSU5fUk9BTUlOR1BST0ZJTEUgPSAnRmFyaGFuJwpVU0VSTkFNRSA9ICdGYXJoYW4gRmFyYXNkYWsnClVTRVJQUk9GSUxFID0gJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwJwpWQk9YX01TSV9JTlNUQUxMX1BBVEggPSAnQzpcXFByb2dyYW0gRmlsZXNcXE9yYWNsZVxcVmlydHVhbEJveFxcJwpXSU5ESVIgPSAnQzpcXFdJTkRPV1MnCndzZ2kuZXJyb3JzID0gPF9pby5UZXh0SU9XcmFwcGVyIG5hbWU9JzxzdGRlcnI+JyBtb2RlPSd3JyBlbmNvZGluZz0ndXRmLTgnPgp3c2dpLmZpbGVfd3JhcHBlciA9ICcnCndzZ2kuaW5wdXQgPSA8X2lvLkJ1ZmZlcmVkUmVhZGVyIG5hbWU9MTI1Nj4Kd3NnaS5tdWx0aXByb2Nlc3MgPSBGYWxzZQp3c2dpLm11bHRpdGhyZWFkID0gVHJ1ZQp3c2dpLnJ1bl9vbmNlID0gRmFsc2UKd3NnaS51cmxfc2NoZW1lID0gJ2h0dHAnCndzZ2kudmVyc2lvbiA9IAoKU2V0dGluZ3M6ClVzaW5nIHNldHRpbmdzIG1vZHVsZSBrYXBlLnNldHRpbmdzCkFCU09MVVRFX1VSTF9PVkVSUklERVMgPSB7fQpBRE1JTlMgPSBbXQpBTExPV0VEX0hPU1RTID0gWydib3QucmVjcnVpdC5pZCcsICcxMDQuMjM2Ljc2LjE2MScsICdsb2NhbGhvc3QnLCAnMTI3LjAuMC4xJ10KQVBQRU5EX1NMQVNIID0gVHJ1ZQpBVVRIRU5USUNBVElPTl9CQUNLRU5EUyA9IFsnZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQnXQpBVVRIX1BBU1NXT1JEX1ZBTElEQVRPUlMgPSAnKioqKioqKioqKioqKioqKioqKionCkFVVEhfVVNFUl9NT0RFTCA9ICdhdXRoLlVzZXInCkJBU0VfRElSID0gJ0Q6XFxQUExBJwpDQUNIRVMgPSB7J2RlZmF1bHQnOiB7J0JBQ0tFTkQnOiAnZGphbmdvLmNvcmUuY2FjaGUuYmFja2VuZHMubG9jbWVtLkxvY01lbUNhY2hlJ319CkNBQ0hFX01JRERMRVdBUkVfQUxJQVMgPSAnZGVmYXVsdCcKQ0FDSEVfTUlERExFV0FSRV9LRVlfUFJFRklYID0gJyoqKioqKioqKioqKioqKioqKioqJwpDQUNIRV9NSURETEVXQVJFX1NFQ09ORFMgPSA2MDAKQ1NSRl9DT09LSUVfQUdFID0gMzE0NDk2MDAKQ1NSRl9DT09LSUVfRE9NQUlOID0gTm9uZQpDU1JGX0NPT0tJRV9IVFRQT05MWSA9IEZhbHNlCkNTUkZfQ09PS0lFX05BTUUgPSAnY3NyZnRva2VuJwpDU1JGX0NPT0tJRV9QQVRIID0gJy8nCkNTUkZfQ09PS0lFX1NFQ1VSRSA9IEZhbHNlCkNTUkZfRkFJTFVSRV9WSUVXID0gJ2RqYW5nby52aWV3cy5jc3JmLmNzcmZfZmFpbHVyZScKQ1NSRl9IRUFERVJfTkFNRSA9ICdIVFRQX1hfQ1NSRlRPS0VOJwpDU1JGX1RSVVNURURfT1JJR0lOUyA9IFtdCkRBVEFCQVNFUyA9IHsnZGVmYXVsdCc6IHsnRU5HSU5FJzogJ2RqYW5nby5kYi5iYWNrZW5kcy5wb3N0Z3Jlc3FsX3BzeWNvcGcyJywgJ05BTUUnOiAna2FwZScsICdVU0VSJzogJ2thcGUnLCAnUEFTU1dPUkQnOiAnKioqKioqKioqKioqKioqKioqKionLCAnSE9TVCc6ICdsb2NhbGhvc3QnLCAnUE9SVCc6ICcnLCAnQVRPTUlDX1JFUVVFU1RTJzogRmFsc2UsICdBVVRPQ09NTUlUJzogVHJ1ZSwgJ0NPTk5fTUFYX0FHRSc6IDAsICdPUFRJT05TJzoge30sICdUSU1FX1pPTkUnOiBOb25lLCAnVEVTVCc6IHsnQ0hBUlNFVCc6IE5vbmUsICdDT0xMQVRJT04nOiBOb25lLCAnTkFNRSc6IE5vbmUsICdNSVJST1InOiBOb25lfX19CkRBVEFCQVNFX1JPVVRFUlMgPSBbXQpEQVRBX1VQTE9BRF9NQVhfTUVNT1JZX1NJWkUgPSAyNjIxNDQwCkRBVEFfVVBMT0FEX01BWF9OVU1CRVJfRklFTERTID0gMTAwMApEQVRFVElNRV9GT1JNQVQgPSAnTiBqLCBZLCBQJwpEQVRFVElNRV9JTlBVVF9GT1JNQVRTID0gWyclWS0lbS0lZCAlSDolTTolUycsICclWS0lbS0lZCAlSDolTTolUy4lZicsICclWS0lbS0lZCAlSDolTScsICclWS0lbS0lZCcsICclbS8lZC8lWSAlSDolTTolUycsICclbS8lZC8lWSAlSDolTTolUy4lZicsICclbS8lZC8lWSAlSDolTScsICclbS8lZC8lWScsICclbS8lZC8leSAlSDolTTolUycsICclbS8lZC8leSAlSDolTTolUy4lZicsICclbS8lZC8leSAlSDolTScsICclbS8lZC8leSddCkRBVEVfRk9STUFUID0gJ04gaiwgWScKREFURV9JTlBVVF9GT1JNQVRTID0gWyclWS0lbS0lZCcsICclbS8lZC8lWScsICclbS8lZC8leScsICclYiAlZCAlWScsICclYiAlZCwgJVknLCAnJWQgJWIgJVknLCAnJWQgJWIsICVZJywgJyVCICVkICVZJywgJyVCICVkLCAlWScsICclZCAlQiAlWScsICclZCAlQiwgJVknXQpERUJVRyA9IFRydWUKREVCVUdfUFJPUEFHQVRFX0VYQ0VQVElPTlMgPSBGYWxzZQpERUNJTUFMX1NFUEFSQVRPUiA9ICcuJwpERUZBVUxUX0NIQVJTRVQgPSAndXRmLTgnCkRFRkFVTFRfQ09OVEVOVF9UWVBFID0gJ3RleHQvaHRtbCcKREVGQVVMVF9FWENFUFRJT05fUkVQT1JURVJfRklMVEVSID0gJ2RqYW5nby52aWV3cy5kZWJ1Zy5TYWZlRXhjZXB0aW9uUmVwb3J0ZXJGaWx0ZXInCkRFRkFVTFRfRklMRV9TVE9SQUdFID0gJ2RqYW5nby5jb3JlLmZpbGVzLnN0b3JhZ2UuRmlsZVN5c3RlbVN0b3JhZ2UnCkRFRkFVTFRfRlJPTV9FTUFJTCA9ICd3ZWJtYXN0ZXJAbG9jYWxob3N0JwpERUZBVUxUX0lOREVYX1RBQkxFU1BBQ0UgPSAnJwpERUZBVUxUX1RBQkxFU1BBQ0UgPSAnJwpESVNBTExPV0VEX1VTRVJfQUdFTlRTID0gW10KRU1BSUxfQkFDS0VORCA9ICdkamFuZ28uY29yZS5tYWlsLmJhY2tlbmRzLnNtdHAuRW1haWxCYWNrZW5kJwpFTUFJTF9IT1NUID0gJ2xvY2FsaG9zdCcKRU1BSUxfSE9TVF9QQVNTV09SRCA9ICcqKioqKioqKioqKioqKioqKioqKicKRU1BSUxfSE9TVF9VU0VSID0gJycKRU1BSUxfUE9SVCA9IDI1CkVNQUlMX1NTTF9DRVJURklMRSA9IE5vbmUKRU1BSUxfU1NMX0tFWUZJTEUgPSAnKioqKioqKioqKioqKioqKioqKionCkVNQUlMX1NVQkpFQ1RfUFJFRklYID0gJ1tEamFuZ29dICcKRU1BSUxfVElNRU9VVCA9IE5vbmUKRU1BSUxfVVNFX1NTTCA9IEZhbHNlCkVNQUlMX1VTRV9UTFMgPSBGYWxzZQpGSUxFX0NIQVJTRVQgPSAndXRmLTgnCkZJTEVfVVBMT0FEX0RJUkVDVE9SWV9QRVJNSVNTSU9OUyA9IE5vbmUKRklMRV9VUExPQURfSEFORExFUlMgPSBbJ2RqYW5nby5jb3JlLmZpbGVzLnVwbG9hZGhhbmRsZXIuTWVtb3J5RmlsZVVwbG9hZEhhbmRsZXInLCAnZGphbmdvLmNvcmUuZmlsZXMudXBsb2FkaGFuZGxlci5UZW1wb3JhcnlGaWxlVXBsb2FkSGFuZGxlciddCkZJTEVfVVBMT0FEX01BWF9NRU1PUllfU0laRSA9IDI2MjE0NDAKRklMRV9VUExPQURfUEVSTUlTU0lPTlMgPSBOb25lCkZJTEVfVVBMT0FEX1RFTVBfRElSID0gTm9uZQpGSVJTVF9EQVlfT0ZfV0VFSyA9IDAKRklYVFVSRV9ESVJTID0gW10KRk9SQ0VfU0NSSVBUX05BTUUgPSBOb25lCkZPUk1BVF9NT0RVTEVfUEFUSCA9IE5vbmUKR1pJUF9DT05URU5UX1RZUEVTID0gCklHTk9SQUJMRV80MDRfVVJMUyA9IFtdCklOU1RBTExFRF9BUFBTID0gWydkamFuZ28uY29udHJpYi5hZG1pbicsICdkamFuZ28uY29udHJpYi5hdXRoJywgJ2RqYW5nby5jb250cmliLmNvbnRlbnR0eXBlcycsICdkamFuZ28uY29udHJpYi5zZXNzaW9ucycsICdkamFuZ28uY29udHJpYi5tZXNzYWdlcycsICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcycsICd3ZWJwYWNrX2xvYWRlcicsICdjb3JlJywgJ3Jlc3RfZnJhbWV3b3JrJywgJ2RqYW5nb19ub3NlJywgJ3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXInLCAnc2lsayddCklOVEVSTkFMX0lQUyA9IFtdCkxBTkdVQUdFUyA9IFsoJ2FmJywgJ0FmcmlrYWFucycpLCAoJ2FyJywgJ0FyYWJpYycpLCAoJ2FzdCcsICdBc3R1cmlhbicpLCAoJ2F6JywgJ0F6ZXJiYWlqYW5pJyksICgnYmcnLCAnQnVsZ2FyaWFuJyksICgnYmUnLCAnQmVsYXJ1c2lhbicpLCAoJ2JuJywgJ0JlbmdhbGknKSwgKCdicicsICdCcmV0b24nKSwgKCdicycsICdCb3NuaWFuJyksICgnY2EnLCAnQ2F0YWxhbicpLCAoJ2NzJywgJ0N6ZWNoJyksICgnY3knLCAnV2Vsc2gnKSwgKCdkYScsICdEYW5pc2gnKSwgKCdkZScsICdHZXJtYW4nKSwgKCdkc2InLCAnTG93ZXIgU29yYmlhbicpLCAoJ2VsJywgJ0dyZWVrJyksICgnZW4nLCAnRW5nbGlzaCcpLCAoJ2VuLWF1JywgJ0F1c3RyYWxpYW4gRW5nbGlzaCcpLCAoJ2VuLWdiJywgJ0JyaXRpc2ggRW5nbGlzaCcpLCAoJ2VvJywgJ0VzcGVyYW50bycpLCAoJ2VzJywgJ1NwYW5pc2gnKSwgKCdlcy1hcicsICdBcmdlbnRpbmlhbiBTcGFuaXNoJyksICgnZXMtY28nLCAnQ29sb21iaWFuIFNwYW5pc2gnKSwgKCdlcy1teCcsICdNZXhpY2FuIFNwYW5pc2gnKSwgKCdlcy1uaScsICdOaWNhcmFndWFuIFNwYW5pc2gnKSwgKCdlcy12ZScsICdWZW5lenVlbGFuIFNwYW5pc2gnKSwgKCdldCcsICdFc3RvbmlhbicpLCAoJ2V1JywgJ0Jhc3F1ZScpLCAoJ2ZhJywgJ1BlcnNpYW4nKSwgKCdmaScsICdGaW5uaXNoJyksICgnZnInLCAnRnJlbmNoJyksICgnZnknLCAnRnJpc2lhbicpLCAoJ2dhJywgJ0lyaXNoJyksICgnZ2QnLCAnU2NvdHRpc2ggR2FlbGljJyksICgnZ2wnLCAnR2FsaWNpYW4nKSwgKCdoZScsICdIZWJyZXcnKSwgKCdoaScsICdIaW5kaScpLCAoJ2hyJywgJ0Nyb2F0aWFuJyksICgnaHNiJywgJ1VwcGVyIFNvcmJpYW4nKSwgKCdodScsICdIdW5nYXJpYW4nKSwgKCdpYScsICdJbnRlcmxpbmd1YScpLCAoJ2lkJywgJ0luZG9uZXNpYW4nKSwgKCdpbycsICdJZG8nKSwgKCdpcycsICdJY2VsYW5kaWMnKSwgKCdpdCcsICdJdGFsaWFuJyksICgnamEnLCAnSmFwYW5lc2UnKSwgKCdrYScsICdHZW9yZ2lhbicpLCAoJ2trJywgJ0themFraCcpLCAoJ2ttJywgJ0tobWVyJyksICgna24nLCAnS2FubmFkYScpLCAoJ2tvJywgJ0tvcmVhbicpLCAoJ2xiJywgJ0x1eGVtYm91cmdpc2gnKSwgKCdsdCcsICdMaXRodWFuaWFuJyksICgnbHYnLCAnTGF0dmlhbicpLCAoJ21rJywgJ01hY2Vkb25pYW4nKSwgKCdtbCcsICdNYWxheWFsYW0nKSwgKCdtbicsICdNb25nb2xpYW4nKSwgKCdtcicsICdNYXJhdGhpJyksICgnbXknLCAnQnVybWVzZScpLCAoJ25iJywgJ05vcndlZ2lhbiBCb2ttw6VsJyksICgnbmUnLCAnTmVwYWxpJyksICgnbmwnLCAnRHV0Y2gnKSwgKCdubicsICdOb3J3ZWdpYW4gTnlub3JzaycpLCAoJ29zJywgJ09zc2V0aWMnKSwgKCdwYScsICdQdW5qYWJpJyksICgncGwnLCAnUG9saXNoJyksICgncHQnLCAnUG9ydHVndWVzZScpLCAoJ3B0LWJyJywgJ0JyYXppbGlhbiBQb3J0dWd1ZXNlJyksICgncm8nLCAnUm9tYW5pYW4nKSwgKCdydScsICdSdXNzaWFuJyksICgnc2snLCAnU2xvdmFrJyksICgnc2wnLCAnU2xvdmVuaWFuJyksICgnc3EnLCAnQWxiYW5pYW4nKSwgKCdzcicsICdTZXJiaWFuJyksICgnc3ItbGF0bicsICdTZXJiaWFuIExhdGluJyksICgnc3YnLCAnU3dlZGlzaCcpLCAoJ3N3JywgJ1N3YWhpbGknKSwgKCd0YScsICdUYW1pbCcpLCAoJ3RlJywgJ1RlbHVndScpLCAoJ3RoJywgJ1RoYWknKSwgKCd0cicsICdUdXJraXNoJyksICgndHQnLCAnVGF0YXInKSwgKCd1ZG0nLCAnVWRtdXJ0JyksICgndWsnLCAnVWtyYWluaWFuJyksICgndXInLCAnVXJkdScpLCAoJ3ZpJywgJ1ZpZXRuYW1lc2UnKSwgKCd6aC1oYW5zJywgJ1NpbXBsaWZpZWQgQ2hpbmVzZScpLCAoJ3poLWhhbnQnLCAnVHJhZGl0aW9uYWwgQ2hpbmVzZScpXQpMQU5HVUFHRVNfQklESSA9IFsnaGUnLCAnYXInLCAnZmEnLCAndXInXQpMQU5HVUFHRV9DT0RFID0gJ2VuLXVzJwpMQU5HVUFHRV9DT09LSUVfQUdFID0gTm9uZQpMQU5HVUFHRV9DT09LSUVfRE9NQUlOID0gTm9uZQpMQU5HVUFHRV9DT09LSUVfTkFNRSA9ICdkamFuZ29fbGFuZ3VhZ2UnCkxBTkdVQUdFX0NPT0tJRV9QQVRIID0gJy8nCkxPQ0FMRV9QQVRIUyA9IFtdCkxPR0dJTkcgPSB7fQpMT0dHSU5HX0NPTkZJRyA9ICdsb2dnaW5nLmNvbmZpZy5kaWN0Q29uZmlnJwpMT0dJTl9SRURJUkVDVF9VUkwgPSAnL2FjY291bnRzL3Byb2ZpbGUvJwpMT0dJTl9VUkwgPSAnL2FjY291bnRzL2xvZ2luLycKTE9HT1VUX1JFRElSRUNUX1VSTCA9IE5vbmUKTUFOQUdFUlMgPSBbXQpNRURJQV9ST09UID0gJy9ob21lL2ZpbGVzJwpNRURJQV9VUkwgPSAnL2ZpbGVzLycKTUVTU0FHRV9TVE9SQUdFID0gJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzLnN0b3JhZ2UuZmFsbGJhY2suRmFsbGJhY2tTdG9yYWdlJwpNSURETEVXQVJFID0gWydkamFuZ28ubWlkZGxld2FyZS5zZWN1cml0eS5TZWN1cml0eU1pZGRsZXdhcmUnLCAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMubWlkZGxld2FyZS5TZXNzaW9uTWlkZGxld2FyZScsICdkamFuZ28ubWlkZGxld2FyZS5jb21tb24uQ29tbW9uTWlkZGxld2FyZScsICdkamFuZ28ubWlkZGxld2FyZS5jc3JmLkNzcmZWaWV3TWlkZGxld2FyZScsICdkamFuZ28uY29udHJpYi5hdXRoLm1pZGRsZXdhcmUuQXV0aGVudGljYXRpb25NaWRkbGV3YXJlJywgJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzLm1pZGRsZXdhcmUuTWVzc2FnZU1pZGRsZXdhcmUnLCAnZGphbmdvLm1pZGRsZXdhcmUuY2xpY2tqYWNraW5nLlhGcmFtZU9wdGlvbnNNaWRkbGV3YXJlJywgJ3NpbGsubWlkZGxld2FyZS5TaWxreU1pZGRsZXdhcmUnXQpNSURETEVXQVJFX0NMQVNTRVMgPSBbJ2RqYW5nby5taWRkbGV3YXJlLmNvbW1vbi5Db21tb25NaWRkbGV3YXJlJywgJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJ10KTUlHUkFUSU9OX01PRFVMRVMgPSB7fQpNT05USF9EQVlfRk9STUFUID0gJ0YgaicKTk9TRV9BUkdTID0gWyctLXdpdGgtY292ZXJhZ2UnLCAnLS1jb3Zlci1wYWNrYWdlPWNvcmUudmlld3MnLCAnLS1jb3Zlci1odG1sLWRpcj10ZXN0L2JhY2tlbmQnLCAnLS1jb3Zlci1odG1sJ10KTlVNQkVSX0dST1VQSU5HID0gMApQQVNTV09SRF9IQVNIRVJTID0gJyoqKioqKioqKioqKioqKioqKioqJwpQQVNTV09SRF9SRVNFVF9USU1FT1VUX0RBWVMgPSAnKioqKioqKioqKioqKioqKioqKionClBSRVBFTkRfV1dXID0gRmFsc2UKUkVTVF9GUkFNRVdPUksgPSB7J0RFRkFVTFRfUEVSTUlTU0lPTl9DTEFTU0VTJzogWydyZXN0X2ZyYW1ld29yay5wZXJtaXNzaW9ucy5EamFuZ29Nb2RlbFBlcm1pc3Npb25zT3JBbm9uUmVhZE9ubHknXX0KUk9PVF9VUkxDT05GID0gJ2thcGUudXJscycKUlVOTklOR19ERVZTRVJWRVIgPSBUcnVlClNFQ1JFVF9LRVkgPSAnKioqKioqKioqKioqKioqKioqKionClNFQ1VSRV9CUk9XU0VSX1hTU19GSUxURVIgPSBGYWxzZQpTRUNVUkVfQ09OVEVOVF9UWVBFX05PU05JRkYgPSBGYWxzZQpTRUNVUkVfSFNUU19JTkNMVURFX1NVQkRPTUFJTlMgPSBGYWxzZQpTRUNVUkVfSFNUU19TRUNPTkRTID0gMApTRUNVUkVfUFJPWFlfU1NMX0hFQURFUiA9IE5vbmUKU0VDVVJFX1JFRElSRUNUX0VYRU1QVCA9IFtdClNFQ1VSRV9TU0xfSE9TVCA9IE5vbmUKU0VDVVJFX1NTTF9SRURJUkVDVCA9IEZhbHNlClNFUlZFUl9FTUFJTCA9ICdyb290QGxvY2FsaG9zdCcKU0VTU0lPTl9DQUNIRV9BTElBUyA9ICdkZWZhdWx0JwpTRVNTSU9OX0NPT0tJRV9BR0UgPSAxMjA5NjAwClNFU1NJT05fQ09PS0lFX0RPTUFJTiA9IE5vbmUKU0VTU0lPTl9DT09LSUVfSFRUUE9OTFkgPSBGYWxzZQpTRVNTSU9OX0NPT0tJRV9OQU1FID0gJ3Nlc3Npb25pZCcKU0VTU0lPTl9DT09LSUVfUEFUSCA9ICcvJwpTRVNTSU9OX0NPT0tJRV9TRUNVUkUgPSBGYWxzZQpTRVNTSU9OX0VOR0lORSA9ICdkamFuZ28uY29udHJpYi5zZXNzaW9ucy5iYWNrZW5kcy5kYicKU0VTU0lPTl9FWFBJUkVfQVRfQlJPV1NFUl9DTE9TRSA9IEZhbHNlClNFU1NJT05fRklMRV9QQVRIID0gTm9uZQpTRVNTSU9OX1NBVkVfRVZFUllfUkVRVUVTVCA9IEZhbHNlClNFU1NJT05fU0VSSUFMSVpFUiA9ICdkamFuZ28uY29udHJpYi5zZXNzaW9ucy5zZXJpYWxpemVycy5KU09OU2VyaWFsaXplcicKU0VUVElOR1NfTU9EVUxFID0gJ2thcGUuc2V0dGluZ3MnClNIT1JUX0RBVEVUSU1FX0ZPUk1BVCA9ICdtL2QvWSBQJwpTSE9SVF9EQVRFX0ZPUk1BVCA9ICdtL2QvWScKU0lHTklOR19CQUNLRU5EID0gJ2RqYW5nby5jb3JlLnNpZ25pbmcuVGltZXN0YW1wU2lnbmVyJwpTSUxFTkNFRF9TWVNURU1fQ0hFQ0tTID0gW10KU1RBVElDRklMRVNfRElSUyA9ICdEOlxcUFBMQVxcYXNzZXRzJwpTVEFUSUNGSUxFU19GSU5ERVJTID0gWydkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcy5maW5kZXJzLkZpbGVTeXN0ZW1GaW5kZXInLCAnZGphbmdvLmNvbnRyaWIuc3RhdGljZmlsZXMuZmluZGVycy5BcHBEaXJlY3Rvcmllc0ZpbmRlciddClNUQVRJQ0ZJTEVTX1NUT1JBR0UgPSAnZGphbmdvLmNvbnRyaWIuc3RhdGljZmlsZXMuc3RvcmFnZS5TdGF0aWNGaWxlc1N0b3JhZ2UnClNUQVRJQ19ST09UID0gJy9ob21lL2Fzc2V0cycKU1RBVElDX1VSTCA9ICcvYXNzZXRzLycKVEVNUExBVEVTID0gW3snQkFDS0VORCc6ICdkamFuZ28udGVtcGxhdGUuYmFja2VuZHMuZGphbmdvLkRqYW5nb1RlbXBsYXRlcycsICdESVJTJzogW10sICdBUFBfRElSUyc6IFRydWUsICdPUFRJT05TJzogeydjb250ZXh0X3Byb2Nlc3NvcnMnOiBbJ2RqYW5nby50ZW1wbGF0ZS5jb250ZXh0X3Byb2Nlc3NvcnMuZGVidWcnLCAnZGphbmdvLnRlbXBsYXRlLmNvbnRleHRfcHJvY2Vzc29ycy5yZXF1ZXN0JywgJ2RqYW5nby5jb250cmliLmF1dGguY29udGV4dF9wcm9jZXNzb3JzLmF1dGgnLCAnZGphbmdvLmNvbnRyaWIubWVzc2FnZXMuY29udGV4dF9wcm9jZXNzb3JzLm1lc3NhZ2VzJ119fV0KVEVTVF9OT05fU0VSSUFMSVpFRF9BUFBTID0gW10KVEVTVF9SVU5ORVIgPSAnZGphbmdvX25vc2UuTm9zZVRlc3RTdWl0ZVJ1bm5lcicKVEhPVVNBTkRfU0VQQVJBVE9SID0gJywnClRJTUVfRk9STUFUID0gJ1AnClRJTUVfSU5QVVRfRk9STUFUUyA9IFsnJUg6JU06JVMnLCAnJUg6JU06JVMuJWYnLCAnJUg6JU0nXQpUSU1FX1pPTkUgPSAnVVRDJwpVU0VfRVRBR1MgPSBGYWxzZQpVU0VfSTE4TiA9IFRydWUKVVNFX0wxME4gPSBUcnVlClVTRV9USE9VU0FORF9TRVBBUkFUT1IgPSBGYWxzZQpVU0VfVFogPSBUcnVlClVTRV9YX0ZPUldBUkRFRF9IT1NUID0gRmFsc2UKVVNFX1hfRk9SV0FSREVEX1BPUlQgPSBGYWxzZQpXRUJQQUNLX0xPQURFUiA9IHsnREVGQVVMVCc6IHsnQlVORExFX0RJUl9OQU1FJzogJ2J1bmRsZXMvJywgJ1NUQVRTX0ZJTEUnOiAnRDpcXFBQTEFcXHdlYnBhY2stc3RhdHMuanNvbid9fQpXU0dJX0FQUExJQ0FUSU9OID0gJ2thcGUud3NnaS5hcHBsaWNhdGlvbicKWF9GUkFNRV9PUFRJT05TID0gJ1NBTUVPUklHSU4nCllFQVJfTU9OVEhfRk9STUFUID0gJ0YgWScKCgpZb3UncmUgc2VlaW5nIHRoaXMgZXJyb3IgYmVjYXVzZSB5b3UgaGF2ZSBERUJVRyA9IFRydWUgaW4geW91cgpEamFuZ28gc2V0dGluZ3MgZmlsZS4gQ2hhbmdlIHRoYXQgdG8gRmFsc2UsIGFuZCBEamFuZ28gd2lsbApkaXNwbGF5IGEgc3RhbmRhcmQgcGFnZSBnZW5lcmF0ZWQgYnkgdGhlIGhhbmRsZXIgZm9yIHRoaXMgc3RhdHVzIGNvZGUuCgo=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/plain\"}" - } -}, -{ - "model": "silk.response", - "pk": "3a04c310-ad4c-42f1-b43a-fc1c20909c70", - "fields": { - "request": "0cbe92e1-c115-4fcd-96f0-c8ba9d0d23b9", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "3a0796c6-d154-49b2-b546-dc26096b281f", - "fields": { - "request": "7dff6ca1-c60e-4ed0-aa23-58b95020356b", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "3bd6ba92-7838-428e-b0a6-44038cd08de9", - "fields": { - "request": "e27c16aa-f1fc-415c-a11a-6f54f98999f2", - "status_code": 500, - "raw_body": "QXR0cmlidXRlRXJyb3IgYXQgL2FwaS9zdHVkZW50cy8xL2Jvb2ttYXJrZWQtdmFjYW5jaWVzLwonZGljdCcgb2JqZWN0IGhhcyBubyBhdHRyaWJ1dGUgJ2lkJwoKUmVxdWVzdCBNZXRob2Q6IFBPU1QKUmVxdWVzdCBVUkw6IGh0dHA6Ly8xMjcuMC4wLjE6ODAwMC9hcGkvc3R1ZGVudHMvMS9ib29rbWFya2VkLXZhY2FuY2llcy8KRGphbmdvIFZlcnNpb246IDEuMTAuNQpQeXRob24gRXhlY3V0YWJsZTogQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXHB5dGhvbi5leGUKUHl0aG9uIFZlcnNpb246IDMuNi4wClB5dGhvbiBQYXRoOiBbJ0Q6XFxQUExBJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXHB5dGhvbjM2LnppcCcsICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyXFxETExzJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXGxpYicsICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXGxpYlxcc2l0ZS1wYWNrYWdlcyddClNlcnZlciB0aW1lOiBNb24sIDI3IE1hciAyMDE3IDE1OjUxOjMwICswMDAwCkluc3RhbGxlZCBBcHBsaWNhdGlvbnM6ClsnZGphbmdvLmNvbnRyaWIuYWRtaW4nLAogJ2RqYW5nby5jb250cmliLmF1dGgnLAogJ2RqYW5nby5jb250cmliLmNvbnRlbnR0eXBlcycsCiAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMnLAogJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzJywKICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcycsCiAnd2VicGFja19sb2FkZXInLAogJ2NvcmUnLAogJ3Jlc3RfZnJhbWV3b3JrJywKICdkamFuZ29fbm9zZScsCiAncmVzdF9mcmFtZXdvcmtfc3dhZ2dlcicsCiAnc2lsayddCkluc3RhbGxlZCBNaWRkbGV3YXJlOgpbJ2RqYW5nby5taWRkbGV3YXJlLnNlY3VyaXR5LlNlY3VyaXR5TWlkZGxld2FyZScsCiAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMubWlkZGxld2FyZS5TZXNzaW9uTWlkZGxld2FyZScsCiAnZGphbmdvLm1pZGRsZXdhcmUuY29tbW9uLkNvbW1vbk1pZGRsZXdhcmUnLAogJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5hdXRoLm1pZGRsZXdhcmUuQXV0aGVudGljYXRpb25NaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5tZXNzYWdlcy5taWRkbGV3YXJlLk1lc3NhZ2VNaWRkbGV3YXJlJywKICdkamFuZ28ubWlkZGxld2FyZS5jbGlja2phY2tpbmcuWEZyYW1lT3B0aW9uc01pZGRsZXdhcmUnLAogJ3NpbGsubWlkZGxld2FyZS5TaWxreU1pZGRsZXdhcmUnXQoKClRyYWNlYmFjazogIAoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXGRqYW5nb1xjb3JlXGhhbmRsZXJzXGV4Y2VwdGlvbi5weSIgaW4gaW5uZXIKICAzOS4gICAgICAgICAgICAgcmVzcG9uc2UgPSBnZXRfcmVzcG9uc2UocmVxdWVzdCkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cY29yZVxoYW5kbGVyc1xiYXNlLnB5IiBpbiBfZ2V0X3Jlc3BvbnNlCiAgMTg3LiAgICAgICAgICAgICAgICAgcmVzcG9uc2UgPSBzZWxmLnByb2Nlc3NfZXhjZXB0aW9uX2J5X21pZGRsZXdhcmUoZSwgcmVxdWVzdCkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cY29yZVxoYW5kbGVyc1xiYXNlLnB5IiBpbiBfZ2V0X3Jlc3BvbnNlCiAgMTg1LiAgICAgICAgICAgICAgICAgcmVzcG9uc2UgPSB3cmFwcGVkX2NhbGxiYWNrKHJlcXVlc3QsICpjYWxsYmFja19hcmdzLCAqKmNhbGxiYWNrX2t3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cdmlld3NcZGVjb3JhdG9yc1xjc3JmLnB5IiBpbiB3cmFwcGVkX3ZpZXcKICA1OC4gICAgICAgICByZXR1cm4gdmlld19mdW5jKCphcmdzLCAqKmt3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3c2V0cy5weSIgaW4gdmlldwogIDgzLiAgICAgICAgICAgICByZXR1cm4gc2VsZi5kaXNwYXRjaChyZXF1ZXN0LCAqYXJncywgKiprd2FyZ3MpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNccmVzdF9mcmFtZXdvcmtcdmlld3MucHkiIGluIGRpc3BhdGNoCiAgNDgzLiAgICAgICAgICAgICByZXNwb25zZSA9IHNlbGYuaGFuZGxlX2V4Y2VwdGlvbihleGMpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNccmVzdF9mcmFtZXdvcmtcdmlld3MucHkiIGluIGhhbmRsZV9leGNlcHRpb24KICA0NDMuICAgICAgICAgICAgIHNlbGYucmFpc2VfdW5jYXVnaHRfZXhjZXB0aW9uKGV4YykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3cy5weSIgaW4gZGlzcGF0Y2gKICA0ODAuICAgICAgICAgICAgIHJlc3BvbnNlID0gaGFuZGxlcihyZXF1ZXN0LCAqYXJncywgKiprd2FyZ3MpCgpGaWxlICJEOlxQUExBXGNvcmVcdmlld3NcYWNjb3VudHMucHkiIGluIGJvb2ttYXJrX3ZhY2FuY2llcwogIDMwLiAgICAgICAgIHZhY2FuY3kgPSBnZXRfb2JqZWN0X29yXzQwNChWYWNhbmN5Lm9iamVjdHMuYWxsKCksIHBrPXJlcXVlc3QuZGF0YS5pZCkKCkV4Y2VwdGlvbiBUeXBlOiBBdHRyaWJ1dGVFcnJvciBhdCAvYXBpL3N0dWRlbnRzLzEvYm9va21hcmtlZC12YWNhbmNpZXMvCkV4Y2VwdGlvbiBWYWx1ZTogJ2RpY3QnIG9iamVjdCBoYXMgbm8gYXR0cmlidXRlICdpZCcKUmVxdWVzdCBpbmZvcm1hdGlvbjoKVVNFUjoga2FwZQoKR0VUOiBObyBHRVQgZGF0YQoKUE9TVDogTm8gUE9TVCBkYXRhCgpGSUxFUzogTm8gRklMRVMgZGF0YQoKQ09PS0lFUzoKc2Vzc2lvbmlkID0gJ2JsdDg3N2c1ZmptdWN4eTNkZDV1eGNpemF2YjlvcG92Jwpjc3JmdG9rZW4gPSAnMUVFUDJTd0t0MUs5UWJXbkZQU3lXUElpYnRPN01BYVZxS0xFZW9vRmdZVnlkallQb2duME93cDI5b1VXNkE2SycKCk1FVEE6CkFMTFVTRVJTUFJPRklMRSA9ICdDOlxcUHJvZ3JhbURhdGEnCkFQUERBVEEgPSAnQzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmcnCkNPTU1PTlBST0dSQU1GSUxFUyA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcQ29tbW9uIEZpbGVzJwpDT01NT05QUk9HUkFNRklMRVMoWDg2KSA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcQ29tbW9uIEZpbGVzJwpDT01NT05QUk9HUkFNVzY0MzIgPSAnQzpcXFByb2dyYW0gRmlsZXNcXENvbW1vbiBGaWxlcycKQ09NUFVURVJOQU1FID0gJ0ZBUkhBTicKQ09NU1BFQyA9ICdDOlxcV0lORE9XU1xcc3lzdGVtMzJcXGNtZC5leGUnCkNPTlRFTlRfTEVOR1RIID0gJzEyOCcKQ09OVEVOVF9UWVBFID0gJ2FwcGxpY2F0aW9uL2pzb24nCkNTUkZfQ09PS0lFID0gJzFFRVAyU3dLdDFLOVFiV25GUFN5V1BJaWJ0TzdNQWFWcUtMRWVvb0ZnWVZ5ZGpZUG9nbjBPd3AyOW9VVzZBNksnCkRKQU5HT19TRVRUSU5HU19NT0RVTEUgPSAna2FwZS5zZXR0aW5ncycKRlBTX0JST1dTRVJfQVBQX1BST0ZJTEVfU1RSSU5HID0gJ0ludGVybmV0IEV4cGxvcmVyJwpGUFNfQlJPV1NFUl9VU0VSX1BST0ZJTEVfU1RSSU5HID0gJ0RlZmF1bHQnCkZQX05PX0hPU1RfQ0hFQ0sgPSAnTk8nCkdBVEVXQVlfSU5URVJGQUNFID0gJ0NHSS8xLjEnCkhPTUVEUklWRSA9ICdDOicKSE9NRVBBVEggPSAnXFxVc2Vyc1xcZmFyaGFfMDAwJwpIVFRQX0FDQ0VQVCA9ICdhcHBsaWNhdGlvbi9qc29uJwpIVFRQX0FDQ0VQVF9FTkNPRElORyA9ICdnemlwLCBkZWZsYXRlLCBicicKSFRUUF9BQ0NFUFRfTEFOR1VBR0UgPSAnaWQtSUQsaWQ7cT0wLjgsZW4tVVM7cT0wLjYsZW47cT0wLjQnCkhUVFBfQ09OTkVDVElPTiA9ICdrZWVwLWFsaXZlJwpIVFRQX0NPT0tJRSA9ICdzZXNzaW9uaWQ9Ymx0ODc3ZzVmam11Y3h5M2RkNXV4Y2l6YXZiOW9wb3Y7IGNzcmZ0b2tlbj0xRUVQMlN3S3QxSzlRYlduRlBTeVdQSWlidE83TUFhVnFLTEVlb29GZ1lWeWRqWVBvZ24wT3dwMjlvVVc2QTZLJwpIVFRQX0hPU1QgPSAnMTI3LjAuMC4xOjgwMDAnCkhUVFBfT1JJR0lOID0gJ2h0dHA6Ly8xMjcuMC4wLjE6ODAwMCcKSFRUUF9SRUZFUkVSID0gJ2h0dHA6Ly8xMjcuMC4wLjE6ODAwMC9hcGknCkhUVFBfVVNFUl9BR0VOVCA9ICdNb3ppbGxhLzUuMCAoV2luZG93cyBOVCAxMC4wOyBXT1c2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzU2LjAuMjkyNC44NyBTYWZhcmkvNTM3LjM2JwpIVFRQX1hfQ1NSRlRPS0VOID0gJ2pxOTFCdUY1ZTVSN1NqTUZSYzJUTmZ2V1U4bERPNnd5SXdnUU4weDAxMjJ3ZnJPN0FEeGxGV2NHUzNyczg2c24nCkxPQ0FMQVBQREFUQSA9ICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWwnCkxPR09OU0VSVkVSID0gJ1xcXFxGQVJIQU4nCk5VTUJFUl9PRl9QUk9DRVNTT1JTID0gJzInCk9ORURSSVZFID0gJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxPbmVEcml2ZScKT1MgPSAnV2luZG93c19OVCcKUEFUSCA9ICdDOlxcUHJvZ3JhbURhdGFcXE9yYWNsZVxcSmF2YVxcamF2YXBhdGg7QzpcXFByb2dyYW0gRmlsZXNcXEhhc2tlbGxcXGJpbjtDOlxcUHJvZ3JhbSBGaWxlc1xcSGFza2VsbCBQbGF0Zm9ybVxcNy4xMC4zXFxsaWJcXGV4dHJhbGlic1xcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxIYXNrZWxsIFBsYXRmb3JtXFw3LjEwLjNcXGJpbjtDOlxcV0lORE9XU1xcc3lzdGVtMzI7QzpcXFdJTkRPV1M7QzpcXFdJTkRPV1NcXFN5c3RlbTMyXFxXYmVtO0M6XFxXSU5ET1dTXFxTeXN0ZW0zMlxcV2luZG93c1Bvd2VyU2hlbGxcXHYxLjBcXDtDOlxcUHJvZ3JhbSBGaWxlc1xcSGFza2VsbCBQbGF0Zm9ybVxcNy4xMC4zXFxtaW5nd1xcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxKYXZhXFxqZGsxLjguMF83N1xcYmluO0M6XFxjeWd3aW42NFxcYmluOyVsb2NhbGFwcGRhdGElXFxNaWNyb3NvZnRcXFdpbmRvd3NBcHBzO0Q6XFxYQU1QUFxccGhwO0M6XFxQcm9ncmFtIEZpbGVzXFxHaXRcXGNtZDtDOlxceGFtcHBcXHBocDtDOlxcUHJvZ3JhbURhdGFcXENvbXBvc2VyU2V0dXBcXGJpbjtDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcbm9kZWpzXFw7QzpcXFByb2dyYW0gRmlsZXNcXFBvc3RncmVTUUxcXDkuNlxcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxNQVRMQUJcXFIyMDE3YVxcYmluO0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXFNjcmlwdHNcXDtDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyXFw7QzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmdcXGNhYmFsXFxiaW47RDpcXFhBTVBQXFxwaHA7QzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmdcXENvbXBvc2VyXFx2ZW5kb3JcXGJpbjtDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXE1pY3Jvc29mdFxcV2luZG93c0FwcHM7QzpcXHB5dGhvbi0zLjYuMCcKUEFUSEVYVCA9ICcuQ09NOy5FWEU7LkJBVDsuQ01EOy5WQlM7LlZCRTsuSlM7LkpTRTsuV1NGOy5XU0g7Lk1TQycKUEFUSF9JTkZPID0gJy9hcGkvc3R1ZGVudHMvMS9ib29rbWFya2VkLXZhY2FuY2llcy8nClBST0NFU1NPUl9BUkNISVRFQ1RVUkUgPSAneDg2JwpQUk9DRVNTT1JfQVJDSElURVc2NDMyID0gJ0FNRDY0JwpQUk9DRVNTT1JfSURFTlRJRklFUiA9ICdJbnRlbDY0IEZhbWlseSA2IE1vZGVsIDU4IFN0ZXBwaW5nIDksIEdlbnVpbmVJbnRlbCcKUFJPQ0VTU09SX0xFVkVMID0gJzYnClBST0NFU1NPUl9SRVZJU0lPTiA9ICczYTA5JwpQUk9HUkFNREFUQSA9ICdDOlxcUHJvZ3JhbURhdGEnClBST0dSQU1GSUxFUyA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KScKUFJPR1JBTUZJTEVTKFg4NikgPSAnQzpcXFByb2dyYW0gRmlsZXMgKHg4NiknClBST0dSQU1XNjQzMiA9ICdDOlxcUHJvZ3JhbSBGaWxlcycKUFJPTVBUID0gJyRQJEcnClBTTU9EVUxFUEFUSCA9ICdDOlxcV0lORE9XU1xcc3lzdGVtMzJcXFdpbmRvd3NQb3dlclNoZWxsXFx2MS4wXFxNb2R1bGVzXFwnClBVQkxJQyA9ICdDOlxcVXNlcnNcXFB1YmxpYycKUVVFUllfU1RSSU5HID0gJycKUkVNT1RFX0FERFIgPSAnMTI3LjAuMC4xJwpSRU1PVEVfSE9TVCA9ICcnClJFUVVFU1RfTUVUSE9EID0gJ1BPU1QnClJVTl9NQUlOID0gJ3RydWUnClNDUklQVF9OQU1FID0gJycKU0VSVkVSX05BTUUgPSAnRmFyaGFuJwpTRVJWRVJfUE9SVCA9ICc4MDAwJwpTRVJWRVJfUFJPVE9DT0wgPSAnSFRUUC8xLjEnClNFUlZFUl9TT0ZUV0FSRSA9ICdXU0dJU2VydmVyLzAuMicKU0VTU0lPTk5BTUUgPSAnQ29uc29sZScKU1lTVEVNRFJJVkUgPSAnQzonClNZU1RFTVJPT1QgPSAnQzpcXFdJTkRPV1MnClRFTVAgPSAnQzpcXFVzZXJzXFxGQVJIQV9+MVxcQXBwRGF0YVxcTG9jYWxcXFRlbXAnClRNUCA9ICdDOlxcVXNlcnNcXEZBUkhBX34xXFxBcHBEYXRhXFxMb2NhbFxcVGVtcCcKVVNFUkRPTUFJTiA9ICdGYXJoYW4nClVTRVJET01BSU5fUk9BTUlOR1BST0ZJTEUgPSAnRmFyaGFuJwpVU0VSTkFNRSA9ICdGYXJoYW4gRmFyYXNkYWsnClVTRVJQUk9GSUxFID0gJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwJwpWQk9YX01TSV9JTlNUQUxMX1BBVEggPSAnQzpcXFByb2dyYW0gRmlsZXNcXE9yYWNsZVxcVmlydHVhbEJveFxcJwpXSU5ESVIgPSAnQzpcXFdJTkRPV1MnCndzZ2kuZXJyb3JzID0gPF9pby5UZXh0SU9XcmFwcGVyIG5hbWU9JzxzdGRlcnI+JyBtb2RlPSd3JyBlbmNvZGluZz0ndXRmLTgnPgp3c2dpLmZpbGVfd3JhcHBlciA9ICcnCndzZ2kuaW5wdXQgPSA8X2lvLkJ1ZmZlcmVkUmVhZGVyIG5hbWU9MTI3Nj4Kd3NnaS5tdWx0aXByb2Nlc3MgPSBGYWxzZQp3c2dpLm11bHRpdGhyZWFkID0gVHJ1ZQp3c2dpLnJ1bl9vbmNlID0gRmFsc2UKd3NnaS51cmxfc2NoZW1lID0gJ2h0dHAnCndzZ2kudmVyc2lvbiA9IAoKU2V0dGluZ3M6ClVzaW5nIHNldHRpbmdzIG1vZHVsZSBrYXBlLnNldHRpbmdzCkFCU09MVVRFX1VSTF9PVkVSUklERVMgPSB7fQpBRE1JTlMgPSBbXQpBTExPV0VEX0hPU1RTID0gWydib3QucmVjcnVpdC5pZCcsICcxMDQuMjM2Ljc2LjE2MScsICdsb2NhbGhvc3QnLCAnMTI3LjAuMC4xJ10KQVBQRU5EX1NMQVNIID0gVHJ1ZQpBVVRIRU5USUNBVElPTl9CQUNLRU5EUyA9IFsnZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQnXQpBVVRIX1BBU1NXT1JEX1ZBTElEQVRPUlMgPSAnKioqKioqKioqKioqKioqKioqKionCkFVVEhfVVNFUl9NT0RFTCA9ICdhdXRoLlVzZXInCkJBU0VfRElSID0gJ0Q6XFxQUExBJwpDQUNIRVMgPSB7J2RlZmF1bHQnOiB7J0JBQ0tFTkQnOiAnZGphbmdvLmNvcmUuY2FjaGUuYmFja2VuZHMubG9jbWVtLkxvY01lbUNhY2hlJ319CkNBQ0hFX01JRERMRVdBUkVfQUxJQVMgPSAnZGVmYXVsdCcKQ0FDSEVfTUlERExFV0FSRV9LRVlfUFJFRklYID0gJyoqKioqKioqKioqKioqKioqKioqJwpDQUNIRV9NSURETEVXQVJFX1NFQ09ORFMgPSA2MDAKQ1NSRl9DT09LSUVfQUdFID0gMzE0NDk2MDAKQ1NSRl9DT09LSUVfRE9NQUlOID0gTm9uZQpDU1JGX0NPT0tJRV9IVFRQT05MWSA9IEZhbHNlCkNTUkZfQ09PS0lFX05BTUUgPSAnY3NyZnRva2VuJwpDU1JGX0NPT0tJRV9QQVRIID0gJy8nCkNTUkZfQ09PS0lFX1NFQ1VSRSA9IEZhbHNlCkNTUkZfRkFJTFVSRV9WSUVXID0gJ2RqYW5nby52aWV3cy5jc3JmLmNzcmZfZmFpbHVyZScKQ1NSRl9IRUFERVJfTkFNRSA9ICdIVFRQX1hfQ1NSRlRPS0VOJwpDU1JGX1RSVVNURURfT1JJR0lOUyA9IFtdCkRBVEFCQVNFUyA9IHsnZGVmYXVsdCc6IHsnRU5HSU5FJzogJ2RqYW5nby5kYi5iYWNrZW5kcy5wb3N0Z3Jlc3FsX3BzeWNvcGcyJywgJ05BTUUnOiAna2FwZScsICdVU0VSJzogJ2thcGUnLCAnUEFTU1dPUkQnOiAnKioqKioqKioqKioqKioqKioqKionLCAnSE9TVCc6ICdsb2NhbGhvc3QnLCAnUE9SVCc6ICcnLCAnQVRPTUlDX1JFUVVFU1RTJzogRmFsc2UsICdBVVRPQ09NTUlUJzogVHJ1ZSwgJ0NPTk5fTUFYX0FHRSc6IDAsICdPUFRJT05TJzoge30sICdUSU1FX1pPTkUnOiBOb25lLCAnVEVTVCc6IHsnQ0hBUlNFVCc6IE5vbmUsICdDT0xMQVRJT04nOiBOb25lLCAnTkFNRSc6IE5vbmUsICdNSVJST1InOiBOb25lfX19CkRBVEFCQVNFX1JPVVRFUlMgPSBbXQpEQVRBX1VQTE9BRF9NQVhfTUVNT1JZX1NJWkUgPSAyNjIxNDQwCkRBVEFfVVBMT0FEX01BWF9OVU1CRVJfRklFTERTID0gMTAwMApEQVRFVElNRV9GT1JNQVQgPSAnTiBqLCBZLCBQJwpEQVRFVElNRV9JTlBVVF9GT1JNQVRTID0gWyclWS0lbS0lZCAlSDolTTolUycsICclWS0lbS0lZCAlSDolTTolUy4lZicsICclWS0lbS0lZCAlSDolTScsICclWS0lbS0lZCcsICclbS8lZC8lWSAlSDolTTolUycsICclbS8lZC8lWSAlSDolTTolUy4lZicsICclbS8lZC8lWSAlSDolTScsICclbS8lZC8lWScsICclbS8lZC8leSAlSDolTTolUycsICclbS8lZC8leSAlSDolTTolUy4lZicsICclbS8lZC8leSAlSDolTScsICclbS8lZC8leSddCkRBVEVfRk9STUFUID0gJ04gaiwgWScKREFURV9JTlBVVF9GT1JNQVRTID0gWyclWS0lbS0lZCcsICclbS8lZC8lWScsICclbS8lZC8leScsICclYiAlZCAlWScsICclYiAlZCwgJVknLCAnJWQgJWIgJVknLCAnJWQgJWIsICVZJywgJyVCICVkICVZJywgJyVCICVkLCAlWScsICclZCAlQiAlWScsICclZCAlQiwgJVknXQpERUJVRyA9IFRydWUKREVCVUdfUFJPUEFHQVRFX0VYQ0VQVElPTlMgPSBGYWxzZQpERUNJTUFMX1NFUEFSQVRPUiA9ICcuJwpERUZBVUxUX0NIQVJTRVQgPSAndXRmLTgnCkRFRkFVTFRfQ09OVEVOVF9UWVBFID0gJ3RleHQvaHRtbCcKREVGQVVMVF9FWENFUFRJT05fUkVQT1JURVJfRklMVEVSID0gJ2RqYW5nby52aWV3cy5kZWJ1Zy5TYWZlRXhjZXB0aW9uUmVwb3J0ZXJGaWx0ZXInCkRFRkFVTFRfRklMRV9TVE9SQUdFID0gJ2RqYW5nby5jb3JlLmZpbGVzLnN0b3JhZ2UuRmlsZVN5c3RlbVN0b3JhZ2UnCkRFRkFVTFRfRlJPTV9FTUFJTCA9ICd3ZWJtYXN0ZXJAbG9jYWxob3N0JwpERUZBVUxUX0lOREVYX1RBQkxFU1BBQ0UgPSAnJwpERUZBVUxUX1RBQkxFU1BBQ0UgPSAnJwpESVNBTExPV0VEX1VTRVJfQUdFTlRTID0gW10KRU1BSUxfQkFDS0VORCA9ICdkamFuZ28uY29yZS5tYWlsLmJhY2tlbmRzLnNtdHAuRW1haWxCYWNrZW5kJwpFTUFJTF9IT1NUID0gJ2xvY2FsaG9zdCcKRU1BSUxfSE9TVF9QQVNTV09SRCA9ICcqKioqKioqKioqKioqKioqKioqKicKRU1BSUxfSE9TVF9VU0VSID0gJycKRU1BSUxfUE9SVCA9IDI1CkVNQUlMX1NTTF9DRVJURklMRSA9IE5vbmUKRU1BSUxfU1NMX0tFWUZJTEUgPSAnKioqKioqKioqKioqKioqKioqKionCkVNQUlMX1NVQkpFQ1RfUFJFRklYID0gJ1tEamFuZ29dICcKRU1BSUxfVElNRU9VVCA9IE5vbmUKRU1BSUxfVVNFX1NTTCA9IEZhbHNlCkVNQUlMX1VTRV9UTFMgPSBGYWxzZQpGSUxFX0NIQVJTRVQgPSAndXRmLTgnCkZJTEVfVVBMT0FEX0RJUkVDVE9SWV9QRVJNSVNTSU9OUyA9IE5vbmUKRklMRV9VUExPQURfSEFORExFUlMgPSBbJ2RqYW5nby5jb3JlLmZpbGVzLnVwbG9hZGhhbmRsZXIuTWVtb3J5RmlsZVVwbG9hZEhhbmRsZXInLCAnZGphbmdvLmNvcmUuZmlsZXMudXBsb2FkaGFuZGxlci5UZW1wb3JhcnlGaWxlVXBsb2FkSGFuZGxlciddCkZJTEVfVVBMT0FEX01BWF9NRU1PUllfU0laRSA9IDI2MjE0NDAKRklMRV9VUExPQURfUEVSTUlTU0lPTlMgPSBOb25lCkZJTEVfVVBMT0FEX1RFTVBfRElSID0gTm9uZQpGSVJTVF9EQVlfT0ZfV0VFSyA9IDAKRklYVFVSRV9ESVJTID0gW10KRk9SQ0VfU0NSSVBUX05BTUUgPSBOb25lCkZPUk1BVF9NT0RVTEVfUEFUSCA9IE5vbmUKR1pJUF9DT05URU5UX1RZUEVTID0gCklHTk9SQUJMRV80MDRfVVJMUyA9IFtdCklOU1RBTExFRF9BUFBTID0gWydkamFuZ28uY29udHJpYi5hZG1pbicsICdkamFuZ28uY29udHJpYi5hdXRoJywgJ2RqYW5nby5jb250cmliLmNvbnRlbnR0eXBlcycsICdkamFuZ28uY29udHJpYi5zZXNzaW9ucycsICdkamFuZ28uY29udHJpYi5tZXNzYWdlcycsICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcycsICd3ZWJwYWNrX2xvYWRlcicsICdjb3JlJywgJ3Jlc3RfZnJhbWV3b3JrJywgJ2RqYW5nb19ub3NlJywgJ3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXInLCAnc2lsayddCklOVEVSTkFMX0lQUyA9IFtdCkxBTkdVQUdFUyA9IFsoJ2FmJywgJ0FmcmlrYWFucycpLCAoJ2FyJywgJ0FyYWJpYycpLCAoJ2FzdCcsICdBc3R1cmlhbicpLCAoJ2F6JywgJ0F6ZXJiYWlqYW5pJyksICgnYmcnLCAnQnVsZ2FyaWFuJyksICgnYmUnLCAnQmVsYXJ1c2lhbicpLCAoJ2JuJywgJ0JlbmdhbGknKSwgKCdicicsICdCcmV0b24nKSwgKCdicycsICdCb3NuaWFuJyksICgnY2EnLCAnQ2F0YWxhbicpLCAoJ2NzJywgJ0N6ZWNoJyksICgnY3knLCAnV2Vsc2gnKSwgKCdkYScsICdEYW5pc2gnKSwgKCdkZScsICdHZXJtYW4nKSwgKCdkc2InLCAnTG93ZXIgU29yYmlhbicpLCAoJ2VsJywgJ0dyZWVrJyksICgnZW4nLCAnRW5nbGlzaCcpLCAoJ2VuLWF1JywgJ0F1c3RyYWxpYW4gRW5nbGlzaCcpLCAoJ2VuLWdiJywgJ0JyaXRpc2ggRW5nbGlzaCcpLCAoJ2VvJywgJ0VzcGVyYW50bycpLCAoJ2VzJywgJ1NwYW5pc2gnKSwgKCdlcy1hcicsICdBcmdlbnRpbmlhbiBTcGFuaXNoJyksICgnZXMtY28nLCAnQ29sb21iaWFuIFNwYW5pc2gnKSwgKCdlcy1teCcsICdNZXhpY2FuIFNwYW5pc2gnKSwgKCdlcy1uaScsICdOaWNhcmFndWFuIFNwYW5pc2gnKSwgKCdlcy12ZScsICdWZW5lenVlbGFuIFNwYW5pc2gnKSwgKCdldCcsICdFc3RvbmlhbicpLCAoJ2V1JywgJ0Jhc3F1ZScpLCAoJ2ZhJywgJ1BlcnNpYW4nKSwgKCdmaScsICdGaW5uaXNoJyksICgnZnInLCAnRnJlbmNoJyksICgnZnknLCAnRnJpc2lhbicpLCAoJ2dhJywgJ0lyaXNoJyksICgnZ2QnLCAnU2NvdHRpc2ggR2FlbGljJyksICgnZ2wnLCAnR2FsaWNpYW4nKSwgKCdoZScsICdIZWJyZXcnKSwgKCdoaScsICdIaW5kaScpLCAoJ2hyJywgJ0Nyb2F0aWFuJyksICgnaHNiJywgJ1VwcGVyIFNvcmJpYW4nKSwgKCdodScsICdIdW5nYXJpYW4nKSwgKCdpYScsICdJbnRlcmxpbmd1YScpLCAoJ2lkJywgJ0luZG9uZXNpYW4nKSwgKCdpbycsICdJZG8nKSwgKCdpcycsICdJY2VsYW5kaWMnKSwgKCdpdCcsICdJdGFsaWFuJyksICgnamEnLCAnSmFwYW5lc2UnKSwgKCdrYScsICdHZW9yZ2lhbicpLCAoJ2trJywgJ0themFraCcpLCAoJ2ttJywgJ0tobWVyJyksICgna24nLCAnS2FubmFkYScpLCAoJ2tvJywgJ0tvcmVhbicpLCAoJ2xiJywgJ0x1eGVtYm91cmdpc2gnKSwgKCdsdCcsICdMaXRodWFuaWFuJyksICgnbHYnLCAnTGF0dmlhbicpLCAoJ21rJywgJ01hY2Vkb25pYW4nKSwgKCdtbCcsICdNYWxheWFsYW0nKSwgKCdtbicsICdNb25nb2xpYW4nKSwgKCdtcicsICdNYXJhdGhpJyksICgnbXknLCAnQnVybWVzZScpLCAoJ25iJywgJ05vcndlZ2lhbiBCb2ttw6VsJyksICgnbmUnLCAnTmVwYWxpJyksICgnbmwnLCAnRHV0Y2gnKSwgKCdubicsICdOb3J3ZWdpYW4gTnlub3JzaycpLCAoJ29zJywgJ09zc2V0aWMnKSwgKCdwYScsICdQdW5qYWJpJyksICgncGwnLCAnUG9saXNoJyksICgncHQnLCAnUG9ydHVndWVzZScpLCAoJ3B0LWJyJywgJ0JyYXppbGlhbiBQb3J0dWd1ZXNlJyksICgncm8nLCAnUm9tYW5pYW4nKSwgKCdydScsICdSdXNzaWFuJyksICgnc2snLCAnU2xvdmFrJyksICgnc2wnLCAnU2xvdmVuaWFuJyksICgnc3EnLCAnQWxiYW5pYW4nKSwgKCdzcicsICdTZXJiaWFuJyksICgnc3ItbGF0bicsICdTZXJiaWFuIExhdGluJyksICgnc3YnLCAnU3dlZGlzaCcpLCAoJ3N3JywgJ1N3YWhpbGknKSwgKCd0YScsICdUYW1pbCcpLCAoJ3RlJywgJ1RlbHVndScpLCAoJ3RoJywgJ1RoYWknKSwgKCd0cicsICdUdXJraXNoJyksICgndHQnLCAnVGF0YXInKSwgKCd1ZG0nLCAnVWRtdXJ0JyksICgndWsnLCAnVWtyYWluaWFuJyksICgndXInLCAnVXJkdScpLCAoJ3ZpJywgJ1ZpZXRuYW1lc2UnKSwgKCd6aC1oYW5zJywgJ1NpbXBsaWZpZWQgQ2hpbmVzZScpLCAoJ3poLWhhbnQnLCAnVHJhZGl0aW9uYWwgQ2hpbmVzZScpXQpMQU5HVUFHRVNfQklESSA9IFsnaGUnLCAnYXInLCAnZmEnLCAndXInXQpMQU5HVUFHRV9DT0RFID0gJ2VuLXVzJwpMQU5HVUFHRV9DT09LSUVfQUdFID0gTm9uZQpMQU5HVUFHRV9DT09LSUVfRE9NQUlOID0gTm9uZQpMQU5HVUFHRV9DT09LSUVfTkFNRSA9ICdkamFuZ29fbGFuZ3VhZ2UnCkxBTkdVQUdFX0NPT0tJRV9QQVRIID0gJy8nCkxPQ0FMRV9QQVRIUyA9IFtdCkxPR0dJTkcgPSB7fQpMT0dHSU5HX0NPTkZJRyA9ICdsb2dnaW5nLmNvbmZpZy5kaWN0Q29uZmlnJwpMT0dJTl9SRURJUkVDVF9VUkwgPSAnL2FjY291bnRzL3Byb2ZpbGUvJwpMT0dJTl9VUkwgPSAnL2FjY291bnRzL2xvZ2luLycKTE9HT1VUX1JFRElSRUNUX1VSTCA9IE5vbmUKTUFOQUdFUlMgPSBbXQpNRURJQV9ST09UID0gJy9ob21lL2ZpbGVzJwpNRURJQV9VUkwgPSAnL2ZpbGVzLycKTUVTU0FHRV9TVE9SQUdFID0gJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzLnN0b3JhZ2UuZmFsbGJhY2suRmFsbGJhY2tTdG9yYWdlJwpNSURETEVXQVJFID0gWydkamFuZ28ubWlkZGxld2FyZS5zZWN1cml0eS5TZWN1cml0eU1pZGRsZXdhcmUnLCAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMubWlkZGxld2FyZS5TZXNzaW9uTWlkZGxld2FyZScsICdkamFuZ28ubWlkZGxld2FyZS5jb21tb24uQ29tbW9uTWlkZGxld2FyZScsICdkamFuZ28ubWlkZGxld2FyZS5jc3JmLkNzcmZWaWV3TWlkZGxld2FyZScsICdkamFuZ28uY29udHJpYi5hdXRoLm1pZGRsZXdhcmUuQXV0aGVudGljYXRpb25NaWRkbGV3YXJlJywgJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzLm1pZGRsZXdhcmUuTWVzc2FnZU1pZGRsZXdhcmUnLCAnZGphbmdvLm1pZGRsZXdhcmUuY2xpY2tqYWNraW5nLlhGcmFtZU9wdGlvbnNNaWRkbGV3YXJlJywgJ3NpbGsubWlkZGxld2FyZS5TaWxreU1pZGRsZXdhcmUnXQpNSURETEVXQVJFX0NMQVNTRVMgPSBbJ2RqYW5nby5taWRkbGV3YXJlLmNvbW1vbi5Db21tb25NaWRkbGV3YXJlJywgJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJ10KTUlHUkFUSU9OX01PRFVMRVMgPSB7fQpNT05USF9EQVlfRk9STUFUID0gJ0YgaicKTk9TRV9BUkdTID0gWyctLXdpdGgtY292ZXJhZ2UnLCAnLS1jb3Zlci1wYWNrYWdlPWNvcmUudmlld3MnLCAnLS1jb3Zlci1odG1sLWRpcj10ZXN0L2JhY2tlbmQnLCAnLS1jb3Zlci1odG1sJ10KTlVNQkVSX0dST1VQSU5HID0gMApQQVNTV09SRF9IQVNIRVJTID0gJyoqKioqKioqKioqKioqKioqKioqJwpQQVNTV09SRF9SRVNFVF9USU1FT1VUX0RBWVMgPSAnKioqKioqKioqKioqKioqKioqKionClBSRVBFTkRfV1dXID0gRmFsc2UKUkVTVF9GUkFNRVdPUksgPSB7J0RFRkFVTFRfUEVSTUlTU0lPTl9DTEFTU0VTJzogWydyZXN0X2ZyYW1ld29yay5wZXJtaXNzaW9ucy5EamFuZ29Nb2RlbFBlcm1pc3Npb25zT3JBbm9uUmVhZE9ubHknXX0KUk9PVF9VUkxDT05GID0gJ2thcGUudXJscycKUlVOTklOR19ERVZTRVJWRVIgPSBUcnVlClNFQ1JFVF9LRVkgPSAnKioqKioqKioqKioqKioqKioqKionClNFQ1VSRV9CUk9XU0VSX1hTU19GSUxURVIgPSBGYWxzZQpTRUNVUkVfQ09OVEVOVF9UWVBFX05PU05JRkYgPSBGYWxzZQpTRUNVUkVfSFNUU19JTkNMVURFX1NVQkRPTUFJTlMgPSBGYWxzZQpTRUNVUkVfSFNUU19TRUNPTkRTID0gMApTRUNVUkVfUFJPWFlfU1NMX0hFQURFUiA9IE5vbmUKU0VDVVJFX1JFRElSRUNUX0VYRU1QVCA9IFtdClNFQ1VSRV9TU0xfSE9TVCA9IE5vbmUKU0VDVVJFX1NTTF9SRURJUkVDVCA9IEZhbHNlClNFUlZFUl9FTUFJTCA9ICdyb290QGxvY2FsaG9zdCcKU0VTU0lPTl9DQUNIRV9BTElBUyA9ICdkZWZhdWx0JwpTRVNTSU9OX0NPT0tJRV9BR0UgPSAxMjA5NjAwClNFU1NJT05fQ09PS0lFX0RPTUFJTiA9IE5vbmUKU0VTU0lPTl9DT09LSUVfSFRUUE9OTFkgPSBGYWxzZQpTRVNTSU9OX0NPT0tJRV9OQU1FID0gJ3Nlc3Npb25pZCcKU0VTU0lPTl9DT09LSUVfUEFUSCA9ICcvJwpTRVNTSU9OX0NPT0tJRV9TRUNVUkUgPSBGYWxzZQpTRVNTSU9OX0VOR0lORSA9ICdkamFuZ28uY29udHJpYi5zZXNzaW9ucy5iYWNrZW5kcy5kYicKU0VTU0lPTl9FWFBJUkVfQVRfQlJPV1NFUl9DTE9TRSA9IEZhbHNlClNFU1NJT05fRklMRV9QQVRIID0gTm9uZQpTRVNTSU9OX1NBVkVfRVZFUllfUkVRVUVTVCA9IEZhbHNlClNFU1NJT05fU0VSSUFMSVpFUiA9ICdkamFuZ28uY29udHJpYi5zZXNzaW9ucy5zZXJpYWxpemVycy5KU09OU2VyaWFsaXplcicKU0VUVElOR1NfTU9EVUxFID0gJ2thcGUuc2V0dGluZ3MnClNIT1JUX0RBVEVUSU1FX0ZPUk1BVCA9ICdtL2QvWSBQJwpTSE9SVF9EQVRFX0ZPUk1BVCA9ICdtL2QvWScKU0lHTklOR19CQUNLRU5EID0gJ2RqYW5nby5jb3JlLnNpZ25pbmcuVGltZXN0YW1wU2lnbmVyJwpTSUxFTkNFRF9TWVNURU1fQ0hFQ0tTID0gW10KU1RBVElDRklMRVNfRElSUyA9ICdEOlxcUFBMQVxcYXNzZXRzJwpTVEFUSUNGSUxFU19GSU5ERVJTID0gWydkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcy5maW5kZXJzLkZpbGVTeXN0ZW1GaW5kZXInLCAnZGphbmdvLmNvbnRyaWIuc3RhdGljZmlsZXMuZmluZGVycy5BcHBEaXJlY3Rvcmllc0ZpbmRlciddClNUQVRJQ0ZJTEVTX1NUT1JBR0UgPSAnZGphbmdvLmNvbnRyaWIuc3RhdGljZmlsZXMuc3RvcmFnZS5TdGF0aWNGaWxlc1N0b3JhZ2UnClNUQVRJQ19ST09UID0gJy9ob21lL2Fzc2V0cycKU1RBVElDX1VSTCA9ICcvYXNzZXRzLycKVEVNUExBVEVTID0gW3snQkFDS0VORCc6ICdkamFuZ28udGVtcGxhdGUuYmFja2VuZHMuZGphbmdvLkRqYW5nb1RlbXBsYXRlcycsICdESVJTJzogW10sICdBUFBfRElSUyc6IFRydWUsICdPUFRJT05TJzogeydjb250ZXh0X3Byb2Nlc3NvcnMnOiBbJ2RqYW5nby50ZW1wbGF0ZS5jb250ZXh0X3Byb2Nlc3NvcnMuZGVidWcnLCAnZGphbmdvLnRlbXBsYXRlLmNvbnRleHRfcHJvY2Vzc29ycy5yZXF1ZXN0JywgJ2RqYW5nby5jb250cmliLmF1dGguY29udGV4dF9wcm9jZXNzb3JzLmF1dGgnLCAnZGphbmdvLmNvbnRyaWIubWVzc2FnZXMuY29udGV4dF9wcm9jZXNzb3JzLm1lc3NhZ2VzJ119fV0KVEVTVF9OT05fU0VSSUFMSVpFRF9BUFBTID0gW10KVEVTVF9SVU5ORVIgPSAnZGphbmdvX25vc2UuTm9zZVRlc3RTdWl0ZVJ1bm5lcicKVEhPVVNBTkRfU0VQQVJBVE9SID0gJywnClRJTUVfRk9STUFUID0gJ1AnClRJTUVfSU5QVVRfRk9STUFUUyA9IFsnJUg6JU06JVMnLCAnJUg6JU06JVMuJWYnLCAnJUg6JU0nXQpUSU1FX1pPTkUgPSAnVVRDJwpVU0VfRVRBR1MgPSBGYWxzZQpVU0VfSTE4TiA9IFRydWUKVVNFX0wxME4gPSBUcnVlClVTRV9USE9VU0FORF9TRVBBUkFUT1IgPSBGYWxzZQpVU0VfVFogPSBUcnVlClVTRV9YX0ZPUldBUkRFRF9IT1NUID0gRmFsc2UKVVNFX1hfRk9SV0FSREVEX1BPUlQgPSBGYWxzZQpXRUJQQUNLX0xPQURFUiA9IHsnREVGQVVMVCc6IHsnQlVORExFX0RJUl9OQU1FJzogJ2J1bmRsZXMvJywgJ1NUQVRTX0ZJTEUnOiAnRDpcXFBQTEFcXHdlYnBhY2stc3RhdHMuanNvbid9fQpXU0dJX0FQUExJQ0FUSU9OID0gJ2thcGUud3NnaS5hcHBsaWNhdGlvbicKWF9GUkFNRV9PUFRJT05TID0gJ1NBTUVPUklHSU4nCllFQVJfTU9OVEhfRk9STUFUID0gJ0YgWScKCgpZb3UncmUgc2VlaW5nIHRoaXMgZXJyb3IgYmVjYXVzZSB5b3UgaGF2ZSBERUJVRyA9IFRydWUgaW4geW91cgpEamFuZ28gc2V0dGluZ3MgZmlsZS4gQ2hhbmdlIHRoYXQgdG8gRmFsc2UsIGFuZCBEamFuZ28gd2lsbApkaXNwbGF5IGEgc3RhbmRhcmQgcGFnZSBnZW5lcmF0ZWQgYnkgdGhlIGhhbmRsZXIgZm9yIHRoaXMgc3RhdHVzIGNvZGUuCgo=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/plain\"}" - } -}, -{ - "model": "silk.response", - "pk": "3d78c0cc-505b-42c5-b126-7d8f1498ba56", - "fields": { - "request": "e5f5074b-d001-482c-ae12-05d2879d5249", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "3d82ded6-095b-4562-abb7-3d96a7361a93", - "fields": { - "request": "8dad4955-18ef-463a-815c-a0059292fa25", - "status_code": 500, - "raw_body": "QXR0cmlidXRlRXJyb3IgYXQgL2FwaS9zdHVkZW50cy80L2Jvb2ttYXJrZWQtdmFjYW5jaWVzLwonZGljdCcgb2JqZWN0IGhhcyBubyBhdHRyaWJ1dGUgJ3ZhY2FuY3lfaWQnCgpSZXF1ZXN0IE1ldGhvZDogUE9TVApSZXF1ZXN0IFVSTDogaHR0cDovLzEyNy4wLjAuMTo4MDAwL2FwaS9zdHVkZW50cy80L2Jvb2ttYXJrZWQtdmFjYW5jaWVzLwpEamFuZ28gVmVyc2lvbjogMS4xMC41ClB5dGhvbiBFeGVjdXRhYmxlOiBDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJccHl0aG9uLmV4ZQpQeXRob24gVmVyc2lvbjogMy42LjAKUHl0aG9uIFBhdGg6IFsnRDpcXFBQTEEnLCAnQzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXExvY2FsXFxQcm9ncmFtc1xcUHl0aG9uXFxQeXRob24zNi0zMlxccHl0aG9uMzYuemlwJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXERMTHMnLCAnQzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXExvY2FsXFxQcm9ncmFtc1xcUHl0aG9uXFxQeXRob24zNi0zMlxcbGliJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzInLCAnQzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXExvY2FsXFxQcm9ncmFtc1xcUHl0aG9uXFxQeXRob24zNi0zMlxcbGliXFxzaXRlLXBhY2thZ2VzJ10KU2VydmVyIHRpbWU6IE1vbiwgMjcgTWFyIDIwMTcgMTY6MDU6MzMgKzAwMDAKSW5zdGFsbGVkIEFwcGxpY2F0aW9uczoKWydkamFuZ28uY29udHJpYi5hZG1pbicsCiAnZGphbmdvLmNvbnRyaWIuYXV0aCcsCiAnZGphbmdvLmNvbnRyaWIuY29udGVudHR5cGVzJywKICdkamFuZ28uY29udHJpYi5zZXNzaW9ucycsCiAnZGphbmdvLmNvbnRyaWIubWVzc2FnZXMnLAogJ2RqYW5nby5jb250cmliLnN0YXRpY2ZpbGVzJywKICd3ZWJwYWNrX2xvYWRlcicsCiAnY29yZScsCiAncmVzdF9mcmFtZXdvcmsnLAogJ2RqYW5nb19ub3NlJywKICdyZXN0X2ZyYW1ld29ya19zd2FnZ2VyJywKICdzaWxrJ10KSW5zdGFsbGVkIE1pZGRsZXdhcmU6ClsnZGphbmdvLm1pZGRsZXdhcmUuc2VjdXJpdHkuU2VjdXJpdHlNaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5zZXNzaW9ucy5taWRkbGV3YXJlLlNlc3Npb25NaWRkbGV3YXJlJywKICdkamFuZ28ubWlkZGxld2FyZS5jb21tb24uQ29tbW9uTWlkZGxld2FyZScsCiAnZGphbmdvLm1pZGRsZXdhcmUuY3NyZi5Dc3JmVmlld01pZGRsZXdhcmUnLAogJ2RqYW5nby5jb250cmliLmF1dGgubWlkZGxld2FyZS5BdXRoZW50aWNhdGlvbk1pZGRsZXdhcmUnLAogJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzLm1pZGRsZXdhcmUuTWVzc2FnZU1pZGRsZXdhcmUnLAogJ2RqYW5nby5taWRkbGV3YXJlLmNsaWNramFja2luZy5YRnJhbWVPcHRpb25zTWlkZGxld2FyZScsCiAnc2lsay5taWRkbGV3YXJlLlNpbGt5TWlkZGxld2FyZSddCgoKVHJhY2ViYWNrOiAgCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNcZGphbmdvXGNvcmVcaGFuZGxlcnNcZXhjZXB0aW9uLnB5IiBpbiBpbm5lcgogIDM5LiAgICAgICAgICAgICByZXNwb25zZSA9IGdldF9yZXNwb25zZShyZXF1ZXN0KQoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXGRqYW5nb1xjb3JlXGhhbmRsZXJzXGJhc2UucHkiIGluIF9nZXRfcmVzcG9uc2UKICAxODcuICAgICAgICAgICAgICAgICByZXNwb25zZSA9IHNlbGYucHJvY2Vzc19leGNlcHRpb25fYnlfbWlkZGxld2FyZShlLCByZXF1ZXN0KQoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXGRqYW5nb1xjb3JlXGhhbmRsZXJzXGJhc2UucHkiIGluIF9nZXRfcmVzcG9uc2UKICAxODUuICAgICAgICAgICAgICAgICByZXNwb25zZSA9IHdyYXBwZWRfY2FsbGJhY2socmVxdWVzdCwgKmNhbGxiYWNrX2FyZ3MsICoqY2FsbGJhY2tfa3dhcmdzKQoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXGRqYW5nb1x2aWV3c1xkZWNvcmF0b3JzXGNzcmYucHkiIGluIHdyYXBwZWRfdmlldwogIDU4LiAgICAgICAgIHJldHVybiB2aWV3X2Z1bmMoKmFyZ3MsICoqa3dhcmdzKQoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXHJlc3RfZnJhbWV3b3JrXHZpZXdzZXRzLnB5IiBpbiB2aWV3CiAgODMuICAgICAgICAgICAgIHJldHVybiBzZWxmLmRpc3BhdGNoKHJlcXVlc3QsICphcmdzLCAqKmt3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3cy5weSIgaW4gZGlzcGF0Y2gKICA0ODMuICAgICAgICAgICAgIHJlc3BvbnNlID0gc2VsZi5oYW5kbGVfZXhjZXB0aW9uKGV4YykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3cy5weSIgaW4gaGFuZGxlX2V4Y2VwdGlvbgogIDQ0My4gICAgICAgICAgICAgc2VsZi5yYWlzZV91bmNhdWdodF9leGNlcHRpb24oZXhjKQoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXHJlc3RfZnJhbWV3b3JrXHZpZXdzLnB5IiBpbiBkaXNwYXRjaAogIDQ4MC4gICAgICAgICAgICAgcmVzcG9uc2UgPSBoYW5kbGVyKHJlcXVlc3QsICphcmdzLCAqKmt3YXJncykKCkZpbGUgIkQ6XFBQTEFcY29yZVx2aWV3c1xhY2NvdW50cy5weSIgaW4gYm9va21hcmtfdmFjYW5jaWVzCiAgMzEuICAgICAgICAgdmFjYW5jeSA9IGdldF9vYmplY3Rfb3JfNDA0KFZhY2FuY3kub2JqZWN0cy5hbGwoKSwgcGs9cmVxdWVzdC5kYXRhLnZhY2FuY3lfaWQpCgpFeGNlcHRpb24gVHlwZTogQXR0cmlidXRlRXJyb3IgYXQgL2FwaS9zdHVkZW50cy80L2Jvb2ttYXJrZWQtdmFjYW5jaWVzLwpFeGNlcHRpb24gVmFsdWU6ICdkaWN0JyBvYmplY3QgaGFzIG5vIGF0dHJpYnV0ZSAndmFjYW5jeV9pZCcKUmVxdWVzdCBpbmZvcm1hdGlvbjoKVVNFUjoga2FwZQoKR0VUOiBObyBHRVQgZGF0YQoKUE9TVDogTm8gUE9TVCBkYXRhCgpGSUxFUzogTm8gRklMRVMgZGF0YQoKQ09PS0lFUzoKc2Vzc2lvbmlkID0gJ2JsdDg3N2c1ZmptdWN4eTNkZDV1eGNpemF2YjlvcG92Jwpjc3JmdG9rZW4gPSAnMUVFUDJTd0t0MUs5UWJXbkZQU3lXUElpYnRPN01BYVZxS0xFZW9vRmdZVnlkallQb2duME93cDI5b1VXNkE2SycKCk1FVEE6CkFMTFVTRVJTUFJPRklMRSA9ICdDOlxcUHJvZ3JhbURhdGEnCkFQUERBVEEgPSAnQzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmcnCkNPTU1PTlBST0dSQU1GSUxFUyA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcQ29tbW9uIEZpbGVzJwpDT01NT05QUk9HUkFNRklMRVMoWDg2KSA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcQ29tbW9uIEZpbGVzJwpDT01NT05QUk9HUkFNVzY0MzIgPSAnQzpcXFByb2dyYW0gRmlsZXNcXENvbW1vbiBGaWxlcycKQ09NUFVURVJOQU1FID0gJ0ZBUkhBTicKQ09NU1BFQyA9ICdDOlxcV0lORE9XU1xcc3lzdGVtMzJcXGNtZC5leGUnCkNPTlRFTlRfTEVOR1RIID0gJzIzJwpDT05URU5UX1RZUEUgPSAnYXBwbGljYXRpb24vanNvbicKQ1NSRl9DT09LSUUgPSAnMUVFUDJTd0t0MUs5UWJXbkZQU3lXUElpYnRPN01BYVZxS0xFZW9vRmdZVnlkallQb2duME93cDI5b1VXNkE2SycKREpBTkdPX1NFVFRJTkdTX01PRFVMRSA9ICdrYXBlLnNldHRpbmdzJwpGUFNfQlJPV1NFUl9BUFBfUFJPRklMRV9TVFJJTkcgPSAnSW50ZXJuZXQgRXhwbG9yZXInCkZQU19CUk9XU0VSX1VTRVJfUFJPRklMRV9TVFJJTkcgPSAnRGVmYXVsdCcKRlBfTk9fSE9TVF9DSEVDSyA9ICdOTycKR0FURVdBWV9JTlRFUkZBQ0UgPSAnQ0dJLzEuMScKSE9NRURSSVZFID0gJ0M6JwpIT01FUEFUSCA9ICdcXFVzZXJzXFxmYXJoYV8wMDAnCkhUVFBfQUNDRVBUID0gJ2FwcGxpY2F0aW9uL2pzb24nCkhUVFBfQUNDRVBUX0VOQ09ESU5HID0gJ2d6aXAsIGRlZmxhdGUsIGJyJwpIVFRQX0FDQ0VQVF9MQU5HVUFHRSA9ICdpZC1JRCxpZDtxPTAuOCxlbi1VUztxPTAuNixlbjtxPTAuNCcKSFRUUF9DT05ORUNUSU9OID0gJ2tlZXAtYWxpdmUnCkhUVFBfQ09PS0lFID0gJ3Nlc3Npb25pZD1ibHQ4NzdnNWZqbXVjeHkzZGQ1dXhjaXphdmI5b3BvdjsgY3NyZnRva2VuPTFFRVAyU3dLdDFLOVFiV25GUFN5V1BJaWJ0TzdNQWFWcUtMRWVvb0ZnWVZ5ZGpZUG9nbjBPd3AyOW9VVzZBNksnCkhUVFBfSE9TVCA9ICcxMjcuMC4wLjE6ODAwMCcKSFRUUF9PUklHSU4gPSAnaHR0cDovLzEyNy4wLjAuMTo4MDAwJwpIVFRQX1JFRkVSRVIgPSAnaHR0cDovLzEyNy4wLjAuMTo4MDAwL2FwaScKSFRUUF9VU0VSX0FHRU5UID0gJ01vemlsbGEvNS4wIChXaW5kb3dzIE5UIDEwLjA7IFdPVzY0KSBBcHBsZVdlYktpdC81MzcuMzYgKEtIVE1MLCBsaWtlIEdlY2tvKSBDaHJvbWUvNTYuMC4yOTI0Ljg3IFNhZmFyaS81MzcuMzYnCkhUVFBfWF9DU1JGVE9LRU4gPSAnanE5MUJ1RjVlNVI3U2pNRlJjMlROZnZXVThsRE82d3lJd2dRTjB4MDEyMndmck83QUR4bEZXY0dTM3JzODZzbicKTE9DQUxBUFBEQVRBID0gJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbCcKTE9HT05TRVJWRVIgPSAnXFxcXEZBUkhBTicKTlVNQkVSX09GX1BST0NFU1NPUlMgPSAnMicKT05FRFJJVkUgPSAnQzpcXFVzZXJzXFxmYXJoYV8wMDBcXE9uZURyaXZlJwpPUyA9ICdXaW5kb3dzX05UJwpQQVRIID0gJ0M6XFxQcm9ncmFtRGF0YVxcT3JhY2xlXFxKYXZhXFxqYXZhcGF0aDtDOlxcUHJvZ3JhbSBGaWxlc1xcSGFza2VsbFxcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxIYXNrZWxsIFBsYXRmb3JtXFw3LjEwLjNcXGxpYlxcZXh0cmFsaWJzXFxiaW47QzpcXFByb2dyYW0gRmlsZXNcXEhhc2tlbGwgUGxhdGZvcm1cXDcuMTAuM1xcYmluO0M6XFxXSU5ET1dTXFxzeXN0ZW0zMjtDOlxcV0lORE9XUztDOlxcV0lORE9XU1xcU3lzdGVtMzJcXFdiZW07QzpcXFdJTkRPV1NcXFN5c3RlbTMyXFxXaW5kb3dzUG93ZXJTaGVsbFxcdjEuMFxcO0M6XFxQcm9ncmFtIEZpbGVzXFxIYXNrZWxsIFBsYXRmb3JtXFw3LjEwLjNcXG1pbmd3XFxiaW47QzpcXFByb2dyYW0gRmlsZXNcXEphdmFcXGpkazEuOC4wXzc3XFxiaW47QzpcXGN5Z3dpbjY0XFxiaW47JWxvY2FsYXBwZGF0YSVcXE1pY3Jvc29mdFxcV2luZG93c0FwcHM7RDpcXFhBTVBQXFxwaHA7QzpcXFByb2dyYW0gRmlsZXNcXEdpdFxcY21kO0M6XFx4YW1wcFxccGhwO0M6XFxQcm9ncmFtRGF0YVxcQ29tcG9zZXJTZXR1cFxcYmluO0M6XFxQcm9ncmFtIEZpbGVzICh4ODYpXFxub2RlanNcXDtDOlxcUHJvZ3JhbSBGaWxlc1xcUG9zdGdyZVNRTFxcOS42XFxiaW47QzpcXFByb2dyYW0gRmlsZXNcXE1BVExBQlxcUjIwMTdhXFxiaW47QzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXExvY2FsXFxQcm9ncmFtc1xcUHl0aG9uXFxQeXRob24zNi0zMlxcU2NyaXB0c1xcO0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXDtDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcUm9hbWluZ1xcY2FiYWxcXGJpbjtEOlxcWEFNUFBcXHBocDtDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcUm9hbWluZ1xcQ29tcG9zZXJcXHZlbmRvclxcYmluO0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcTWljcm9zb2Z0XFxXaW5kb3dzQXBwcztDOlxccHl0aG9uLTMuNi4wJwpQQVRIRVhUID0gJy5DT007LkVYRTsuQkFUOy5DTUQ7LlZCUzsuVkJFOy5KUzsuSlNFOy5XU0Y7LldTSDsuTVNDJwpQQVRIX0lORk8gPSAnL2FwaS9zdHVkZW50cy80L2Jvb2ttYXJrZWQtdmFjYW5jaWVzLycKUFJPQ0VTU09SX0FSQ0hJVEVDVFVSRSA9ICd4ODYnClBST0NFU1NPUl9BUkNISVRFVzY0MzIgPSAnQU1ENjQnClBST0NFU1NPUl9JREVOVElGSUVSID0gJ0ludGVsNjQgRmFtaWx5IDYgTW9kZWwgNTggU3RlcHBpbmcgOSwgR2VudWluZUludGVsJwpQUk9DRVNTT1JfTEVWRUwgPSAnNicKUFJPQ0VTU09SX1JFVklTSU9OID0gJzNhMDknClBST0dSQU1EQVRBID0gJ0M6XFxQcm9ncmFtRGF0YScKUFJPR1JBTUZJTEVTID0gJ0M6XFxQcm9ncmFtIEZpbGVzICh4ODYpJwpQUk9HUkFNRklMRVMoWDg2KSA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KScKUFJPR1JBTVc2NDMyID0gJ0M6XFxQcm9ncmFtIEZpbGVzJwpQUk9NUFQgPSAnJFAkRycKUFNNT0RVTEVQQVRIID0gJ0M6XFxXSU5ET1dTXFxzeXN0ZW0zMlxcV2luZG93c1Bvd2VyU2hlbGxcXHYxLjBcXE1vZHVsZXNcXCcKUFVCTElDID0gJ0M6XFxVc2Vyc1xcUHVibGljJwpRVUVSWV9TVFJJTkcgPSAnJwpSRU1PVEVfQUREUiA9ICcxMjcuMC4wLjEnClJFTU9URV9IT1NUID0gJycKUkVRVUVTVF9NRVRIT0QgPSAnUE9TVCcKUlVOX01BSU4gPSAndHJ1ZScKU0NSSVBUX05BTUUgPSAnJwpTRVJWRVJfTkFNRSA9ICdGYXJoYW4nClNFUlZFUl9QT1JUID0gJzgwMDAnClNFUlZFUl9QUk9UT0NPTCA9ICdIVFRQLzEuMScKU0VSVkVSX1NPRlRXQVJFID0gJ1dTR0lTZXJ2ZXIvMC4yJwpTRVNTSU9OTkFNRSA9ICdDb25zb2xlJwpTWVNURU1EUklWRSA9ICdDOicKU1lTVEVNUk9PVCA9ICdDOlxcV0lORE9XUycKVEVNUCA9ICdDOlxcVXNlcnNcXEZBUkhBX34xXFxBcHBEYXRhXFxMb2NhbFxcVGVtcCcKVE1QID0gJ0M6XFxVc2Vyc1xcRkFSSEFffjFcXEFwcERhdGFcXExvY2FsXFxUZW1wJwpVU0VSRE9NQUlOID0gJ0ZhcmhhbicKVVNFUkRPTUFJTl9ST0FNSU5HUFJPRklMRSA9ICdGYXJoYW4nClVTRVJOQU1FID0gJ0ZhcmhhbiBGYXJhc2RhaycKVVNFUlBST0ZJTEUgPSAnQzpcXFVzZXJzXFxmYXJoYV8wMDAnClZCT1hfTVNJX0lOU1RBTExfUEFUSCA9ICdDOlxcUHJvZ3JhbSBGaWxlc1xcT3JhY2xlXFxWaXJ0dWFsQm94XFwnCldJTkRJUiA9ICdDOlxcV0lORE9XUycKd3NnaS5lcnJvcnMgPSA8X2lvLlRleHRJT1dyYXBwZXIgbmFtZT0nPHN0ZGVycj4nIG1vZGU9J3cnIGVuY29kaW5nPSd1dGYtOCc+CndzZ2kuZmlsZV93cmFwcGVyID0gJycKd3NnaS5pbnB1dCA9IDxfaW8uQnVmZmVyZWRSZWFkZXIgbmFtZT0xMTc2Pgp3c2dpLm11bHRpcHJvY2VzcyA9IEZhbHNlCndzZ2kubXVsdGl0aHJlYWQgPSBUcnVlCndzZ2kucnVuX29uY2UgPSBGYWxzZQp3c2dpLnVybF9zY2hlbWUgPSAnaHR0cCcKd3NnaS52ZXJzaW9uID0gCgpTZXR0aW5nczoKVXNpbmcgc2V0dGluZ3MgbW9kdWxlIGthcGUuc2V0dGluZ3MKQUJTT0xVVEVfVVJMX09WRVJSSURFUyA9IHt9CkFETUlOUyA9IFtdCkFMTE9XRURfSE9TVFMgPSBbJ2JvdC5yZWNydWl0LmlkJywgJzEwNC4yMzYuNzYuMTYxJywgJ2xvY2FsaG9zdCcsICcxMjcuMC4wLjEnXQpBUFBFTkRfU0xBU0ggPSBUcnVlCkFVVEhFTlRJQ0FUSU9OX0JBQ0tFTkRTID0gWydkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCddCkFVVEhfUEFTU1dPUkRfVkFMSURBVE9SUyA9ICcqKioqKioqKioqKioqKioqKioqKicKQVVUSF9VU0VSX01PREVMID0gJ2F1dGguVXNlcicKQkFTRV9ESVIgPSAnRDpcXFBQTEEnCkNBQ0hFUyA9IHsnZGVmYXVsdCc6IHsnQkFDS0VORCc6ICdkamFuZ28uY29yZS5jYWNoZS5iYWNrZW5kcy5sb2NtZW0uTG9jTWVtQ2FjaGUnfX0KQ0FDSEVfTUlERExFV0FSRV9BTElBUyA9ICdkZWZhdWx0JwpDQUNIRV9NSURETEVXQVJFX0tFWV9QUkVGSVggPSAnKioqKioqKioqKioqKioqKioqKionCkNBQ0hFX01JRERMRVdBUkVfU0VDT05EUyA9IDYwMApDU1JGX0NPT0tJRV9BR0UgPSAzMTQ0OTYwMApDU1JGX0NPT0tJRV9ET01BSU4gPSBOb25lCkNTUkZfQ09PS0lFX0hUVFBPTkxZID0gRmFsc2UKQ1NSRl9DT09LSUVfTkFNRSA9ICdjc3JmdG9rZW4nCkNTUkZfQ09PS0lFX1BBVEggPSAnLycKQ1NSRl9DT09LSUVfU0VDVVJFID0gRmFsc2UKQ1NSRl9GQUlMVVJFX1ZJRVcgPSAnZGphbmdvLnZpZXdzLmNzcmYuY3NyZl9mYWlsdXJlJwpDU1JGX0hFQURFUl9OQU1FID0gJ0hUVFBfWF9DU1JGVE9LRU4nCkNTUkZfVFJVU1RFRF9PUklHSU5TID0gW10KREFUQUJBU0VTID0geydkZWZhdWx0JzogeydFTkdJTkUnOiAnZGphbmdvLmRiLmJhY2tlbmRzLnBvc3RncmVzcWxfcHN5Y29wZzInLCAnTkFNRSc6ICdrYXBlJywgJ1VTRVInOiAna2FwZScsICdQQVNTV09SRCc6ICcqKioqKioqKioqKioqKioqKioqKicsICdIT1NUJzogJ2xvY2FsaG9zdCcsICdQT1JUJzogJycsICdBVE9NSUNfUkVRVUVTVFMnOiBGYWxzZSwgJ0FVVE9DT01NSVQnOiBUcnVlLCAnQ09OTl9NQVhfQUdFJzogMCwgJ09QVElPTlMnOiB7fSwgJ1RJTUVfWk9ORSc6IE5vbmUsICdURVNUJzogeydDSEFSU0VUJzogTm9uZSwgJ0NPTExBVElPTic6IE5vbmUsICdOQU1FJzogTm9uZSwgJ01JUlJPUic6IE5vbmV9fX0KREFUQUJBU0VfUk9VVEVSUyA9IFtdCkRBVEFfVVBMT0FEX01BWF9NRU1PUllfU0laRSA9IDI2MjE0NDAKREFUQV9VUExPQURfTUFYX05VTUJFUl9GSUVMRFMgPSAxMDAwCkRBVEVUSU1FX0ZPUk1BVCA9ICdOIGosIFksIFAnCkRBVEVUSU1FX0lOUFVUX0ZPUk1BVFMgPSBbJyVZLSVtLSVkICVIOiVNOiVTJywgJyVZLSVtLSVkICVIOiVNOiVTLiVmJywgJyVZLSVtLSVkICVIOiVNJywgJyVZLSVtLSVkJywgJyVtLyVkLyVZICVIOiVNOiVTJywgJyVtLyVkLyVZICVIOiVNOiVTLiVmJywgJyVtLyVkLyVZICVIOiVNJywgJyVtLyVkLyVZJywgJyVtLyVkLyV5ICVIOiVNOiVTJywgJyVtLyVkLyV5ICVIOiVNOiVTLiVmJywgJyVtLyVkLyV5ICVIOiVNJywgJyVtLyVkLyV5J10KREFURV9GT1JNQVQgPSAnTiBqLCBZJwpEQVRFX0lOUFVUX0ZPUk1BVFMgPSBbJyVZLSVtLSVkJywgJyVtLyVkLyVZJywgJyVtLyVkLyV5JywgJyViICVkICVZJywgJyViICVkLCAlWScsICclZCAlYiAlWScsICclZCAlYiwgJVknLCAnJUIgJWQgJVknLCAnJUIgJWQsICVZJywgJyVkICVCICVZJywgJyVkICVCLCAlWSddCkRFQlVHID0gVHJ1ZQpERUJVR19QUk9QQUdBVEVfRVhDRVBUSU9OUyA9IEZhbHNlCkRFQ0lNQUxfU0VQQVJBVE9SID0gJy4nCkRFRkFVTFRfQ0hBUlNFVCA9ICd1dGYtOCcKREVGQVVMVF9DT05URU5UX1RZUEUgPSAndGV4dC9odG1sJwpERUZBVUxUX0VYQ0VQVElPTl9SRVBPUlRFUl9GSUxURVIgPSAnZGphbmdvLnZpZXdzLmRlYnVnLlNhZmVFeGNlcHRpb25SZXBvcnRlckZpbHRlcicKREVGQVVMVF9GSUxFX1NUT1JBR0UgPSAnZGphbmdvLmNvcmUuZmlsZXMuc3RvcmFnZS5GaWxlU3lzdGVtU3RvcmFnZScKREVGQVVMVF9GUk9NX0VNQUlMID0gJ3dlYm1hc3RlckBsb2NhbGhvc3QnCkRFRkFVTFRfSU5ERVhfVEFCTEVTUEFDRSA9ICcnCkRFRkFVTFRfVEFCTEVTUEFDRSA9ICcnCkRJU0FMTE9XRURfVVNFUl9BR0VOVFMgPSBbXQpFTUFJTF9CQUNLRU5EID0gJ2RqYW5nby5jb3JlLm1haWwuYmFja2VuZHMuc210cC5FbWFpbEJhY2tlbmQnCkVNQUlMX0hPU1QgPSAnbG9jYWxob3N0JwpFTUFJTF9IT1NUX1BBU1NXT1JEID0gJyoqKioqKioqKioqKioqKioqKioqJwpFTUFJTF9IT1NUX1VTRVIgPSAnJwpFTUFJTF9QT1JUID0gMjUKRU1BSUxfU1NMX0NFUlRGSUxFID0gTm9uZQpFTUFJTF9TU0xfS0VZRklMRSA9ICcqKioqKioqKioqKioqKioqKioqKicKRU1BSUxfU1VCSkVDVF9QUkVGSVggPSAnW0RqYW5nb10gJwpFTUFJTF9USU1FT1VUID0gTm9uZQpFTUFJTF9VU0VfU1NMID0gRmFsc2UKRU1BSUxfVVNFX1RMUyA9IEZhbHNlCkZJTEVfQ0hBUlNFVCA9ICd1dGYtOCcKRklMRV9VUExPQURfRElSRUNUT1JZX1BFUk1JU1NJT05TID0gTm9uZQpGSUxFX1VQTE9BRF9IQU5ETEVSUyA9IFsnZGphbmdvLmNvcmUuZmlsZXMudXBsb2FkaGFuZGxlci5NZW1vcnlGaWxlVXBsb2FkSGFuZGxlcicsICdkamFuZ28uY29yZS5maWxlcy51cGxvYWRoYW5kbGVyLlRlbXBvcmFyeUZpbGVVcGxvYWRIYW5kbGVyJ10KRklMRV9VUExPQURfTUFYX01FTU9SWV9TSVpFID0gMjYyMTQ0MApGSUxFX1VQTE9BRF9QRVJNSVNTSU9OUyA9IE5vbmUKRklMRV9VUExPQURfVEVNUF9ESVIgPSBOb25lCkZJUlNUX0RBWV9PRl9XRUVLID0gMApGSVhUVVJFX0RJUlMgPSBbXQpGT1JDRV9TQ1JJUFRfTkFNRSA9IE5vbmUKRk9STUFUX01PRFVMRV9QQVRIID0gTm9uZQpHWklQX0NPTlRFTlRfVFlQRVMgPSAKSUdOT1JBQkxFXzQwNF9VUkxTID0gW10KSU5TVEFMTEVEX0FQUFMgPSBbJ2RqYW5nby5jb250cmliLmFkbWluJywgJ2RqYW5nby5jb250cmliLmF1dGgnLCAnZGphbmdvLmNvbnRyaWIuY29udGVudHR5cGVzJywgJ2RqYW5nby5jb250cmliLnNlc3Npb25zJywgJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzJywgJ2RqYW5nby5jb250cmliLnN0YXRpY2ZpbGVzJywgJ3dlYnBhY2tfbG9hZGVyJywgJ2NvcmUnLCAncmVzdF9mcmFtZXdvcmsnLCAnZGphbmdvX25vc2UnLCAncmVzdF9mcmFtZXdvcmtfc3dhZ2dlcicsICdzaWxrJ10KSU5URVJOQUxfSVBTID0gW10KTEFOR1VBR0VTID0gWygnYWYnLCAnQWZyaWthYW5zJyksICgnYXInLCAnQXJhYmljJyksICgnYXN0JywgJ0FzdHVyaWFuJyksICgnYXonLCAnQXplcmJhaWphbmknKSwgKCdiZycsICdCdWxnYXJpYW4nKSwgKCdiZScsICdCZWxhcnVzaWFuJyksICgnYm4nLCAnQmVuZ2FsaScpLCAoJ2JyJywgJ0JyZXRvbicpLCAoJ2JzJywgJ0Jvc25pYW4nKSwgKCdjYScsICdDYXRhbGFuJyksICgnY3MnLCAnQ3plY2gnKSwgKCdjeScsICdXZWxzaCcpLCAoJ2RhJywgJ0RhbmlzaCcpLCAoJ2RlJywgJ0dlcm1hbicpLCAoJ2RzYicsICdMb3dlciBTb3JiaWFuJyksICgnZWwnLCAnR3JlZWsnKSwgKCdlbicsICdFbmdsaXNoJyksICgnZW4tYXUnLCAnQXVzdHJhbGlhbiBFbmdsaXNoJyksICgnZW4tZ2InLCAnQnJpdGlzaCBFbmdsaXNoJyksICgnZW8nLCAnRXNwZXJhbnRvJyksICgnZXMnLCAnU3BhbmlzaCcpLCAoJ2VzLWFyJywgJ0FyZ2VudGluaWFuIFNwYW5pc2gnKSwgKCdlcy1jbycsICdDb2xvbWJpYW4gU3BhbmlzaCcpLCAoJ2VzLW14JywgJ01leGljYW4gU3BhbmlzaCcpLCAoJ2VzLW5pJywgJ05pY2FyYWd1YW4gU3BhbmlzaCcpLCAoJ2VzLXZlJywgJ1ZlbmV6dWVsYW4gU3BhbmlzaCcpLCAoJ2V0JywgJ0VzdG9uaWFuJyksICgnZXUnLCAnQmFzcXVlJyksICgnZmEnLCAnUGVyc2lhbicpLCAoJ2ZpJywgJ0Zpbm5pc2gnKSwgKCdmcicsICdGcmVuY2gnKSwgKCdmeScsICdGcmlzaWFuJyksICgnZ2EnLCAnSXJpc2gnKSwgKCdnZCcsICdTY290dGlzaCBHYWVsaWMnKSwgKCdnbCcsICdHYWxpY2lhbicpLCAoJ2hlJywgJ0hlYnJldycpLCAoJ2hpJywgJ0hpbmRpJyksICgnaHInLCAnQ3JvYXRpYW4nKSwgKCdoc2InLCAnVXBwZXIgU29yYmlhbicpLCAoJ2h1JywgJ0h1bmdhcmlhbicpLCAoJ2lhJywgJ0ludGVybGluZ3VhJyksICgnaWQnLCAnSW5kb25lc2lhbicpLCAoJ2lvJywgJ0lkbycpLCAoJ2lzJywgJ0ljZWxhbmRpYycpLCAoJ2l0JywgJ0l0YWxpYW4nKSwgKCdqYScsICdKYXBhbmVzZScpLCAoJ2thJywgJ0dlb3JnaWFuJyksICgna2snLCAnS2F6YWtoJyksICgna20nLCAnS2htZXInKSwgKCdrbicsICdLYW5uYWRhJyksICgna28nLCAnS29yZWFuJyksICgnbGInLCAnTHV4ZW1ib3VyZ2lzaCcpLCAoJ2x0JywgJ0xpdGh1YW5pYW4nKSwgKCdsdicsICdMYXR2aWFuJyksICgnbWsnLCAnTWFjZWRvbmlhbicpLCAoJ21sJywgJ01hbGF5YWxhbScpLCAoJ21uJywgJ01vbmdvbGlhbicpLCAoJ21yJywgJ01hcmF0aGknKSwgKCdteScsICdCdXJtZXNlJyksICgnbmInLCAnTm9yd2VnaWFuIEJva23DpWwnKSwgKCduZScsICdOZXBhbGknKSwgKCdubCcsICdEdXRjaCcpLCAoJ25uJywgJ05vcndlZ2lhbiBOeW5vcnNrJyksICgnb3MnLCAnT3NzZXRpYycpLCAoJ3BhJywgJ1B1bmphYmknKSwgKCdwbCcsICdQb2xpc2gnKSwgKCdwdCcsICdQb3J0dWd1ZXNlJyksICgncHQtYnInLCAnQnJhemlsaWFuIFBvcnR1Z3Vlc2UnKSwgKCdybycsICdSb21hbmlhbicpLCAoJ3J1JywgJ1J1c3NpYW4nKSwgKCdzaycsICdTbG92YWsnKSwgKCdzbCcsICdTbG92ZW5pYW4nKSwgKCdzcScsICdBbGJhbmlhbicpLCAoJ3NyJywgJ1NlcmJpYW4nKSwgKCdzci1sYXRuJywgJ1NlcmJpYW4gTGF0aW4nKSwgKCdzdicsICdTd2VkaXNoJyksICgnc3cnLCAnU3dhaGlsaScpLCAoJ3RhJywgJ1RhbWlsJyksICgndGUnLCAnVGVsdWd1JyksICgndGgnLCAnVGhhaScpLCAoJ3RyJywgJ1R1cmtpc2gnKSwgKCd0dCcsICdUYXRhcicpLCAoJ3VkbScsICdVZG11cnQnKSwgKCd1aycsICdVa3JhaW5pYW4nKSwgKCd1cicsICdVcmR1JyksICgndmknLCAnVmlldG5hbWVzZScpLCAoJ3poLWhhbnMnLCAnU2ltcGxpZmllZCBDaGluZXNlJyksICgnemgtaGFudCcsICdUcmFkaXRpb25hbCBDaGluZXNlJyldCkxBTkdVQUdFU19CSURJID0gWydoZScsICdhcicsICdmYScsICd1ciddCkxBTkdVQUdFX0NPREUgPSAnZW4tdXMnCkxBTkdVQUdFX0NPT0tJRV9BR0UgPSBOb25lCkxBTkdVQUdFX0NPT0tJRV9ET01BSU4gPSBOb25lCkxBTkdVQUdFX0NPT0tJRV9OQU1FID0gJ2RqYW5nb19sYW5ndWFnZScKTEFOR1VBR0VfQ09PS0lFX1BBVEggPSAnLycKTE9DQUxFX1BBVEhTID0gW10KTE9HR0lORyA9IHt9CkxPR0dJTkdfQ09ORklHID0gJ2xvZ2dpbmcuY29uZmlnLmRpY3RDb25maWcnCkxPR0lOX1JFRElSRUNUX1VSTCA9ICcvYWNjb3VudHMvcHJvZmlsZS8nCkxPR0lOX1VSTCA9ICcvYWNjb3VudHMvbG9naW4vJwpMT0dPVVRfUkVESVJFQ1RfVVJMID0gTm9uZQpNQU5BR0VSUyA9IFtdCk1FRElBX1JPT1QgPSAnL2hvbWUvZmlsZXMnCk1FRElBX1VSTCA9ICcvZmlsZXMvJwpNRVNTQUdFX1NUT1JBR0UgPSAnZGphbmdvLmNvbnRyaWIubWVzc2FnZXMuc3RvcmFnZS5mYWxsYmFjay5GYWxsYmFja1N0b3JhZ2UnCk1JRERMRVdBUkUgPSBbJ2RqYW5nby5taWRkbGV3YXJlLnNlY3VyaXR5LlNlY3VyaXR5TWlkZGxld2FyZScsICdkamFuZ28uY29udHJpYi5zZXNzaW9ucy5taWRkbGV3YXJlLlNlc3Npb25NaWRkbGV3YXJlJywgJ2RqYW5nby5taWRkbGV3YXJlLmNvbW1vbi5Db21tb25NaWRkbGV3YXJlJywgJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJywgJ2RqYW5nby5jb250cmliLmF1dGgubWlkZGxld2FyZS5BdXRoZW50aWNhdGlvbk1pZGRsZXdhcmUnLCAnZGphbmdvLmNvbnRyaWIubWVzc2FnZXMubWlkZGxld2FyZS5NZXNzYWdlTWlkZGxld2FyZScsICdkamFuZ28ubWlkZGxld2FyZS5jbGlja2phY2tpbmcuWEZyYW1lT3B0aW9uc01pZGRsZXdhcmUnLCAnc2lsay5taWRkbGV3YXJlLlNpbGt5TWlkZGxld2FyZSddCk1JRERMRVdBUkVfQ0xBU1NFUyA9IFsnZGphbmdvLm1pZGRsZXdhcmUuY29tbW9uLkNvbW1vbk1pZGRsZXdhcmUnLCAnZGphbmdvLm1pZGRsZXdhcmUuY3NyZi5Dc3JmVmlld01pZGRsZXdhcmUnXQpNSUdSQVRJT05fTU9EVUxFUyA9IHt9Ck1PTlRIX0RBWV9GT1JNQVQgPSAnRiBqJwpOT1NFX0FSR1MgPSBbJy0td2l0aC1jb3ZlcmFnZScsICctLWNvdmVyLXBhY2thZ2U9Y29yZS52aWV3cycsICctLWNvdmVyLWh0bWwtZGlyPXRlc3QvYmFja2VuZCcsICctLWNvdmVyLWh0bWwnXQpOVU1CRVJfR1JPVVBJTkcgPSAwClBBU1NXT1JEX0hBU0hFUlMgPSAnKioqKioqKioqKioqKioqKioqKionClBBU1NXT1JEX1JFU0VUX1RJTUVPVVRfREFZUyA9ICcqKioqKioqKioqKioqKioqKioqKicKUFJFUEVORF9XV1cgPSBGYWxzZQpSRVNUX0ZSQU1FV09SSyA9IHsnREVGQVVMVF9QRVJNSVNTSU9OX0NMQVNTRVMnOiBbJ3Jlc3RfZnJhbWV3b3JrLnBlcm1pc3Npb25zLkRqYW5nb01vZGVsUGVybWlzc2lvbnNPckFub25SZWFkT25seSddfQpST09UX1VSTENPTkYgPSAna2FwZS51cmxzJwpSVU5OSU5HX0RFVlNFUlZFUiA9IFRydWUKU0VDUkVUX0tFWSA9ICcqKioqKioqKioqKioqKioqKioqKicKU0VDVVJFX0JST1dTRVJfWFNTX0ZJTFRFUiA9IEZhbHNlClNFQ1VSRV9DT05URU5UX1RZUEVfTk9TTklGRiA9IEZhbHNlClNFQ1VSRV9IU1RTX0lOQ0xVREVfU1VCRE9NQUlOUyA9IEZhbHNlClNFQ1VSRV9IU1RTX1NFQ09ORFMgPSAwClNFQ1VSRV9QUk9YWV9TU0xfSEVBREVSID0gTm9uZQpTRUNVUkVfUkVESVJFQ1RfRVhFTVBUID0gW10KU0VDVVJFX1NTTF9IT1NUID0gTm9uZQpTRUNVUkVfU1NMX1JFRElSRUNUID0gRmFsc2UKU0VSVkVSX0VNQUlMID0gJ3Jvb3RAbG9jYWxob3N0JwpTRVNTSU9OX0NBQ0hFX0FMSUFTID0gJ2RlZmF1bHQnClNFU1NJT05fQ09PS0lFX0FHRSA9IDEyMDk2MDAKU0VTU0lPTl9DT09LSUVfRE9NQUlOID0gTm9uZQpTRVNTSU9OX0NPT0tJRV9IVFRQT05MWSA9IEZhbHNlClNFU1NJT05fQ09PS0lFX05BTUUgPSAnc2Vzc2lvbmlkJwpTRVNTSU9OX0NPT0tJRV9QQVRIID0gJy8nClNFU1NJT05fQ09PS0lFX1NFQ1VSRSA9IEZhbHNlClNFU1NJT05fRU5HSU5FID0gJ2RqYW5nby5jb250cmliLnNlc3Npb25zLmJhY2tlbmRzLmRiJwpTRVNTSU9OX0VYUElSRV9BVF9CUk9XU0VSX0NMT1NFID0gRmFsc2UKU0VTU0lPTl9GSUxFX1BBVEggPSBOb25lClNFU1NJT05fU0FWRV9FVkVSWV9SRVFVRVNUID0gRmFsc2UKU0VTU0lPTl9TRVJJQUxJWkVSID0gJ2RqYW5nby5jb250cmliLnNlc3Npb25zLnNlcmlhbGl6ZXJzLkpTT05TZXJpYWxpemVyJwpTRVRUSU5HU19NT0RVTEUgPSAna2FwZS5zZXR0aW5ncycKU0hPUlRfREFURVRJTUVfRk9STUFUID0gJ20vZC9ZIFAnClNIT1JUX0RBVEVfRk9STUFUID0gJ20vZC9ZJwpTSUdOSU5HX0JBQ0tFTkQgPSAnZGphbmdvLmNvcmUuc2lnbmluZy5UaW1lc3RhbXBTaWduZXInClNJTEVOQ0VEX1NZU1RFTV9DSEVDS1MgPSBbXQpTVEFUSUNGSUxFU19ESVJTID0gJ0Q6XFxQUExBXFxhc3NldHMnClNUQVRJQ0ZJTEVTX0ZJTkRFUlMgPSBbJ2RqYW5nby5jb250cmliLnN0YXRpY2ZpbGVzLmZpbmRlcnMuRmlsZVN5c3RlbUZpbmRlcicsICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcy5maW5kZXJzLkFwcERpcmVjdG9yaWVzRmluZGVyJ10KU1RBVElDRklMRVNfU1RPUkFHRSA9ICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcy5zdG9yYWdlLlN0YXRpY0ZpbGVzU3RvcmFnZScKU1RBVElDX1JPT1QgPSAnL2hvbWUvYXNzZXRzJwpTVEFUSUNfVVJMID0gJy9hc3NldHMvJwpURU1QTEFURVMgPSBbeydCQUNLRU5EJzogJ2RqYW5nby50ZW1wbGF0ZS5iYWNrZW5kcy5kamFuZ28uRGphbmdvVGVtcGxhdGVzJywgJ0RJUlMnOiBbXSwgJ0FQUF9ESVJTJzogVHJ1ZSwgJ09QVElPTlMnOiB7J2NvbnRleHRfcHJvY2Vzc29ycyc6IFsnZGphbmdvLnRlbXBsYXRlLmNvbnRleHRfcHJvY2Vzc29ycy5kZWJ1ZycsICdkamFuZ28udGVtcGxhdGUuY29udGV4dF9wcm9jZXNzb3JzLnJlcXVlc3QnLCAnZGphbmdvLmNvbnRyaWIuYXV0aC5jb250ZXh0X3Byb2Nlc3NvcnMuYXV0aCcsICdkamFuZ28uY29udHJpYi5tZXNzYWdlcy5jb250ZXh0X3Byb2Nlc3NvcnMubWVzc2FnZXMnXX19XQpURVNUX05PTl9TRVJJQUxJWkVEX0FQUFMgPSBbXQpURVNUX1JVTk5FUiA9ICdkamFuZ29fbm9zZS5Ob3NlVGVzdFN1aXRlUnVubmVyJwpUSE9VU0FORF9TRVBBUkFUT1IgPSAnLCcKVElNRV9GT1JNQVQgPSAnUCcKVElNRV9JTlBVVF9GT1JNQVRTID0gWyclSDolTTolUycsICclSDolTTolUy4lZicsICclSDolTSddClRJTUVfWk9ORSA9ICdVVEMnClVTRV9FVEFHUyA9IEZhbHNlClVTRV9JMThOID0gVHJ1ZQpVU0VfTDEwTiA9IFRydWUKVVNFX1RIT1VTQU5EX1NFUEFSQVRPUiA9IEZhbHNlClVTRV9UWiA9IFRydWUKVVNFX1hfRk9SV0FSREVEX0hPU1QgPSBGYWxzZQpVU0VfWF9GT1JXQVJERURfUE9SVCA9IEZhbHNlCldFQlBBQ0tfTE9BREVSID0geydERUZBVUxUJzogeydCVU5ETEVfRElSX05BTUUnOiAnYnVuZGxlcy8nLCAnU1RBVFNfRklMRSc6ICdEOlxcUFBMQVxcd2VicGFjay1zdGF0cy5qc29uJ319CldTR0lfQVBQTElDQVRJT04gPSAna2FwZS53c2dpLmFwcGxpY2F0aW9uJwpYX0ZSQU1FX09QVElPTlMgPSAnU0FNRU9SSUdJTicKWUVBUl9NT05USF9GT1JNQVQgPSAnRiBZJwoKCllvdSdyZSBzZWVpbmcgdGhpcyBlcnJvciBiZWNhdXNlIHlvdSBoYXZlIERFQlVHID0gVHJ1ZSBpbiB5b3VyCkRqYW5nbyBzZXR0aW5ncyBmaWxlLiBDaGFuZ2UgdGhhdCB0byBGYWxzZSwgYW5kIERqYW5nbyB3aWxsCmRpc3BsYXkgYSBzdGFuZGFyZCBwYWdlIGdlbmVyYXRlZCBieSB0aGUgaGFuZGxlciBmb3IgdGhpcyBzdGF0dXMgY29kZS4KCg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/plain\"}" - } -}, -{ - "model": "silk.response", - "pk": "3dc33f76-e5c4-4a7b-8179-a22d3f9bc71a", - "fields": { - "request": "d717b3f3-9a6f-45a2-b4da-5606289f6426", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "3df8cfb0-aa92-4c09-af8f-3bec97d0f919", - "fields": { - "request": "591a7cd0-14f9-4123-b23d-8b20a2037865", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "40898dba-f17d-4fa2-9d03-7562a44eb0c0", - "fields": { - "request": "aa23639f-282b-41ad-af44-140cd4a0c4e5", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPkNoYW5nZSB2YWNhbmN5IHwgRGphbmdvIHNpdGUgYWRtaW48L3RpdGxlPgo8bGluayByZWw9InN0eWxlc2hlZXQiIHR5cGU9InRleHQvY3NzIiBocmVmPSIvYXNzZXRzL2FkbWluL2Nzcy9iYXNlLmNzcyIgLz4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvZm9ybXMuY3NzIiAvPgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9jb3JlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IvanF1ZXJ5L2pxdWVyeS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvanF1ZXJ5LmluaXQuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2FkbWluL1JlbGF0ZWRPYmplY3RMb29rdXBzLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hY3Rpb25zLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy91cmxpZnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL3ByZXBvcHVsYXRlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IveHJlZ2V4cC94cmVnZXhwLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9jYWxlbmRhci5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvYWRtaW4vRGF0ZVRpbWVTaG9ydGN1dHMuanMiPjwvc2NyaXB0PgoKPG1ldGEgbmFtZT0icm9ib3RzIiBjb250ZW50PSJOT05FLE5PQVJDSElWRSIgLz4KPC9oZWFkPgoKCjxib2R5IGNsYXNzPSIgYXBwLWNvcmUgbW9kZWwtdmFjYW5jeSBjaGFuZ2UtZm9ybSIKICBkYXRhLWFkbWluLXV0Yy1vZmZzZXQ9IjAiPgoKPCEtLSBDb250YWluZXIgLS0+CjxkaXYgaWQ9ImNvbnRhaW5lciI+CgogICAgCiAgICA8IS0tIEhlYWRlciAtLT4KICAgIDxkaXYgaWQ9ImhlYWRlciI+CiAgICAgICAgPGRpdiBpZD0iYnJhbmRpbmciPgogICAgICAgIAo8aDEgaWQ9InNpdGUtbmFtZSI+PGEgaHJlZj0iL2FkbWluLyI+RGphbmdvIGFkbWluaXN0cmF0aW9uPC9hPjwvaDE+CgogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIDxkaXYgaWQ9InVzZXItdG9vbHMiPgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIFdlbGNvbWUsCiAgICAgICAgICAgICAgICA8c3Ryb25nPmthcGU8L3N0cm9uZz4uCiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii8iPlZpZXcgc2l0ZTwvYT4gLwogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vcGFzc3dvcmRfY2hhbmdlLyI+Q2hhbmdlIHBhc3N3b3JkPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9sb2dvdXQvIj5Mb2cgb3V0PC9hPgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgICAgICAKICAgICAgICAKICAgICAgICAKICAgIDwvZGl2PgogICAgPCEtLSBFTkQgSGVhZGVyIC0tPgogICAgCjxkaXYgY2xhc3M9ImJyZWFkY3J1bWJzIj4KPGEgaHJlZj0iL2FkbWluLyI+SG9tZTwvYT4KJnJzYXF1bzsgPGEgaHJlZj0iL2FkbWluL2NvcmUvIj5Db3JlPC9hPgomcnNhcXVvOyA8YSBocmVmPSIvYWRtaW4vY29yZS92YWNhbmN5LyI+VmFjYW5jeXM8L2E+CiZyc2FxdW87IFZhY2FuY3kgb2JqZWN0CjwvZGl2PgoKICAgIAoKICAgIAogICAgICAgIAogICAgCgogICAgPCEtLSBDb250ZW50IC0tPgogICAgPGRpdiBpZD0iY29udGVudCIgY2xhc3M9ImNvbE0iPgogICAgICAgIAogICAgICAgIDxoMT5DaGFuZ2UgdmFjYW5jeTwvaDE+CiAgICAgICAgPGRpdiBpZD0iY29udGVudC1tYWluIj4KCgogIDx1bCBjbGFzcz0ib2JqZWN0LXRvb2xzIj4KICAgIAogICAgPGxpPgogICAgICAgIAogICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9jb3JlL3ZhY2FuY3kvMS9oaXN0b3J5LyIgY2xhc3M9Imhpc3RvcnlsaW5rIj5IaXN0b3J5PC9hPgogICAgPC9saT4KICAgIAogICAgCiAgPC91bD4KCgo8Zm9ybSBlbmN0eXBlPSJtdWx0aXBhcnQvZm9ybS1kYXRhIiBhY3Rpb249IiIgbWV0aG9kPSJwb3N0IiBpZD0idmFjYW5jeV9mb3JtIiBub3ZhbGlkYXRlPjxpbnB1dCB0eXBlPSdoaWRkZW4nIG5hbWU9J2NzcmZtaWRkbGV3YXJldG9rZW4nIHZhbHVlPSd0bXZxOXNhaWtKd1BrOTV0aHBIY05RUXcwd0g0aVRHUFNzQ2ZsWTJkN0dIZUhoN1YwUWNFRnh4Z1lyTlRDVENFJyAvPgo8ZGl2PgoKCgoKCgoKICA8ZmllbGRzZXQgY2xhc3M9Im1vZHVsZSBhbGlnbmVkICI+CiAgICAKICAgIAogICAgCiAgICAgICAgPGRpdiBjbGFzcz0iZm9ybS1yb3cgZmllbGQtY29tcGFueSI+CiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXY+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxsYWJlbCBjbGFzcz0icmVxdWlyZWQiIGZvcj0iaWRfY29tcGFueSI+Q29tcGFueTo8L2xhYmVsPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIAo8ZGl2IGNsYXNzPSJyZWxhdGVkLXdpZGdldC13cmFwcGVyIj4KICAgIDxzZWxlY3QgaWQ9ImlkX2NvbXBhbnkiIG5hbWU9ImNvbXBhbnkiIHJlcXVpcmVkPgo8b3B0aW9uIHZhbHVlPSIiPi0tLS0tLS0tLTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIyIiBzZWxlY3RlZD0ic2VsZWN0ZWQiPkNvbXBhbnkgb2JqZWN0PC9vcHRpb24+Cjwvc2VsZWN0PgogICAgCiAgICAgICAgCiAgICAgICAgPGEgY2xhc3M9InJlbGF0ZWQtd2lkZ2V0LXdyYXBwZXItbGluayBjaGFuZ2UtcmVsYXRlZCIgaWQ9ImNoYW5nZV9pZF9jb21wYW55IgogICAgICAgICAgICBkYXRhLWhyZWYtdGVtcGxhdGU9Ii9hZG1pbi9jb3JlL2NvbXBhbnkvX19ma19fL2NoYW5nZS8/X3RvX2ZpZWxkPWlkJmFtcDtfcG9wdXA9MSIKICAgICAgICAgICAgdGl0bGU9IkNoYW5nZSBzZWxlY3RlZCBjb21wYW55Ij4KICAgICAgICAgICAgPGltZyBzcmM9Ii9hc3NldHMvYWRtaW4vaW1nL2ljb24tY2hhbmdlbGluay5zdmciIGFsdD0iQ2hhbmdlIi8+CiAgICAgICAgPC9hPgogICAgICAgIAogICAgICAgIAogICAgICAgIDxhIGNsYXNzPSJyZWxhdGVkLXdpZGdldC13cmFwcGVyLWxpbmsgYWRkLXJlbGF0ZWQiIGlkPSJhZGRfaWRfY29tcGFueSIKICAgICAgICAgICAgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS9hZGQvP190b19maWVsZD1pZCZhbXA7X3BvcHVwPTEiCiAgICAgICAgICAgIHRpdGxlPSJBZGQgYW5vdGhlciBjb21wYW55Ij4KICAgICAgICAgICAgPGltZyBzcmM9Ii9hc3NldHMvYWRtaW4vaW1nL2ljb24tYWRkbGluay5zdmciIGFsdD0iQWRkIi8+CiAgICAgICAgPC9hPgogICAgICAgIAogICAgICAgIAogICAgCjwvZGl2PgoKICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC12ZXJpZmllZCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9ImNoZWNrYm94LXJvdyI+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxpbnB1dCBpZD0iaWRfdmVyaWZpZWQiIG5hbWU9InZlcmlmaWVkIiB0eXBlPSJjaGVja2JveCIgLz48bGFiZWwgY2xhc3M9InZDaGVja2JveExhYmVsIiBmb3I9ImlkX3ZlcmlmaWVkIj5WZXJpZmllZDwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC1vcGVuX3RpbWUiPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgY2xhc3M9InJlcXVpcmVkIiBmb3I9ImlkX29wZW5fdGltZV8wIj5PcGVuIHRpbWU6PC9sYWJlbD4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8cCBjbGFzcz0iZGF0ZXRpbWUiPkRhdGU6IDxpbnB1dCBjbGFzcz0idkRhdGVGaWVsZCIgaWQ9ImlkX29wZW5fdGltZV8wIiBuYW1lPSJvcGVuX3RpbWVfMCIgc2l6ZT0iMTAiIHR5cGU9InRleHQiIHZhbHVlPSIyMDE3LTAzLTI3IiByZXF1aXJlZCAvPjxiciAvPlRpbWU6IDxpbnB1dCBjbGFzcz0idlRpbWVGaWVsZCIgaWQ9ImlkX29wZW5fdGltZV8xIiBuYW1lPSJvcGVuX3RpbWVfMSIgc2l6ZT0iOCIgdHlwZT0idGV4dCIgdmFsdWU9IjE1OjIzOjIwIiByZXF1aXJlZCAvPjwvcD4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC1jbG9zZV90aW1lIj4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGRpdj4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPGxhYmVsIGNsYXNzPSJyZXF1aXJlZCIgZm9yPSJpZF9jbG9zZV90aW1lXzAiPkNsb3NlIHRpbWU6PC9sYWJlbD4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8cCBjbGFzcz0iZGF0ZXRpbWUiPkRhdGU6IDxpbnB1dCBjbGFzcz0idkRhdGVGaWVsZCIgaWQ9ImlkX2Nsb3NlX3RpbWVfMCIgbmFtZT0iY2xvc2VfdGltZV8wIiBzaXplPSIxMCIgdHlwZT0idGV4dCIgdmFsdWU9IjIwMTctMDMtMjciIHJlcXVpcmVkIC8+PGJyIC8+VGltZTogPGlucHV0IGNsYXNzPSJ2VGltZUZpZWxkIiBpZD0iaWRfY2xvc2VfdGltZV8xIiBuYW1lPSJjbG9zZV90aW1lXzEiIHNpemU9IjgiIHR5cGU9InRleHQiIHZhbHVlPSIxNToyMzoyMiIgcmVxdWlyZWQgLz48L3A+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPC9kaXY+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgCjwvZmllbGRzZXQ+CgoKCgoKCgoKCgoKCgo8ZGl2IGNsYXNzPSJzdWJtaXQtcm93Ij4KPGlucHV0IHR5cGU9InN1Ym1pdCIgdmFsdWU9IlNhdmUiIGNsYXNzPSJkZWZhdWx0IiBuYW1lPSJfc2F2ZSIgLz4KCiAgICAKICAgIDxwIGNsYXNzPSJkZWxldGVsaW5rLWJveCI+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS8xL2RlbGV0ZS8iIGNsYXNzPSJkZWxldGVsaW5rIj5EZWxldGU8L2E+PC9wPgoKCjxpbnB1dCB0eXBlPSJzdWJtaXQiIHZhbHVlPSJTYXZlIGFuZCBhZGQgYW5vdGhlciIgbmFtZT0iX2FkZGFub3RoZXIiIC8+CjxpbnB1dCB0eXBlPSJzdWJtaXQiIHZhbHVlPSJTYXZlIGFuZCBjb250aW51ZSBlZGl0aW5nIiBuYW1lPSJfY29udGludWUiIC8+CjwvZGl2PgoKCgogICAgPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiCiAgICAgICAgICAgIGlkPSJkamFuZ28tYWRtaW4tZm9ybS1hZGQtY29uc3RhbnRzIgogICAgICAgICAgICBzcmM9Ii9hc3NldHMvYWRtaW4vanMvY2hhbmdlX2Zvcm0uanMiCiAgICAgICAgICAgID4KICAgIDwvc2NyaXB0PgoKCgoKPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiCiAgICAgICAgaWQ9ImRqYW5nby1hZG1pbi1wcmVwb3B1bGF0ZWQtZmllbGRzLWNvbnN0YW50cyIKICAgICAgICBzcmM9Ii9hc3NldHMvYWRtaW4vanMvcHJlcG9wdWxhdGVfaW5pdC5qcyIKICAgICAgICBkYXRhLXByZXBvcHVsYXRlZC1maWVsZHM9IltdIj4KPC9zY3JpcHQ+CgoKPC9kaXY+CjwvZm9ybT48L2Rpdj4KCiAgICAgICAgCiAgICAgICAgPGJyIGNsYXNzPSJjbGVhciIgLz4KICAgIDwvZGl2PgogICAgPCEtLSBFTkQgQ29udGVudCAtLT4KCiAgICA8ZGl2IGlkPSJmb290ZXIiPjwvZGl2Pgo8L2Rpdj4KPCEtLSBFTkQgQ29udGFpbmVyIC0tPgoKPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 17:17:48 GMT\", \"Expires\": \"Mon, 27 Mar 2017 17:17:48 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "4142a17b-f518-403c-bbf8-4c7f721d047d", - "fields": { - "request": "6cacf8a8-417a-4364-b765-f8244747f70c", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPlNlbGVjdCBjb21wYW55IHRvIGNoYW5nZSB8IERqYW5nbyBzaXRlIGFkbWluPC90aXRsZT4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvYmFzZS5jc3MiIC8+CgogIAogIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvYWRtaW4vY3NzL2NoYW5nZWxpc3RzLmNzcyIgLz4KICAKICAKICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KICAKICAKICAKCgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvY29yZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL2pxdWVyeS9qcXVlcnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2pxdWVyeS5pbml0LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hZG1pbi9SZWxhdGVkT2JqZWN0TG9va3Vwcy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvYWN0aW9ucy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdXJsaWZ5LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9wcmVwb3B1bGF0ZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL3hyZWdleHAveHJlZ2V4cC5qcyI+PC9zY3JpcHQ+Cgo8bWV0YSBuYW1lPSJyb2JvdHMiIGNvbnRlbnQ9Ik5PTkUsTk9BUkNISVZFIiAvPgo8L2hlYWQ+CgoKPGJvZHkgY2xhc3M9IiBhcHAtY29yZSBtb2RlbC1jb21wYW55IGNoYW5nZS1saXN0IgogIGRhdGEtYWRtaW4tdXRjLW9mZnNldD0iMCI+Cgo8IS0tIENvbnRhaW5lciAtLT4KPGRpdiBpZD0iY29udGFpbmVyIj4KCiAgICAKICAgIDwhLS0gSGVhZGVyIC0tPgogICAgPGRpdiBpZD0iaGVhZGVyIj4KICAgICAgICA8ZGl2IGlkPSJicmFuZGluZyI+CiAgICAgICAgCjxoMSBpZD0ic2l0ZS1uYW1lIj48YSBocmVmPSIvYWRtaW4vIj5EamFuZ28gYWRtaW5pc3RyYXRpb248L2E+PC9oMT4KCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgPGRpdiBpZD0idXNlci10b29scyI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgV2VsY29tZSwKICAgICAgICAgICAgICAgIDxzdHJvbmc+a2FwZTwvc3Ryb25nPi4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iLyI+VmlldyBzaXRlPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9wYXNzd29yZF9jaGFuZ2UvIj5DaGFuZ2UgcGFzc3dvcmQ8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2xvZ291dC8iPkxvZyBvdXQ8L2E+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIAogICAgPC9kaXY+CiAgICA8IS0tIEVORCBIZWFkZXIgLS0+CiAgICAKPGRpdiBjbGFzcz0iYnJlYWRjcnVtYnMiPgo8YSBocmVmPSIvYWRtaW4vIj5Ib21lPC9hPgomcnNhcXVvOyA8YSBocmVmPSIvYWRtaW4vY29yZS8iPkNvcmU8L2E+CiZyc2FxdW87IENvbXBhbnlzCjwvZGl2PgoKICAgIAoKICAgIAogICAgICAgIAogICAgCgogICAgPCEtLSBDb250ZW50IC0tPgogICAgPGRpdiBpZD0iY29udGVudCIgY2xhc3M9ImZsZXgiPgogICAgICAgIAogICAgICAgIDxoMT5TZWxlY3QgY29tcGFueSB0byBjaGFuZ2U8L2gxPgogICAgICAgIAogIDxkaXYgaWQ9ImNvbnRlbnQtbWFpbiI+CiAgICAKICAgICAgICA8dWwgY2xhc3M9Im9iamVjdC10b29scyI+CiAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaT4KICAgICAgICAgICAgICAKICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS9jb21wYW55L2FkZC8iIGNsYXNzPSJhZGRsaW5rIj4KICAgICAgICAgICAgICAgIEFkZCBjb21wYW55CiAgICAgICAgICAgICAgPC9hPgogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgIAogICAgICAgIDwvdWw+CiAgICAKICAgIAogICAgPGRpdiBjbGFzcz0ibW9kdWxlIiBpZD0iY2hhbmdlbGlzdCI+CiAgICAgIAoKCiAgICAgIAoKCiAgICAgIAogICAgICAgIAogICAgICAKCiAgICAgIDxmb3JtIGlkPSJjaGFuZ2VsaXN0LWZvcm0iIG1ldGhvZD0icG9zdCIgbm92YWxpZGF0ZT48aW5wdXQgdHlwZT0naGlkZGVuJyBuYW1lPSdjc3JmbWlkZGxld2FyZXRva2VuJyB2YWx1ZT0nOXhZYVpyUVVNRlNnNzVodmE2ek9FNW05d0o4aGg3NkN5RDVaYlhJUHpDM0Z1ZGpYVHg0Z3dNM1R1RWU2QjcycicgLz4KICAgICAgCgogICAgICAKICAgICAgICAgIAo8ZGl2IGNsYXNzPSJhY3Rpb25zIj4KICAgIDxsYWJlbD5BY3Rpb246IDxzZWxlY3QgbmFtZT0iYWN0aW9uIiByZXF1aXJlZD4KPG9wdGlvbiB2YWx1ZT0iIiBzZWxlY3RlZD0ic2VsZWN0ZWQiPi0tLS0tLS0tLTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSJkZWxldGVfc2VsZWN0ZWQiPkRlbGV0ZSBzZWxlY3RlZCBjb21wYW55czwvb3B0aW9uPgo8L3NlbGVjdD48L2xhYmVsPjxpbnB1dCBjbGFzcz0ic2VsZWN0LWFjcm9zcyIgbmFtZT0ic2VsZWN0X2Fjcm9zcyIgdHlwZT0iaGlkZGVuIiB2YWx1ZT0iMCIgLz4KICAgIDxidXR0b24gdHlwZT0ic3VibWl0IiBjbGFzcz0iYnV0dG9uIiB0aXRsZT0iUnVuIHRoZSBzZWxlY3RlZCBhY3Rpb24iIG5hbWU9ImluZGV4IiB2YWx1ZT0iMCI+R288L2J1dHRvbj4KICAgIAogICAgICAgIDxzcGFuIGNsYXNzPSJhY3Rpb24tY291bnRlciIgZGF0YS1hY3Rpb25zLWljbnQ9IjEiPjAgb2YgMSBzZWxlY3RlZDwvc3Bhbj4KICAgICAgICAKICAgIAo8L2Rpdj4KCiAgICAgICAgICAKCgo8ZGl2IGNsYXNzPSJyZXN1bHRzIj4KPHRhYmxlIGlkPSJyZXN1bHRfbGlzdCI+Cjx0aGVhZD4KPHRyPgoKPHRoIHNjb3BlPSJjb2wiICBjbGFzcz0iYWN0aW9uLWNoZWNrYm94LWNvbHVtbiI+CiAgIAogICA8ZGl2IGNsYXNzPSJ0ZXh0Ij48c3Bhbj48aW5wdXQgdHlwZT0iY2hlY2tib3giIGlkPSJhY3Rpb24tdG9nZ2xlIiAvPjwvc3Bhbj48L2Rpdj4KICAgPGRpdiBjbGFzcz0iY2xlYXIiPjwvZGl2Pgo8L3RoPgo8dGggc2NvcGU9ImNvbCIgIGNsYXNzPSJjb2x1bW4tX19zdHJfXyI+CiAgIAogICA8ZGl2IGNsYXNzPSJ0ZXh0Ij48c3Bhbj5Db21wYW55PC9zcGFuPjwvZGl2PgogICA8ZGl2IGNsYXNzPSJjbGVhciI+PC9kaXY+CjwvdGg+CjwvdHI+CjwvdGhlYWQ+Cjx0Ym9keT4KCgo8dHIgY2xhc3M9InJvdzEiPjx0ZCBjbGFzcz0iYWN0aW9uLWNoZWNrYm94Ij48aW5wdXQgY2xhc3M9ImFjdGlvbi1zZWxlY3QiIG5hbWU9Il9zZWxlY3RlZF9hY3Rpb24iIHR5cGU9ImNoZWNrYm94IiB2YWx1ZT0iMiIgLz48L3RkPjx0aCBjbGFzcz0iZmllbGQtX19zdHJfXyI+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8yL2NoYW5nZS8iPkNvbXBhbnkgb2JqZWN0PC9hPjwvdGg+PC90cj4KCjwvdGJvZHk+CjwvdGFibGU+CjwvZGl2PgoKCiAgICAgICAgICAKICAgICAgCiAgICAgIAoKPHAgY2xhc3M9InBhZ2luYXRvciI+CgoxIGNvbXBhbnkKCgo8L3A+CgogICAgICA8L2Zvcm0+CiAgICA8L2Rpdj4KICA8L2Rpdj4KCiAgICAgICAgCiAgICAgICAgPGJyIGNsYXNzPSJjbGVhciIgLz4KICAgIDwvZGl2PgogICAgPCEtLSBFTkQgQ29udGVudCAtLT4KCiAgICA8ZGl2IGlkPSJmb290ZXIiPjwvZGl2Pgo8L2Rpdj4KPCEtLSBFTkQgQ29udGFpbmVyIC0tPgoKPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 17:17:59 GMT\", \"Expires\": \"Mon, 27 Mar 2017 17:17:59 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "429ab922-8cc5-495f-96bb-7e64c12f7886", - "fields": { - "request": "932c8055-5b76-4302-b46e-2a9b150f1f8f", - "status_code": 500, - "raw_body": "QXR0cmlidXRlRXJyb3IgYXQgL2FwaS9zdHVkZW50cy8yL2Jvb2ttYXJrZWQtdmFjYW5jaWVzLwonZGljdCcgb2JqZWN0IGhhcyBubyBhdHRyaWJ1dGUgJ2lkJwoKUmVxdWVzdCBNZXRob2Q6IFBPU1QKUmVxdWVzdCBVUkw6IGh0dHA6Ly8xMjcuMC4wLjE6ODAwMC9hcGkvc3R1ZGVudHMvMi9ib29rbWFya2VkLXZhY2FuY2llcy8KRGphbmdvIFZlcnNpb246IDEuMTAuNQpQeXRob24gRXhlY3V0YWJsZTogQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXHB5dGhvbi5leGUKUHl0aG9uIFZlcnNpb246IDMuNi4wClB5dGhvbiBQYXRoOiBbJ0Q6XFxQUExBJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXHB5dGhvbjM2LnppcCcsICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyXFxETExzJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXGxpYicsICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXGxpYlxcc2l0ZS1wYWNrYWdlcyddClNlcnZlciB0aW1lOiBNb24sIDI3IE1hciAyMDE3IDE1OjM3OjQ4ICswMDAwCkluc3RhbGxlZCBBcHBsaWNhdGlvbnM6ClsnZGphbmdvLmNvbnRyaWIuYWRtaW4nLAogJ2RqYW5nby5jb250cmliLmF1dGgnLAogJ2RqYW5nby5jb250cmliLmNvbnRlbnR0eXBlcycsCiAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMnLAogJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzJywKICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcycsCiAnd2VicGFja19sb2FkZXInLAogJ2NvcmUnLAogJ3Jlc3RfZnJhbWV3b3JrJywKICdkamFuZ29fbm9zZScsCiAncmVzdF9mcmFtZXdvcmtfc3dhZ2dlcicsCiAnc2lsayddCkluc3RhbGxlZCBNaWRkbGV3YXJlOgpbJ2RqYW5nby5taWRkbGV3YXJlLnNlY3VyaXR5LlNlY3VyaXR5TWlkZGxld2FyZScsCiAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMubWlkZGxld2FyZS5TZXNzaW9uTWlkZGxld2FyZScsCiAnZGphbmdvLm1pZGRsZXdhcmUuY29tbW9uLkNvbW1vbk1pZGRsZXdhcmUnLAogJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5hdXRoLm1pZGRsZXdhcmUuQXV0aGVudGljYXRpb25NaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5tZXNzYWdlcy5taWRkbGV3YXJlLk1lc3NhZ2VNaWRkbGV3YXJlJywKICdkamFuZ28ubWlkZGxld2FyZS5jbGlja2phY2tpbmcuWEZyYW1lT3B0aW9uc01pZGRsZXdhcmUnLAogJ3NpbGsubWlkZGxld2FyZS5TaWxreU1pZGRsZXdhcmUnXQoKClRyYWNlYmFjazogIAoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXGRqYW5nb1xjb3JlXGhhbmRsZXJzXGV4Y2VwdGlvbi5weSIgaW4gaW5uZXIKICAzOS4gICAgICAgICAgICAgcmVzcG9uc2UgPSBnZXRfcmVzcG9uc2UocmVxdWVzdCkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cY29yZVxoYW5kbGVyc1xiYXNlLnB5IiBpbiBfZ2V0X3Jlc3BvbnNlCiAgMTg3LiAgICAgICAgICAgICAgICAgcmVzcG9uc2UgPSBzZWxmLnByb2Nlc3NfZXhjZXB0aW9uX2J5X21pZGRsZXdhcmUoZSwgcmVxdWVzdCkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cY29yZVxoYW5kbGVyc1xiYXNlLnB5IiBpbiBfZ2V0X3Jlc3BvbnNlCiAgMTg1LiAgICAgICAgICAgICAgICAgcmVzcG9uc2UgPSB3cmFwcGVkX2NhbGxiYWNrKHJlcXVlc3QsICpjYWxsYmFja19hcmdzLCAqKmNhbGxiYWNrX2t3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cdmlld3NcZGVjb3JhdG9yc1xjc3JmLnB5IiBpbiB3cmFwcGVkX3ZpZXcKICA1OC4gICAgICAgICByZXR1cm4gdmlld19mdW5jKCphcmdzLCAqKmt3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3c2V0cy5weSIgaW4gdmlldwogIDgzLiAgICAgICAgICAgICByZXR1cm4gc2VsZi5kaXNwYXRjaChyZXF1ZXN0LCAqYXJncywgKiprd2FyZ3MpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNccmVzdF9mcmFtZXdvcmtcdmlld3MucHkiIGluIGRpc3BhdGNoCiAgNDgzLiAgICAgICAgICAgICByZXNwb25zZSA9IHNlbGYuaGFuZGxlX2V4Y2VwdGlvbihleGMpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNccmVzdF9mcmFtZXdvcmtcdmlld3MucHkiIGluIGhhbmRsZV9leGNlcHRpb24KICA0NDMuICAgICAgICAgICAgIHNlbGYucmFpc2VfdW5jYXVnaHRfZXhjZXB0aW9uKGV4YykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3cy5weSIgaW4gZGlzcGF0Y2gKICA0ODAuICAgICAgICAgICAgIHJlc3BvbnNlID0gaGFuZGxlcihyZXF1ZXN0LCAqYXJncywgKiprd2FyZ3MpCgpGaWxlICJEOlxQUExBXGNvcmVcdmlld3NcYWNjb3VudHMucHkiIGluIGJvb2ttYXJrX3ZhY2FuY2llcwogIDMwLiAgICAgICAgIHZhY2FuY3kgPSBnZXRfb2JqZWN0X29yXzQwNChWYWNhbmN5Lm9iamVjdHMuYWxsKCksIHBrPXJlcXVlc3QuZGF0YS5pZCkKCkV4Y2VwdGlvbiBUeXBlOiBBdHRyaWJ1dGVFcnJvciBhdCAvYXBpL3N0dWRlbnRzLzIvYm9va21hcmtlZC12YWNhbmNpZXMvCkV4Y2VwdGlvbiBWYWx1ZTogJ2RpY3QnIG9iamVjdCBoYXMgbm8gYXR0cmlidXRlICdpZCcKUmVxdWVzdCBpbmZvcm1hdGlvbjoKVVNFUjoga2FwZQoKR0VUOiBObyBHRVQgZGF0YQoKUE9TVDogTm8gUE9TVCBkYXRhCgpGSUxFUzogTm8gRklMRVMgZGF0YQoKQ09PS0lFUzoKc2Vzc2lvbmlkID0gJ2JsdDg3N2c1ZmptdWN4eTNkZDV1eGNpemF2YjlvcG92Jwpjc3JmdG9rZW4gPSAnMUVFUDJTd0t0MUs5UWJXbkZQU3lXUElpYnRPN01BYVZxS0xFZW9vRmdZVnlkallQb2duME93cDI5b1VXNkE2SycKCk1FVEE6CkFMTFVTRVJTUFJPRklMRSA9ICdDOlxcUHJvZ3JhbURhdGEnCkFQUERBVEEgPSAnQzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmcnCkNPTU1PTlBST0dSQU1GSUxFUyA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcQ29tbW9uIEZpbGVzJwpDT01NT05QUk9HUkFNRklMRVMoWDg2KSA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcQ29tbW9uIEZpbGVzJwpDT01NT05QUk9HUkFNVzY0MzIgPSAnQzpcXFByb2dyYW0gRmlsZXNcXENvbW1vbiBGaWxlcycKQ09NUFVURVJOQU1FID0gJ0ZBUkhBTicKQ09NU1BFQyA9ICdDOlxcV0lORE9XU1xcc3lzdGVtMzJcXGNtZC5leGUnCkNPTlRFTlRfTEVOR1RIID0gJzg4JwpDT05URU5UX1RZUEUgPSAnYXBwbGljYXRpb24vanNvbicKQ1NSRl9DT09LSUUgPSAnMUVFUDJTd0t0MUs5UWJXbkZQU3lXUElpYnRPN01BYVZxS0xFZW9vRmdZVnlkallQb2duME93cDI5b1VXNkE2SycKREpBTkdPX1NFVFRJTkdTX01PRFVMRSA9ICdrYXBlLnNldHRpbmdzJwpGUFNfQlJPV1NFUl9BUFBfUFJPRklMRV9TVFJJTkcgPSAnSW50ZXJuZXQgRXhwbG9yZXInCkZQU19CUk9XU0VSX1VTRVJfUFJPRklMRV9TVFJJTkcgPSAnRGVmYXVsdCcKRlBfTk9fSE9TVF9DSEVDSyA9ICdOTycKR0FURVdBWV9JTlRFUkZBQ0UgPSAnQ0dJLzEuMScKSE9NRURSSVZFID0gJ0M6JwpIT01FUEFUSCA9ICdcXFVzZXJzXFxmYXJoYV8wMDAnCkhUVFBfQUNDRVBUID0gJ2FwcGxpY2F0aW9uL2pzb24nCkhUVFBfQUNDRVBUX0VOQ09ESU5HID0gJ2d6aXAsIGRlZmxhdGUsIGJyJwpIVFRQX0FDQ0VQVF9MQU5HVUFHRSA9ICdpZC1JRCxpZDtxPTAuOCxlbi1VUztxPTAuNixlbjtxPTAuNCcKSFRUUF9DT05ORUNUSU9OID0gJ2tlZXAtYWxpdmUnCkhUVFBfQ09PS0lFID0gJ3Nlc3Npb25pZD1ibHQ4NzdnNWZqbXVjeHkzZGQ1dXhjaXphdmI5b3BvdjsgY3NyZnRva2VuPTFFRVAyU3dLdDFLOVFiV25GUFN5V1BJaWJ0TzdNQWFWcUtMRWVvb0ZnWVZ5ZGpZUG9nbjBPd3AyOW9VVzZBNksnCkhUVFBfSE9TVCA9ICcxMjcuMC4wLjE6ODAwMCcKSFRUUF9PUklHSU4gPSAnaHR0cDovLzEyNy4wLjAuMTo4MDAwJwpIVFRQX1JFRkVSRVIgPSAnaHR0cDovLzEyNy4wLjAuMTo4MDAwL2FwaScKSFRUUF9VU0VSX0FHRU5UID0gJ01vemlsbGEvNS4wIChXaW5kb3dzIE5UIDEwLjA7IFdPVzY0KSBBcHBsZVdlYktpdC81MzcuMzYgKEtIVE1MLCBsaWtlIEdlY2tvKSBDaHJvbWUvNTYuMC4yOTI0Ljg3IFNhZmFyaS81MzcuMzYnCkhUVFBfWF9DU1JGVE9LRU4gPSAnanE5MUJ1RjVlNVI3U2pNRlJjMlROZnZXVThsRE82d3lJd2dRTjB4MDEyMndmck83QUR4bEZXY0dTM3JzODZzbicKTE9DQUxBUFBEQVRBID0gJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbCcKTE9HT05TRVJWRVIgPSAnXFxcXEZBUkhBTicKTlVNQkVSX09GX1BST0NFU1NPUlMgPSAnMicKT05FRFJJVkUgPSAnQzpcXFVzZXJzXFxmYXJoYV8wMDBcXE9uZURyaXZlJwpPUyA9ICdXaW5kb3dzX05UJwpQQVRIID0gJ0M6XFxQcm9ncmFtRGF0YVxcT3JhY2xlXFxKYXZhXFxqYXZhcGF0aDtDOlxcUHJvZ3JhbSBGaWxlc1xcSGFza2VsbFxcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxIYXNrZWxsIFBsYXRmb3JtXFw3LjEwLjNcXGxpYlxcZXh0cmFsaWJzXFxiaW47QzpcXFByb2dyYW0gRmlsZXNcXEhhc2tlbGwgUGxhdGZvcm1cXDcuMTAuM1xcYmluO0M6XFxXSU5ET1dTXFxzeXN0ZW0zMjtDOlxcV0lORE9XUztDOlxcV0lORE9XU1xcU3lzdGVtMzJcXFdiZW07QzpcXFdJTkRPV1NcXFN5c3RlbTMyXFxXaW5kb3dzUG93ZXJTaGVsbFxcdjEuMFxcO0M6XFxQcm9ncmFtIEZpbGVzXFxIYXNrZWxsIFBsYXRmb3JtXFw3LjEwLjNcXG1pbmd3XFxiaW47QzpcXFByb2dyYW0gRmlsZXNcXEphdmFcXGpkazEuOC4wXzc3XFxiaW47QzpcXGN5Z3dpbjY0XFxiaW47JWxvY2FsYXBwZGF0YSVcXE1pY3Jvc29mdFxcV2luZG93c0FwcHM7RDpcXFhBTVBQXFxwaHA7QzpcXFByb2dyYW0gRmlsZXNcXEdpdFxcY21kO0M6XFx4YW1wcFxccGhwO0M6XFxQcm9ncmFtRGF0YVxcQ29tcG9zZXJTZXR1cFxcYmluO0M6XFxQcm9ncmFtIEZpbGVzICh4ODYpXFxub2RlanNcXDtDOlxcUHJvZ3JhbSBGaWxlc1xcUG9zdGdyZVNRTFxcOS42XFxiaW47QzpcXFByb2dyYW0gRmlsZXNcXE1BVExBQlxcUjIwMTdhXFxiaW47QzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXExvY2FsXFxQcm9ncmFtc1xcUHl0aG9uXFxQeXRob24zNi0zMlxcU2NyaXB0c1xcO0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXDtDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcUm9hbWluZ1xcY2FiYWxcXGJpbjtEOlxcWEFNUFBcXHBocDtDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcUm9hbWluZ1xcQ29tcG9zZXJcXHZlbmRvclxcYmluO0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcTWljcm9zb2Z0XFxXaW5kb3dzQXBwcztDOlxccHl0aG9uLTMuNi4wJwpQQVRIRVhUID0gJy5DT007LkVYRTsuQkFUOy5DTUQ7LlZCUzsuVkJFOy5KUzsuSlNFOy5XU0Y7LldTSDsuTVNDJwpQQVRIX0lORk8gPSAnL2FwaS9zdHVkZW50cy8yL2Jvb2ttYXJrZWQtdmFjYW5jaWVzLycKUFJPQ0VTU09SX0FSQ0hJVEVDVFVSRSA9ICd4ODYnClBST0NFU1NPUl9BUkNISVRFVzY0MzIgPSAnQU1ENjQnClBST0NFU1NPUl9JREVOVElGSUVSID0gJ0ludGVsNjQgRmFtaWx5IDYgTW9kZWwgNTggU3RlcHBpbmcgOSwgR2VudWluZUludGVsJwpQUk9DRVNTT1JfTEVWRUwgPSAnNicKUFJPQ0VTU09SX1JFVklTSU9OID0gJzNhMDknClBST0dSQU1EQVRBID0gJ0M6XFxQcm9ncmFtRGF0YScKUFJPR1JBTUZJTEVTID0gJ0M6XFxQcm9ncmFtIEZpbGVzICh4ODYpJwpQUk9HUkFNRklMRVMoWDg2KSA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KScKUFJPR1JBTVc2NDMyID0gJ0M6XFxQcm9ncmFtIEZpbGVzJwpQUk9NUFQgPSAnJFAkRycKUFNNT0RVTEVQQVRIID0gJ0M6XFxXSU5ET1dTXFxzeXN0ZW0zMlxcV2luZG93c1Bvd2VyU2hlbGxcXHYxLjBcXE1vZHVsZXNcXCcKUFVCTElDID0gJ0M6XFxVc2Vyc1xcUHVibGljJwpRVUVSWV9TVFJJTkcgPSAnJwpSRU1PVEVfQUREUiA9ICcxMjcuMC4wLjEnClJFTU9URV9IT1NUID0gJycKUkVRVUVTVF9NRVRIT0QgPSAnUE9TVCcKUlVOX01BSU4gPSAndHJ1ZScKU0NSSVBUX05BTUUgPSAnJwpTRVJWRVJfTkFNRSA9ICdGYXJoYW4nClNFUlZFUl9QT1JUID0gJzgwMDAnClNFUlZFUl9QUk9UT0NPTCA9ICdIVFRQLzEuMScKU0VSVkVSX1NPRlRXQVJFID0gJ1dTR0lTZXJ2ZXIvMC4yJwpTRVNTSU9OTkFNRSA9ICdDb25zb2xlJwpTWVNURU1EUklWRSA9ICdDOicKU1lTVEVNUk9PVCA9ICdDOlxcV0lORE9XUycKVEVNUCA9ICdDOlxcVXNlcnNcXEZBUkhBX34xXFxBcHBEYXRhXFxMb2NhbFxcVGVtcCcKVE1QID0gJ0M6XFxVc2Vyc1xcRkFSSEFffjFcXEFwcERhdGFcXExvY2FsXFxUZW1wJwpVU0VSRE9NQUlOID0gJ0ZhcmhhbicKVVNFUkRPTUFJTl9ST0FNSU5HUFJPRklMRSA9ICdGYXJoYW4nClVTRVJOQU1FID0gJ0ZhcmhhbiBGYXJhc2RhaycKVVNFUlBST0ZJTEUgPSAnQzpcXFVzZXJzXFxmYXJoYV8wMDAnClZCT1hfTVNJX0lOU1RBTExfUEFUSCA9ICdDOlxcUHJvZ3JhbSBGaWxlc1xcT3JhY2xlXFxWaXJ0dWFsQm94XFwnCldJTkRJUiA9ICdDOlxcV0lORE9XUycKd3NnaS5lcnJvcnMgPSA8X2lvLlRleHRJT1dyYXBwZXIgbmFtZT0nPHN0ZGVycj4nIG1vZGU9J3cnIGVuY29kaW5nPSd1dGYtOCc+CndzZ2kuZmlsZV93cmFwcGVyID0gJycKd3NnaS5pbnB1dCA9IDxfaW8uQnVmZmVyZWRSZWFkZXIgbmFtZT0xOTkyPgp3c2dpLm11bHRpcHJvY2VzcyA9IEZhbHNlCndzZ2kubXVsdGl0aHJlYWQgPSBUcnVlCndzZ2kucnVuX29uY2UgPSBGYWxzZQp3c2dpLnVybF9zY2hlbWUgPSAnaHR0cCcKd3NnaS52ZXJzaW9uID0gCgpTZXR0aW5nczoKVXNpbmcgc2V0dGluZ3MgbW9kdWxlIGthcGUuc2V0dGluZ3MKQUJTT0xVVEVfVVJMX09WRVJSSURFUyA9IHt9CkFETUlOUyA9IFtdCkFMTE9XRURfSE9TVFMgPSBbJ2JvdC5yZWNydWl0LmlkJywgJzEwNC4yMzYuNzYuMTYxJywgJ2xvY2FsaG9zdCcsICcxMjcuMC4wLjEnXQpBUFBFTkRfU0xBU0ggPSBUcnVlCkFVVEhFTlRJQ0FUSU9OX0JBQ0tFTkRTID0gWydkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCddCkFVVEhfUEFTU1dPUkRfVkFMSURBVE9SUyA9ICcqKioqKioqKioqKioqKioqKioqKicKQVVUSF9VU0VSX01PREVMID0gJ2F1dGguVXNlcicKQkFTRV9ESVIgPSAnRDpcXFBQTEEnCkNBQ0hFUyA9IHsnZGVmYXVsdCc6IHsnQkFDS0VORCc6ICdkamFuZ28uY29yZS5jYWNoZS5iYWNrZW5kcy5sb2NtZW0uTG9jTWVtQ2FjaGUnfX0KQ0FDSEVfTUlERExFV0FSRV9BTElBUyA9ICdkZWZhdWx0JwpDQUNIRV9NSURETEVXQVJFX0tFWV9QUkVGSVggPSAnKioqKioqKioqKioqKioqKioqKionCkNBQ0hFX01JRERMRVdBUkVfU0VDT05EUyA9IDYwMApDU1JGX0NPT0tJRV9BR0UgPSAzMTQ0OTYwMApDU1JGX0NPT0tJRV9ET01BSU4gPSBOb25lCkNTUkZfQ09PS0lFX0hUVFBPTkxZID0gRmFsc2UKQ1NSRl9DT09LSUVfTkFNRSA9ICdjc3JmdG9rZW4nCkNTUkZfQ09PS0lFX1BBVEggPSAnLycKQ1NSRl9DT09LSUVfU0VDVVJFID0gRmFsc2UKQ1NSRl9GQUlMVVJFX1ZJRVcgPSAnZGphbmdvLnZpZXdzLmNzcmYuY3NyZl9mYWlsdXJlJwpDU1JGX0hFQURFUl9OQU1FID0gJ0hUVFBfWF9DU1JGVE9LRU4nCkNTUkZfVFJVU1RFRF9PUklHSU5TID0gW10KREFUQUJBU0VTID0geydkZWZhdWx0JzogeydFTkdJTkUnOiAnZGphbmdvLmRiLmJhY2tlbmRzLnBvc3RncmVzcWxfcHN5Y29wZzInLCAnTkFNRSc6ICdrYXBlJywgJ1VTRVInOiAna2FwZScsICdQQVNTV09SRCc6ICcqKioqKioqKioqKioqKioqKioqKicsICdIT1NUJzogJ2xvY2FsaG9zdCcsICdQT1JUJzogJycsICdBVE9NSUNfUkVRVUVTVFMnOiBGYWxzZSwgJ0FVVE9DT01NSVQnOiBUcnVlLCAnQ09OTl9NQVhfQUdFJzogMCwgJ09QVElPTlMnOiB7fSwgJ1RJTUVfWk9ORSc6IE5vbmUsICdURVNUJzogeydDSEFSU0VUJzogTm9uZSwgJ0NPTExBVElPTic6IE5vbmUsICdOQU1FJzogTm9uZSwgJ01JUlJPUic6IE5vbmV9fX0KREFUQUJBU0VfUk9VVEVSUyA9IFtdCkRBVEFfVVBMT0FEX01BWF9NRU1PUllfU0laRSA9IDI2MjE0NDAKREFUQV9VUExPQURfTUFYX05VTUJFUl9GSUVMRFMgPSAxMDAwCkRBVEVUSU1FX0ZPUk1BVCA9ICdOIGosIFksIFAnCkRBVEVUSU1FX0lOUFVUX0ZPUk1BVFMgPSBbJyVZLSVtLSVkICVIOiVNOiVTJywgJyVZLSVtLSVkICVIOiVNOiVTLiVmJywgJyVZLSVtLSVkICVIOiVNJywgJyVZLSVtLSVkJywgJyVtLyVkLyVZICVIOiVNOiVTJywgJyVtLyVkLyVZICVIOiVNOiVTLiVmJywgJyVtLyVkLyVZICVIOiVNJywgJyVtLyVkLyVZJywgJyVtLyVkLyV5ICVIOiVNOiVTJywgJyVtLyVkLyV5ICVIOiVNOiVTLiVmJywgJyVtLyVkLyV5ICVIOiVNJywgJyVtLyVkLyV5J10KREFURV9GT1JNQVQgPSAnTiBqLCBZJwpEQVRFX0lOUFVUX0ZPUk1BVFMgPSBbJyVZLSVtLSVkJywgJyVtLyVkLyVZJywgJyVtLyVkLyV5JywgJyViICVkICVZJywgJyViICVkLCAlWScsICclZCAlYiAlWScsICclZCAlYiwgJVknLCAnJUIgJWQgJVknLCAnJUIgJWQsICVZJywgJyVkICVCICVZJywgJyVkICVCLCAlWSddCkRFQlVHID0gVHJ1ZQpERUJVR19QUk9QQUdBVEVfRVhDRVBUSU9OUyA9IEZhbHNlCkRFQ0lNQUxfU0VQQVJBVE9SID0gJy4nCkRFRkFVTFRfQ0hBUlNFVCA9ICd1dGYtOCcKREVGQVVMVF9DT05URU5UX1RZUEUgPSAndGV4dC9odG1sJwpERUZBVUxUX0VYQ0VQVElPTl9SRVBPUlRFUl9GSUxURVIgPSAnZGphbmdvLnZpZXdzLmRlYnVnLlNhZmVFeGNlcHRpb25SZXBvcnRlckZpbHRlcicKREVGQVVMVF9GSUxFX1NUT1JBR0UgPSAnZGphbmdvLmNvcmUuZmlsZXMuc3RvcmFnZS5GaWxlU3lzdGVtU3RvcmFnZScKREVGQVVMVF9GUk9NX0VNQUlMID0gJ3dlYm1hc3RlckBsb2NhbGhvc3QnCkRFRkFVTFRfSU5ERVhfVEFCTEVTUEFDRSA9ICcnCkRFRkFVTFRfVEFCTEVTUEFDRSA9ICcnCkRJU0FMTE9XRURfVVNFUl9BR0VOVFMgPSBbXQpFTUFJTF9CQUNLRU5EID0gJ2RqYW5nby5jb3JlLm1haWwuYmFja2VuZHMuc210cC5FbWFpbEJhY2tlbmQnCkVNQUlMX0hPU1QgPSAnbG9jYWxob3N0JwpFTUFJTF9IT1NUX1BBU1NXT1JEID0gJyoqKioqKioqKioqKioqKioqKioqJwpFTUFJTF9IT1NUX1VTRVIgPSAnJwpFTUFJTF9QT1JUID0gMjUKRU1BSUxfU1NMX0NFUlRGSUxFID0gTm9uZQpFTUFJTF9TU0xfS0VZRklMRSA9ICcqKioqKioqKioqKioqKioqKioqKicKRU1BSUxfU1VCSkVDVF9QUkVGSVggPSAnW0RqYW5nb10gJwpFTUFJTF9USU1FT1VUID0gTm9uZQpFTUFJTF9VU0VfU1NMID0gRmFsc2UKRU1BSUxfVVNFX1RMUyA9IEZhbHNlCkZJTEVfQ0hBUlNFVCA9ICd1dGYtOCcKRklMRV9VUExPQURfRElSRUNUT1JZX1BFUk1JU1NJT05TID0gTm9uZQpGSUxFX1VQTE9BRF9IQU5ETEVSUyA9IFsnZGphbmdvLmNvcmUuZmlsZXMudXBsb2FkaGFuZGxlci5NZW1vcnlGaWxlVXBsb2FkSGFuZGxlcicsICdkamFuZ28uY29yZS5maWxlcy51cGxvYWRoYW5kbGVyLlRlbXBvcmFyeUZpbGVVcGxvYWRIYW5kbGVyJ10KRklMRV9VUExPQURfTUFYX01FTU9SWV9TSVpFID0gMjYyMTQ0MApGSUxFX1VQTE9BRF9QRVJNSVNTSU9OUyA9IE5vbmUKRklMRV9VUExPQURfVEVNUF9ESVIgPSBOb25lCkZJUlNUX0RBWV9PRl9XRUVLID0gMApGSVhUVVJFX0RJUlMgPSBbXQpGT1JDRV9TQ1JJUFRfTkFNRSA9IE5vbmUKRk9STUFUX01PRFVMRV9QQVRIID0gTm9uZQpHWklQX0NPTlRFTlRfVFlQRVMgPSAKSUdOT1JBQkxFXzQwNF9VUkxTID0gW10KSU5TVEFMTEVEX0FQUFMgPSBbJ2RqYW5nby5jb250cmliLmFkbWluJywgJ2RqYW5nby5jb250cmliLmF1dGgnLCAnZGphbmdvLmNvbnRyaWIuY29udGVudHR5cGVzJywgJ2RqYW5nby5jb250cmliLnNlc3Npb25zJywgJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzJywgJ2RqYW5nby5jb250cmliLnN0YXRpY2ZpbGVzJywgJ3dlYnBhY2tfbG9hZGVyJywgJ2NvcmUnLCAncmVzdF9mcmFtZXdvcmsnLCAnZGphbmdvX25vc2UnLCAncmVzdF9mcmFtZXdvcmtfc3dhZ2dlcicsICdzaWxrJ10KSU5URVJOQUxfSVBTID0gW10KTEFOR1VBR0VTID0gWygnYWYnLCAnQWZyaWthYW5zJyksICgnYXInLCAnQXJhYmljJyksICgnYXN0JywgJ0FzdHVyaWFuJyksICgnYXonLCAnQXplcmJhaWphbmknKSwgKCdiZycsICdCdWxnYXJpYW4nKSwgKCdiZScsICdCZWxhcnVzaWFuJyksICgnYm4nLCAnQmVuZ2FsaScpLCAoJ2JyJywgJ0JyZXRvbicpLCAoJ2JzJywgJ0Jvc25pYW4nKSwgKCdjYScsICdDYXRhbGFuJyksICgnY3MnLCAnQ3plY2gnKSwgKCdjeScsICdXZWxzaCcpLCAoJ2RhJywgJ0RhbmlzaCcpLCAoJ2RlJywgJ0dlcm1hbicpLCAoJ2RzYicsICdMb3dlciBTb3JiaWFuJyksICgnZWwnLCAnR3JlZWsnKSwgKCdlbicsICdFbmdsaXNoJyksICgnZW4tYXUnLCAnQXVzdHJhbGlhbiBFbmdsaXNoJyksICgnZW4tZ2InLCAnQnJpdGlzaCBFbmdsaXNoJyksICgnZW8nLCAnRXNwZXJhbnRvJyksICgnZXMnLCAnU3BhbmlzaCcpLCAoJ2VzLWFyJywgJ0FyZ2VudGluaWFuIFNwYW5pc2gnKSwgKCdlcy1jbycsICdDb2xvbWJpYW4gU3BhbmlzaCcpLCAoJ2VzLW14JywgJ01leGljYW4gU3BhbmlzaCcpLCAoJ2VzLW5pJywgJ05pY2FyYWd1YW4gU3BhbmlzaCcpLCAoJ2VzLXZlJywgJ1ZlbmV6dWVsYW4gU3BhbmlzaCcpLCAoJ2V0JywgJ0VzdG9uaWFuJyksICgnZXUnLCAnQmFzcXVlJyksICgnZmEnLCAnUGVyc2lhbicpLCAoJ2ZpJywgJ0Zpbm5pc2gnKSwgKCdmcicsICdGcmVuY2gnKSwgKCdmeScsICdGcmlzaWFuJyksICgnZ2EnLCAnSXJpc2gnKSwgKCdnZCcsICdTY290dGlzaCBHYWVsaWMnKSwgKCdnbCcsICdHYWxpY2lhbicpLCAoJ2hlJywgJ0hlYnJldycpLCAoJ2hpJywgJ0hpbmRpJyksICgnaHInLCAnQ3JvYXRpYW4nKSwgKCdoc2InLCAnVXBwZXIgU29yYmlhbicpLCAoJ2h1JywgJ0h1bmdhcmlhbicpLCAoJ2lhJywgJ0ludGVybGluZ3VhJyksICgnaWQnLCAnSW5kb25lc2lhbicpLCAoJ2lvJywgJ0lkbycpLCAoJ2lzJywgJ0ljZWxhbmRpYycpLCAoJ2l0JywgJ0l0YWxpYW4nKSwgKCdqYScsICdKYXBhbmVzZScpLCAoJ2thJywgJ0dlb3JnaWFuJyksICgna2snLCAnS2F6YWtoJyksICgna20nLCAnS2htZXInKSwgKCdrbicsICdLYW5uYWRhJyksICgna28nLCAnS29yZWFuJyksICgnbGInLCAnTHV4ZW1ib3VyZ2lzaCcpLCAoJ2x0JywgJ0xpdGh1YW5pYW4nKSwgKCdsdicsICdMYXR2aWFuJyksICgnbWsnLCAnTWFjZWRvbmlhbicpLCAoJ21sJywgJ01hbGF5YWxhbScpLCAoJ21uJywgJ01vbmdvbGlhbicpLCAoJ21yJywgJ01hcmF0aGknKSwgKCdteScsICdCdXJtZXNlJyksICgnbmInLCAnTm9yd2VnaWFuIEJva23DpWwnKSwgKCduZScsICdOZXBhbGknKSwgKCdubCcsICdEdXRjaCcpLCAoJ25uJywgJ05vcndlZ2lhbiBOeW5vcnNrJyksICgnb3MnLCAnT3NzZXRpYycpLCAoJ3BhJywgJ1B1bmphYmknKSwgKCdwbCcsICdQb2xpc2gnKSwgKCdwdCcsICdQb3J0dWd1ZXNlJyksICgncHQtYnInLCAnQnJhemlsaWFuIFBvcnR1Z3Vlc2UnKSwgKCdybycsICdSb21hbmlhbicpLCAoJ3J1JywgJ1J1c3NpYW4nKSwgKCdzaycsICdTbG92YWsnKSwgKCdzbCcsICdTbG92ZW5pYW4nKSwgKCdzcScsICdBbGJhbmlhbicpLCAoJ3NyJywgJ1NlcmJpYW4nKSwgKCdzci1sYXRuJywgJ1NlcmJpYW4gTGF0aW4nKSwgKCdzdicsICdTd2VkaXNoJyksICgnc3cnLCAnU3dhaGlsaScpLCAoJ3RhJywgJ1RhbWlsJyksICgndGUnLCAnVGVsdWd1JyksICgndGgnLCAnVGhhaScpLCAoJ3RyJywgJ1R1cmtpc2gnKSwgKCd0dCcsICdUYXRhcicpLCAoJ3VkbScsICdVZG11cnQnKSwgKCd1aycsICdVa3JhaW5pYW4nKSwgKCd1cicsICdVcmR1JyksICgndmknLCAnVmlldG5hbWVzZScpLCAoJ3poLWhhbnMnLCAnU2ltcGxpZmllZCBDaGluZXNlJyksICgnemgtaGFudCcsICdUcmFkaXRpb25hbCBDaGluZXNlJyldCkxBTkdVQUdFU19CSURJID0gWydoZScsICdhcicsICdmYScsICd1ciddCkxBTkdVQUdFX0NPREUgPSAnZW4tdXMnCkxBTkdVQUdFX0NPT0tJRV9BR0UgPSBOb25lCkxBTkdVQUdFX0NPT0tJRV9ET01BSU4gPSBOb25lCkxBTkdVQUdFX0NPT0tJRV9OQU1FID0gJ2RqYW5nb19sYW5ndWFnZScKTEFOR1VBR0VfQ09PS0lFX1BBVEggPSAnLycKTE9DQUxFX1BBVEhTID0gW10KTE9HR0lORyA9IHt9CkxPR0dJTkdfQ09ORklHID0gJ2xvZ2dpbmcuY29uZmlnLmRpY3RDb25maWcnCkxPR0lOX1JFRElSRUNUX1VSTCA9ICcvYWNjb3VudHMvcHJvZmlsZS8nCkxPR0lOX1VSTCA9ICcvYWNjb3VudHMvbG9naW4vJwpMT0dPVVRfUkVESVJFQ1RfVVJMID0gTm9uZQpNQU5BR0VSUyA9IFtdCk1FRElBX1JPT1QgPSAnL2hvbWUvZmlsZXMnCk1FRElBX1VSTCA9ICcvZmlsZXMvJwpNRVNTQUdFX1NUT1JBR0UgPSAnZGphbmdvLmNvbnRyaWIubWVzc2FnZXMuc3RvcmFnZS5mYWxsYmFjay5GYWxsYmFja1N0b3JhZ2UnCk1JRERMRVdBUkUgPSBbJ2RqYW5nby5taWRkbGV3YXJlLnNlY3VyaXR5LlNlY3VyaXR5TWlkZGxld2FyZScsICdkamFuZ28uY29udHJpYi5zZXNzaW9ucy5taWRkbGV3YXJlLlNlc3Npb25NaWRkbGV3YXJlJywgJ2RqYW5nby5taWRkbGV3YXJlLmNvbW1vbi5Db21tb25NaWRkbGV3YXJlJywgJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJywgJ2RqYW5nby5jb250cmliLmF1dGgubWlkZGxld2FyZS5BdXRoZW50aWNhdGlvbk1pZGRsZXdhcmUnLCAnZGphbmdvLmNvbnRyaWIubWVzc2FnZXMubWlkZGxld2FyZS5NZXNzYWdlTWlkZGxld2FyZScsICdkamFuZ28ubWlkZGxld2FyZS5jbGlja2phY2tpbmcuWEZyYW1lT3B0aW9uc01pZGRsZXdhcmUnLCAnc2lsay5taWRkbGV3YXJlLlNpbGt5TWlkZGxld2FyZSddCk1JRERMRVdBUkVfQ0xBU1NFUyA9IFsnZGphbmdvLm1pZGRsZXdhcmUuY29tbW9uLkNvbW1vbk1pZGRsZXdhcmUnLCAnZGphbmdvLm1pZGRsZXdhcmUuY3NyZi5Dc3JmVmlld01pZGRsZXdhcmUnXQpNSUdSQVRJT05fTU9EVUxFUyA9IHt9Ck1PTlRIX0RBWV9GT1JNQVQgPSAnRiBqJwpOT1NFX0FSR1MgPSBbJy0td2l0aC1jb3ZlcmFnZScsICctLWNvdmVyLXBhY2thZ2U9Y29yZS52aWV3cycsICctLWNvdmVyLWh0bWwtZGlyPXRlc3QvYmFja2VuZCcsICctLWNvdmVyLWh0bWwnXQpOVU1CRVJfR1JPVVBJTkcgPSAwClBBU1NXT1JEX0hBU0hFUlMgPSAnKioqKioqKioqKioqKioqKioqKionClBBU1NXT1JEX1JFU0VUX1RJTUVPVVRfREFZUyA9ICcqKioqKioqKioqKioqKioqKioqKicKUFJFUEVORF9XV1cgPSBGYWxzZQpSRVNUX0ZSQU1FV09SSyA9IHsnREVGQVVMVF9QRVJNSVNTSU9OX0NMQVNTRVMnOiBbJ3Jlc3RfZnJhbWV3b3JrLnBlcm1pc3Npb25zLkRqYW5nb01vZGVsUGVybWlzc2lvbnNPckFub25SZWFkT25seSddfQpST09UX1VSTENPTkYgPSAna2FwZS51cmxzJwpSVU5OSU5HX0RFVlNFUlZFUiA9IFRydWUKU0VDUkVUX0tFWSA9ICcqKioqKioqKioqKioqKioqKioqKicKU0VDVVJFX0JST1dTRVJfWFNTX0ZJTFRFUiA9IEZhbHNlClNFQ1VSRV9DT05URU5UX1RZUEVfTk9TTklGRiA9IEZhbHNlClNFQ1VSRV9IU1RTX0lOQ0xVREVfU1VCRE9NQUlOUyA9IEZhbHNlClNFQ1VSRV9IU1RTX1NFQ09ORFMgPSAwClNFQ1VSRV9QUk9YWV9TU0xfSEVBREVSID0gTm9uZQpTRUNVUkVfUkVESVJFQ1RfRVhFTVBUID0gW10KU0VDVVJFX1NTTF9IT1NUID0gTm9uZQpTRUNVUkVfU1NMX1JFRElSRUNUID0gRmFsc2UKU0VSVkVSX0VNQUlMID0gJ3Jvb3RAbG9jYWxob3N0JwpTRVNTSU9OX0NBQ0hFX0FMSUFTID0gJ2RlZmF1bHQnClNFU1NJT05fQ09PS0lFX0FHRSA9IDEyMDk2MDAKU0VTU0lPTl9DT09LSUVfRE9NQUlOID0gTm9uZQpTRVNTSU9OX0NPT0tJRV9IVFRQT05MWSA9IEZhbHNlClNFU1NJT05fQ09PS0lFX05BTUUgPSAnc2Vzc2lvbmlkJwpTRVNTSU9OX0NPT0tJRV9QQVRIID0gJy8nClNFU1NJT05fQ09PS0lFX1NFQ1VSRSA9IEZhbHNlClNFU1NJT05fRU5HSU5FID0gJ2RqYW5nby5jb250cmliLnNlc3Npb25zLmJhY2tlbmRzLmRiJwpTRVNTSU9OX0VYUElSRV9BVF9CUk9XU0VSX0NMT1NFID0gRmFsc2UKU0VTU0lPTl9GSUxFX1BBVEggPSBOb25lClNFU1NJT05fU0FWRV9FVkVSWV9SRVFVRVNUID0gRmFsc2UKU0VTU0lPTl9TRVJJQUxJWkVSID0gJ2RqYW5nby5jb250cmliLnNlc3Npb25zLnNlcmlhbGl6ZXJzLkpTT05TZXJpYWxpemVyJwpTRVRUSU5HU19NT0RVTEUgPSAna2FwZS5zZXR0aW5ncycKU0hPUlRfREFURVRJTUVfRk9STUFUID0gJ20vZC9ZIFAnClNIT1JUX0RBVEVfRk9STUFUID0gJ20vZC9ZJwpTSUdOSU5HX0JBQ0tFTkQgPSAnZGphbmdvLmNvcmUuc2lnbmluZy5UaW1lc3RhbXBTaWduZXInClNJTEVOQ0VEX1NZU1RFTV9DSEVDS1MgPSBbXQpTVEFUSUNGSUxFU19ESVJTID0gJ0Q6XFxQUExBXFxhc3NldHMnClNUQVRJQ0ZJTEVTX0ZJTkRFUlMgPSBbJ2RqYW5nby5jb250cmliLnN0YXRpY2ZpbGVzLmZpbmRlcnMuRmlsZVN5c3RlbUZpbmRlcicsICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcy5maW5kZXJzLkFwcERpcmVjdG9yaWVzRmluZGVyJ10KU1RBVElDRklMRVNfU1RPUkFHRSA9ICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcy5zdG9yYWdlLlN0YXRpY0ZpbGVzU3RvcmFnZScKU1RBVElDX1JPT1QgPSAnL2hvbWUvYXNzZXRzJwpTVEFUSUNfVVJMID0gJy9hc3NldHMvJwpURU1QTEFURVMgPSBbeydCQUNLRU5EJzogJ2RqYW5nby50ZW1wbGF0ZS5iYWNrZW5kcy5kamFuZ28uRGphbmdvVGVtcGxhdGVzJywgJ0RJUlMnOiBbXSwgJ0FQUF9ESVJTJzogVHJ1ZSwgJ09QVElPTlMnOiB7J2NvbnRleHRfcHJvY2Vzc29ycyc6IFsnZGphbmdvLnRlbXBsYXRlLmNvbnRleHRfcHJvY2Vzc29ycy5kZWJ1ZycsICdkamFuZ28udGVtcGxhdGUuY29udGV4dF9wcm9jZXNzb3JzLnJlcXVlc3QnLCAnZGphbmdvLmNvbnRyaWIuYXV0aC5jb250ZXh0X3Byb2Nlc3NvcnMuYXV0aCcsICdkamFuZ28uY29udHJpYi5tZXNzYWdlcy5jb250ZXh0X3Byb2Nlc3NvcnMubWVzc2FnZXMnXX19XQpURVNUX05PTl9TRVJJQUxJWkVEX0FQUFMgPSBbXQpURVNUX1JVTk5FUiA9ICdkamFuZ29fbm9zZS5Ob3NlVGVzdFN1aXRlUnVubmVyJwpUSE9VU0FORF9TRVBBUkFUT1IgPSAnLCcKVElNRV9GT1JNQVQgPSAnUCcKVElNRV9JTlBVVF9GT1JNQVRTID0gWyclSDolTTolUycsICclSDolTTolUy4lZicsICclSDolTSddClRJTUVfWk9ORSA9ICdVVEMnClVTRV9FVEFHUyA9IEZhbHNlClVTRV9JMThOID0gVHJ1ZQpVU0VfTDEwTiA9IFRydWUKVVNFX1RIT1VTQU5EX1NFUEFSQVRPUiA9IEZhbHNlClVTRV9UWiA9IFRydWUKVVNFX1hfRk9SV0FSREVEX0hPU1QgPSBGYWxzZQpVU0VfWF9GT1JXQVJERURfUE9SVCA9IEZhbHNlCldFQlBBQ0tfTE9BREVSID0geydERUZBVUxUJzogeydCVU5ETEVfRElSX05BTUUnOiAnYnVuZGxlcy8nLCAnU1RBVFNfRklMRSc6ICdEOlxcUFBMQVxcd2VicGFjay1zdGF0cy5qc29uJ319CldTR0lfQVBQTElDQVRJT04gPSAna2FwZS53c2dpLmFwcGxpY2F0aW9uJwpYX0ZSQU1FX09QVElPTlMgPSAnU0FNRU9SSUdJTicKWUVBUl9NT05USF9GT1JNQVQgPSAnRiBZJwoKCllvdSdyZSBzZWVpbmcgdGhpcyBlcnJvciBiZWNhdXNlIHlvdSBoYXZlIERFQlVHID0gVHJ1ZSBpbiB5b3VyCkRqYW5nbyBzZXR0aW5ncyBmaWxlLiBDaGFuZ2UgdGhhdCB0byBGYWxzZSwgYW5kIERqYW5nbyB3aWxsCmRpc3BsYXkgYSBzdGFuZGFyZCBwYWdlIGdlbmVyYXRlZCBieSB0aGUgaGFuZGxlciBmb3IgdGhpcyBzdGF0dXMgY29kZS4KCg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/plain\"}" - } -}, -{ - "model": "silk.response", - "pk": "448a8cf7-45dd-4d27-a83e-8f57b8756da2", - "fields": { - "request": "203f7672-48e0-4745-8bd1-1d46567febf2", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPlNpdGUgYWRtaW5pc3RyYXRpb24gfCBEamFuZ28gc2l0ZSBhZG1pbjwvdGl0bGU+CjxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvYWRtaW4vY3NzL2Jhc2UuY3NzIiAvPgo8bGluayByZWw9InN0eWxlc2hlZXQiIHR5cGU9InRleHQvY3NzIiBocmVmPSIvYXNzZXRzL2FkbWluL2Nzcy9kYXNoYm9hcmQuY3NzIiAvPgoKCjxtZXRhIG5hbWU9InJvYm90cyIgY29udGVudD0iTk9ORSxOT0FSQ0hJVkUiIC8+CjwvaGVhZD4KCgo8Ym9keSBjbGFzcz0iIGRhc2hib2FyZCIKICBkYXRhLWFkbWluLXV0Yy1vZmZzZXQ9IjAiPgoKPCEtLSBDb250YWluZXIgLS0+CjxkaXYgaWQ9ImNvbnRhaW5lciI+CgogICAgCiAgICA8IS0tIEhlYWRlciAtLT4KICAgIDxkaXYgaWQ9ImhlYWRlciI+CiAgICAgICAgPGRpdiBpZD0iYnJhbmRpbmciPgogICAgICAgIAo8aDEgaWQ9InNpdGUtbmFtZSI+PGEgaHJlZj0iL2FkbWluLyI+RGphbmdvIGFkbWluaXN0cmF0aW9uPC9hPjwvaDE+CgogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIDxkaXYgaWQ9InVzZXItdG9vbHMiPgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIFdlbGNvbWUsCiAgICAgICAgICAgICAgICA8c3Ryb25nPmthcGU8L3N0cm9uZz4uCiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii8iPlZpZXcgc2l0ZTwvYT4gLwogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vcGFzc3dvcmRfY2hhbmdlLyI+Q2hhbmdlIHBhc3N3b3JkPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9sb2dvdXQvIj5Mb2cgb3V0PC9hPgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgICAgICAKICAgICAgICAKICAgICAgICAKICAgIDwvZGl2PgogICAgPCEtLSBFTkQgSGVhZGVyIC0tPgogICAgCiAgICAKCiAgICAKICAgICAgICAKICAgIAoKICAgIDwhLS0gQ29udGVudCAtLT4KICAgIDxkaXYgaWQ9ImNvbnRlbnQiIGNsYXNzPSJjb2xNUyI+CiAgICAgICAgCiAgICAgICAgPGgxPlNpdGUgYWRtaW5pc3RyYXRpb248L2gxPgogICAgICAgIAo8ZGl2IGlkPSJjb250ZW50LW1haW4iPgoKCiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJhcHAtYXV0aCBtb2R1bGUiPgogICAgICAgIDx0YWJsZT4KICAgICAgICA8Y2FwdGlvbj4KICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2F1dGgvIiBjbGFzcz0ic2VjdGlvbiIgdGl0bGU9Ik1vZGVscyBpbiB0aGUgQXV0aGVudGljYXRpb24gYW5kIEF1dGhvcml6YXRpb24gYXBwbGljYXRpb24iPkF1dGhlbnRpY2F0aW9uIGFuZCBBdXRob3JpemF0aW9uPC9hPgogICAgICAgIDwvY2FwdGlvbj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1ncm91cCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL2dyb3VwLyI+R3JvdXBzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvZ3JvdXAvYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL2dyb3VwLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC11c2VyIj4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8iPlVzZXJzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgPC90YWJsZT4KICAgICAgICA8L2Rpdj4KICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImFwcC1jb3JlIG1vZHVsZSI+CiAgICAgICAgPHRhYmxlPgogICAgICAgIDxjYXB0aW9uPgogICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS8iIGNsYXNzPSJzZWN0aW9uIiB0aXRsZT0iTW9kZWxzIGluIHRoZSBDb3JlIGFwcGxpY2F0aW9uIj5Db3JlPC9hPgogICAgICAgIDwvY2FwdGlvbj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1hcHBsaWNhdGlvbiI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL2FwcGxpY2F0aW9uLyI+QXBwbGljYXRpb25zPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvYXBwbGljYXRpb24vYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL2FwcGxpY2F0aW9uLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1jb21wYW55Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8iPkNvbXBhbnlzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgICAgIDx0ciBjbGFzcz0ibW9kZWwtc3R1ZGVudCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvIj5TdHVkZW50czwvYT48L3RoPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvIiBjbGFzcz0iY2hhbmdlbGluayI+Q2hhbmdlPC9hPjwvdGQ+CiAgICAgICAgICAgIAogICAgICAgICAgICA8L3RyPgogICAgICAgIAogICAgICAgICAgICA8dHIgY2xhc3M9Im1vZGVsLXN1cGVydmlzb3IiPgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0aCBzY29wZT0icm93Ij48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yLyI+U3VwZXJ2aXNvcnM8L2E+PC90aD4KICAgICAgICAgICAgCgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0ZD48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yL2FkZC8iIGNsYXNzPSJhZGRsaW5rIj5BZGQ8L2E+PC90ZD4KICAgICAgICAgICAgCgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0ZD48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC12YWNhbmN5Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS8iPlZhY2FuY3lzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgPC90YWJsZT4KICAgICAgICA8L2Rpdj4KICAgIAoKPC9kaXY+CgogICAgICAgIAo8ZGl2IGlkPSJjb250ZW50LXJlbGF0ZWQiPgogICAgPGRpdiBjbGFzcz0ibW9kdWxlIiBpZD0icmVjZW50LWFjdGlvbnMtbW9kdWxlIj4KICAgICAgICA8aDI+UmVjZW50IGFjdGlvbnM8L2gyPgogICAgICAgIDxoMz5NeSBhY3Rpb25zPC9oMz4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgPHVsIGNsYXNzPSJhY3Rpb25saXN0Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaSBjbGFzcz0iYWRkbGluayI+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vYXV0aC91c2VyLzMvY2hhbmdlLyI+ZmFyaGFuY29ycDwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5Vc2VyPC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8bGkgY2xhc3M9ImFkZGxpbmsiPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8yL2NoYW5nZS8iPmZhcmhhbjwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5Vc2VyPC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8bGkgY2xhc3M9ImFkZGxpbmsiPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8xL2NoYW5nZS8iPkNvbXBhbnkgb2JqZWN0PC9hPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YnIvPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9Im1pbmkgcXVpZXQiPkNvbXBhbnk8L3NwYW4+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgPC9saT4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdWw+CiAgICAgICAgICAgIAogICAgPC9kaXY+CjwvZGl2PgoKICAgICAgICA8YnIgY2xhc3M9ImNsZWFyIiAvPgogICAgPC9kaXY+CiAgICA8IS0tIEVORCBDb250ZW50IC0tPgoKICAgIDxkaXYgaWQ9ImZvb3RlciI+PC9kaXY+CjwvZGl2Pgo8IS0tIEVORCBDb250YWluZXIgLS0+Cgo8L2JvZHk+CjwvaHRtbD4K", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 14:53:46 GMT\", \"Expires\": \"Mon, 27 Mar 2017 14:53:46 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\"}" - } -}, -{ - "model": "silk.response", - "pk": "44ad6539-a891-4aa7-bc10-edbef5311a3a", - "fields": { - "request": "75f44852-133e-40a0-a9e9-3148d734b167", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "45e771cc-1ac6-46e3-b7ef-7eb902df0d10", - "fields": { - "request": "4ea0e6a7-d897-4b22-8f01-7f1e3c85a65d", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "45ef4e64-3e9a-4201-b352-a93b364e33cd", - "fields": { - "request": "058330fb-2bf2-445f-9cb4-1d823c518685", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "45fc9abd-9eb1-4308-a436-18b9a9f97db5", - "fields": { - "request": "0cc8b2c4-8eee-4ba6-af83-4c27df74b20e", - "status_code": 200, - "raw_body": "eyJzd2FnZ2VyIjogIjIuMCIsICJpbmZvIjogeyJ0aXRsZSI6ICIiLCAidmVyc2lvbiI6ICIifSwgInBhdGhzIjogeyIvYXBpL2FwcGxpY2F0aW9ucy8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAiYXBwbGljYXRpb25zX2xpc3QiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogInBhZ2UiLCAicmVxdWlyZWQiOiBmYWxzZSwgImluIjogInF1ZXJ5IiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbImFwcGxpY2F0aW9ucyJdfX0sICIvYXBpL2FwcGxpY2F0aW9ucy97aWR9LyI6IHsiZ2V0IjogeyJvcGVyYXRpb25JZCI6ICJhcHBsaWNhdGlvbnNfcmVhZCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJhcHBsaWNhdGlvbnMiXX19LCAiL2FwaS9jb21wYW5pZXMvIjogeyJnZXQiOiB7Im9wZXJhdGlvbklkIjogImNvbXBhbmllc19saXN0IiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJwYWdlIiwgInJlcXVpcmVkIjogZmFsc2UsICJpbiI6ICJxdWVyeSIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJjb21wYW5pZXMiXX19LCAiL2FwaS9jb21wYW5pZXMve2lkfS8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAiY29tcGFuaWVzX3JlYWQiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsiY29tcGFuaWVzIl19fSwgIi9hcGkvc3R1ZGVudHMvIjogeyJnZXQiOiB7Im9wZXJhdGlvbklkIjogInN0dWRlbnRzX2xpc3QiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogInBhZ2UiLCAicmVxdWlyZWQiOiBmYWxzZSwgImluIjogInF1ZXJ5IiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbInN0dWRlbnRzIl19fSwgIi9hcGkvc3R1ZGVudHMve2lkfS8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAic3R1ZGVudHNfcmVhZCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJzdHVkZW50cyJdfX0sICIvYXBpL3N1cGVydmlzb3JzLyI6IHsiZ2V0IjogeyJvcGVyYXRpb25JZCI6ICJzdXBlcnZpc29yc19saXN0IiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJwYWdlIiwgInJlcXVpcmVkIjogZmFsc2UsICJpbiI6ICJxdWVyeSIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJzdXBlcnZpc29ycyJdfX0sICIvYXBpL3N1cGVydmlzb3JzL3tpZH0vIjogeyJnZXQiOiB7Im9wZXJhdGlvbklkIjogInN1cGVydmlzb3JzX3JlYWQiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsic3VwZXJ2aXNvcnMiXX19LCAiL2FwaS91c2Vycy8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAidXNlcnNfbGlzdCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAicGFnZSIsICJyZXF1aXJlZCI6IGZhbHNlLCAiaW4iOiAicXVlcnkiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsidXNlcnMiXX19LCAiL2FwaS91c2Vycy9tZS8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAidXNlcnNfbWUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbXSwgInRhZ3MiOiBbInVzZXJzIl19fSwgIi9hcGkvdXNlcnMve2lkfS8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAidXNlcnNfcmVhZCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJ1c2VycyJdfX0sICIvYXBpL3ZhY2FuY2llcy8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAidmFjYW5jaWVzX2xpc3QiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogInBhZ2UiLCAicmVxdWlyZWQiOiBmYWxzZSwgImluIjogInF1ZXJ5IiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbInZhY2FuY2llcyJdfX0sICIvYXBpL3ZhY2FuY2llcy97aWR9LyI6IHsiZ2V0IjogeyJvcGVyYXRpb25JZCI6ICJ2YWNhbmNpZXNfcmVhZCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJ2YWNhbmNpZXMiXX19fSwgInNlY3VyaXR5RGVmaW5pdGlvbnMiOiB7ImJhc2ljIjogeyJ0eXBlIjogImJhc2ljIn19fQ==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"application/openapi+json\", \"Allow\": \"GET, HEAD, OPTIONS\", \"Vary\": \"Accept\"}" - } -}, -{ - "model": "silk.response", - "pk": "4621ba30-5fb4-4450-a78e-8b3ffa3eefe6", - "fields": { - "request": "7b3ebad1-d3d1-44dd-b049-5e7f84cee73f", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPlNpdGUgYWRtaW5pc3RyYXRpb24gfCBEamFuZ28gc2l0ZSBhZG1pbjwvdGl0bGU+CjxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvYWRtaW4vY3NzL2Jhc2UuY3NzIiAvPgo8bGluayByZWw9InN0eWxlc2hlZXQiIHR5cGU9InRleHQvY3NzIiBocmVmPSIvYXNzZXRzL2FkbWluL2Nzcy9kYXNoYm9hcmQuY3NzIiAvPgoKCjxtZXRhIG5hbWU9InJvYm90cyIgY29udGVudD0iTk9ORSxOT0FSQ0hJVkUiIC8+CjwvaGVhZD4KCgo8Ym9keSBjbGFzcz0iIGRhc2hib2FyZCIKICBkYXRhLWFkbWluLXV0Yy1vZmZzZXQ9IjAiPgoKPCEtLSBDb250YWluZXIgLS0+CjxkaXYgaWQ9ImNvbnRhaW5lciI+CgogICAgCiAgICA8IS0tIEhlYWRlciAtLT4KICAgIDxkaXYgaWQ9ImhlYWRlciI+CiAgICAgICAgPGRpdiBpZD0iYnJhbmRpbmciPgogICAgICAgIAo8aDEgaWQ9InNpdGUtbmFtZSI+PGEgaHJlZj0iL2FkbWluLyI+RGphbmdvIGFkbWluaXN0cmF0aW9uPC9hPjwvaDE+CgogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIDxkaXYgaWQ9InVzZXItdG9vbHMiPgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIFdlbGNvbWUsCiAgICAgICAgICAgICAgICA8c3Ryb25nPmthcGU8L3N0cm9uZz4uCiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii8iPlZpZXcgc2l0ZTwvYT4gLwogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vcGFzc3dvcmRfY2hhbmdlLyI+Q2hhbmdlIHBhc3N3b3JkPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9sb2dvdXQvIj5Mb2cgb3V0PC9hPgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgICAgICAKICAgICAgICAKICAgICAgICAKICAgIDwvZGl2PgogICAgPCEtLSBFTkQgSGVhZGVyIC0tPgogICAgCiAgICAKCiAgICAKICAgICAgICAKICAgIAoKICAgIDwhLS0gQ29udGVudCAtLT4KICAgIDxkaXYgaWQ9ImNvbnRlbnQiIGNsYXNzPSJjb2xNUyI+CiAgICAgICAgCiAgICAgICAgPGgxPlNpdGUgYWRtaW5pc3RyYXRpb248L2gxPgogICAgICAgIAo8ZGl2IGlkPSJjb250ZW50LW1haW4iPgoKCiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJhcHAtYXV0aCBtb2R1bGUiPgogICAgICAgIDx0YWJsZT4KICAgICAgICA8Y2FwdGlvbj4KICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2F1dGgvIiBjbGFzcz0ic2VjdGlvbiIgdGl0bGU9Ik1vZGVscyBpbiB0aGUgQXV0aGVudGljYXRpb24gYW5kIEF1dGhvcml6YXRpb24gYXBwbGljYXRpb24iPkF1dGhlbnRpY2F0aW9uIGFuZCBBdXRob3JpemF0aW9uPC9hPgogICAgICAgIDwvY2FwdGlvbj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1ncm91cCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL2dyb3VwLyI+R3JvdXBzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvZ3JvdXAvYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL2dyb3VwLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC11c2VyIj4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8iPlVzZXJzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgPC90YWJsZT4KICAgICAgICA8L2Rpdj4KICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImFwcC1jb3JlIG1vZHVsZSI+CiAgICAgICAgPHRhYmxlPgogICAgICAgIDxjYXB0aW9uPgogICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS8iIGNsYXNzPSJzZWN0aW9uIiB0aXRsZT0iTW9kZWxzIGluIHRoZSBDb3JlIGFwcGxpY2F0aW9uIj5Db3JlPC9hPgogICAgICAgIDwvY2FwdGlvbj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1hcHBsaWNhdGlvbiI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL2FwcGxpY2F0aW9uLyI+QXBwbGljYXRpb25zPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvYXBwbGljYXRpb24vYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL2FwcGxpY2F0aW9uLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1jb21wYW55Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8iPkNvbXBhbnlzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgICAgIDx0ciBjbGFzcz0ibW9kZWwtc3R1ZGVudCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvIj5TdHVkZW50czwvYT48L3RoPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvIiBjbGFzcz0iY2hhbmdlbGluayI+Q2hhbmdlPC9hPjwvdGQ+CiAgICAgICAgICAgIAogICAgICAgICAgICA8L3RyPgogICAgICAgIAogICAgICAgICAgICA8dHIgY2xhc3M9Im1vZGVsLXN1cGVydmlzb3IiPgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0aCBzY29wZT0icm93Ij48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yLyI+U3VwZXJ2aXNvcnM8L2E+PC90aD4KICAgICAgICAgICAgCgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0ZD48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yL2FkZC8iIGNsYXNzPSJhZGRsaW5rIj5BZGQ8L2E+PC90ZD4KICAgICAgICAgICAgCgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0ZD48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC12YWNhbmN5Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS8iPlZhY2FuY3lzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgPC90YWJsZT4KICAgICAgICA8L2Rpdj4KICAgIAoKPC9kaXY+CgogICAgICAgIAo8ZGl2IGlkPSJjb250ZW50LXJlbGF0ZWQiPgogICAgPGRpdiBjbGFzcz0ibW9kdWxlIiBpZD0icmVjZW50LWFjdGlvbnMtbW9kdWxlIj4KICAgICAgICA8aDI+UmVjZW50IGFjdGlvbnM8L2gyPgogICAgICAgIDxoMz5NeSBhY3Rpb25zPC9oMz4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgPHVsIGNsYXNzPSJhY3Rpb25saXN0Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaSBjbGFzcz0iYWRkbGluayI+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS9hcHBsaWNhdGlvbi8xL2NoYW5nZS8iPkFwcGxpY2F0aW9uIG9iamVjdDwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5BcHBsaWNhdGlvbjwvc3Bhbj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgICAgPGxpIGNsYXNzPSJhZGRsaW5rIj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9jb3JlL3ZhY2FuY3kvMS9jaGFuZ2UvIj5WYWNhbmN5IG9iamVjdDwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5WYWNhbmN5PC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8bGkgY2xhc3M9ImFkZGxpbmsiPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2NvcmUvc3VwZXJ2aXNvci8xL2NoYW5nZS8iPlN1cGVydmlzb3Igb2JqZWN0PC9hPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YnIvPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9Im1pbmkgcXVpZXQiPlN1cGVydmlzb3I8L3NwYW4+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgPC9saT4KICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaSBjbGFzcz0iYWRkbGluayI+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS9zdHVkZW50LzEvY2hhbmdlLyI+U3R1ZGVudCBvYmplY3Q8L2E+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxici8+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz0ibWluaSBxdWlldCI+U3R1ZGVudDwvc3Bhbj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgICAgPGxpIGNsYXNzPSJhZGRsaW5rIj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9jb3JlL2NvbXBhbnkvMi9jaGFuZ2UvIj5Db21wYW55IG9iamVjdDwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5Db21wYW55PC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8bGkgY2xhc3M9ImRlbGV0ZWxpbmsiPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgQ29tcGFueSBvYmplY3QKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5Db21wYW55PC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8bGkgY2xhc3M9ImFkZGxpbmsiPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci80L2NoYW5nZS8iPmZhcmhhbnN1cGVyPC9hPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YnIvPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9Im1pbmkgcXVpZXQiPlVzZXI8L3NwYW4+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgPC9saT4KICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaSBjbGFzcz0iYWRkbGluayI+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vYXV0aC91c2VyLzMvY2hhbmdlLyI+ZmFyaGFuY29ycDwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5Vc2VyPC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8bGkgY2xhc3M9ImFkZGxpbmsiPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8yL2NoYW5nZS8iPmZhcmhhbjwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5Vc2VyPC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8bGkgY2xhc3M9ImFkZGxpbmsiPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8xL2NoYW5nZS8iPkNvbXBhbnkgb2JqZWN0PC9hPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YnIvPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9Im1pbmkgcXVpZXQiPkNvbXBhbnk8L3NwYW4+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgPC9saT4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdWw+CiAgICAgICAgICAgIAogICAgPC9kaXY+CjwvZGl2PgoKICAgICAgICA8YnIgY2xhc3M9ImNsZWFyIiAvPgogICAgPC9kaXY+CiAgICA8IS0tIEVORCBDb250ZW50IC0tPgoKICAgIDxkaXYgaWQ9ImZvb3RlciI+PC9kaXY+CjwvZGl2Pgo8IS0tIEVORCBDb250YWluZXIgLS0+Cgo8L2JvZHk+CjwvaHRtbD4K", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 15:56:56 GMT\", \"Expires\": \"Mon, 27 Mar 2017 15:56:56 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\"}" - } -}, -{ - "model": "silk.response", - "pk": "473543f8-2d9d-424a-8989-43d8ffd6398e", - "fields": { - "request": "a86c3ace-b4e5-4cc2-9a23-8972efb78e9e", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "47737547-9a8d-4899-a024-a852f4d14214", - "fields": { - "request": "221da8aa-9982-4c19-865f-8fee4b5308d0", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "47a576c5-e1b4-4d86-830b-0607374908a1", - "fields": { - "request": "710b16dc-80e1-4366-b71f-219940321f75", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPkFkZCBzdHVkZW50IHwgRGphbmdvIHNpdGUgYWRtaW48L3RpdGxlPgo8bGluayByZWw9InN0eWxlc2hlZXQiIHR5cGU9InRleHQvY3NzIiBocmVmPSIvYXNzZXRzL2FkbWluL2Nzcy9iYXNlLmNzcyIgLz4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvZm9ybXMuY3NzIiAvPgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9jb3JlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IvanF1ZXJ5L2pxdWVyeS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvanF1ZXJ5LmluaXQuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2FkbWluL1JlbGF0ZWRPYmplY3RMb29rdXBzLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hY3Rpb25zLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy91cmxpZnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL3ByZXBvcHVsYXRlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IveHJlZ2V4cC94cmVnZXhwLmpzIj48L3NjcmlwdD4KCjxtZXRhIG5hbWU9InJvYm90cyIgY29udGVudD0iTk9ORSxOT0FSQ0hJVkUiIC8+CjwvaGVhZD4KCgo8Ym9keSBjbGFzcz0iIGFwcC1jb3JlIG1vZGVsLXN0dWRlbnQgY2hhbmdlLWZvcm0iCiAgZGF0YS1hZG1pbi11dGMtb2Zmc2V0PSIwIj4KCjwhLS0gQ29udGFpbmVyIC0tPgo8ZGl2IGlkPSJjb250YWluZXIiPgoKICAgIAogICAgPCEtLSBIZWFkZXIgLS0+CiAgICA8ZGl2IGlkPSJoZWFkZXIiPgogICAgICAgIDxkaXYgaWQ9ImJyYW5kaW5nIj4KICAgICAgICAKPGgxIGlkPSJzaXRlLW5hbWUiPjxhIGhyZWY9Ii9hZG1pbi8iPkRqYW5nbyBhZG1pbmlzdHJhdGlvbjwvYT48L2gxPgoKICAgICAgICA8L2Rpdj4KICAgICAgICAKICAgICAgICAKICAgICAgICA8ZGl2IGlkPSJ1c2VyLXRvb2xzIj4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICBXZWxjb21lLAogICAgICAgICAgICAgICAgPHN0cm9uZz5rYXBlPC9zdHJvbmc+LgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvIj5WaWV3IHNpdGU8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL3Bhc3N3b3JkX2NoYW5nZS8iPkNoYW5nZSBwYXNzd29yZDwvYT4gLwogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vbG9nb3V0LyI+TG9nIG91dDwvYT4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgCiAgICA8L2Rpdj4KICAgIDwhLS0gRU5EIEhlYWRlciAtLT4KICAgIAo8ZGl2IGNsYXNzPSJicmVhZGNydW1icyI+CjxhIGhyZWY9Ii9hZG1pbi8iPkhvbWU8L2E+CiZyc2FxdW87IDxhIGhyZWY9Ii9hZG1pbi9jb3JlLyI+Q29yZTwvYT4KJnJzYXF1bzsgPGEgaHJlZj0iL2FkbWluL2NvcmUvc3R1ZGVudC8iPlN0dWRlbnRzPC9hPgomcnNhcXVvOyBBZGQgc3R1ZGVudAo8L2Rpdj4KCiAgICAKCiAgICAKICAgICAgICAKICAgIAoKICAgIDwhLS0gQ29udGVudCAtLT4KICAgIDxkaXYgaWQ9ImNvbnRlbnQiIGNsYXNzPSJjb2xNIj4KICAgICAgICAKICAgICAgICA8aDE+QWRkIHN0dWRlbnQ8L2gxPgogICAgICAgIDxkaXYgaWQ9ImNvbnRlbnQtbWFpbiI+CgoKCjxmb3JtIGVuY3R5cGU9Im11bHRpcGFydC9mb3JtLWRhdGEiIGFjdGlvbj0iIiBtZXRob2Q9InBvc3QiIGlkPSJzdHVkZW50X2Zvcm0iIG5vdmFsaWRhdGU+PGlucHV0IHR5cGU9J2hpZGRlbicgbmFtZT0nY3NyZm1pZGRsZXdhcmV0b2tlbicgdmFsdWU9JzZwdmJRQUZLVU00YXFhZU5Ibnh4TjJOZTloZkNmR29ndnZDMDI2eEZISmZ6TmlnZnFPMlpGSnVZN2NscnpHazUnIC8+CjxkaXY+CgoKCgogICAgPHAgY2xhc3M9ImVycm9ybm90ZSI+CiAgICBQbGVhc2UgY29ycmVjdCB0aGUgZXJyb3IgYmVsb3cuCiAgICA8L3A+CiAgICAKCgoKCiAgPGZpZWxkc2V0IGNsYXNzPSJtb2R1bGUgYWxpZ25lZCAiPgogICAgCiAgICAKICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImZvcm0tcm93IGZpZWxkLXVzZXIiPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgY2xhc3M9InJlcXVpcmVkIiBmb3I9ImlkX3VzZXIiPlVzZXI6PC9sYWJlbD4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAKPGRpdiBjbGFzcz0icmVsYXRlZC13aWRnZXQtd3JhcHBlciI+CiAgICA8c2VsZWN0IGlkPSJpZF91c2VyIiBuYW1lPSJ1c2VyIiByZXF1aXJlZD4KPG9wdGlvbiB2YWx1ZT0iIj4tLS0tLS0tLS08L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMiIgc2VsZWN0ZWQ9InNlbGVjdGVkIj5mYXJoYW48L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMyI+ZmFyaGFuY29ycDwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSI0Ij5mYXJoYW5zdXBlcjwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIxIj5rYXBlPC9vcHRpb24+Cjwvc2VsZWN0PgogICAgCiAgICAgICAgCiAgICAgICAgPGEgY2xhc3M9InJlbGF0ZWQtd2lkZ2V0LXdyYXBwZXItbGluayBjaGFuZ2UtcmVsYXRlZCIgaWQ9ImNoYW5nZV9pZF91c2VyIgogICAgICAgICAgICBkYXRhLWhyZWYtdGVtcGxhdGU9Ii9hZG1pbi9hdXRoL3VzZXIvX19ma19fL2NoYW5nZS8/X3RvX2ZpZWxkPWlkJmFtcDtfcG9wdXA9MSIKICAgICAgICAgICAgdGl0bGU9IkNoYW5nZSBzZWxlY3RlZCB1c2VyIj4KICAgICAgICAgICAgPGltZyBzcmM9Ii9hc3NldHMvYWRtaW4vaW1nL2ljb24tY2hhbmdlbGluay5zdmciIGFsdD0iQ2hhbmdlIi8+CiAgICAgICAgPC9hPgogICAgICAgIAogICAgICAgIAogICAgICAgIDxhIGNsYXNzPSJyZWxhdGVkLXdpZGdldC13cmFwcGVyLWxpbmsgYWRkLXJlbGF0ZWQiIGlkPSJhZGRfaWRfdXNlciIKICAgICAgICAgICAgaHJlZj0iL2FkbWluL2F1dGgvdXNlci9hZGQvP190b19maWVsZD1pZCZhbXA7X3BvcHVwPTEiCiAgICAgICAgICAgIHRpdGxlPSJBZGQgYW5vdGhlciB1c2VyIj4KICAgICAgICAgICAgPGltZyBzcmM9Ii9hc3NldHMvYWRtaW4vaW1nL2ljb24tYWRkbGluay5zdmciIGFsdD0iQWRkIi8+CiAgICAgICAgPC9hPgogICAgICAgIAogICAgICAgIAogICAgCjwvZGl2PgoKICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC1ucG0iPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgY2xhc3M9InJlcXVpcmVkIiBmb3I9ImlkX25wbSI+TnBtOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgPGlucHV0IGNsYXNzPSJ2SW50ZWdlckZpZWxkIiBpZD0iaWRfbnBtIiBuYW1lPSJucG0iIHR5cGU9InRleHQiIHZhbHVlPSIxNDA2NTcyMzIxIiByZXF1aXJlZCAvPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDwvZGl2PgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImZvcm0tcm93IGZpZWxkLXJlc3VtZSI+CiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXY+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxsYWJlbCBmb3I9ImlkX3Jlc3VtZSI+UmVzdW1lOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgPGlucHV0IGlkPSJpZF9yZXN1bWUiIG5hbWU9InJlc3VtZSIgdHlwZT0iZmlsZSIgLz4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC1waG9uZV9udW1iZXIiPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgZm9yPSJpZF9waG9uZV9udW1iZXIiPlBob25lIG51bWJlcjo8L2xhYmVsPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxpbnB1dCBjbGFzcz0idlRleHRGaWVsZCIgaWQ9ImlkX3Bob25lX251bWJlciIgbWF4bGVuZ3RoPSIxMDAiIG5hbWU9InBob25lX251bWJlciIgdHlwZT0idGV4dCIgdmFsdWU9InlheWF5YSIgLz4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBlcnJvcnMgZmllbGQtYm9va21hcmtlZF92YWNhbmNpZXMiPgogICAgICAgICAgICA8dWwgY2xhc3M9ImVycm9ybGlzdCI+PGxpPlRoaXMgZmllbGQgaXMgcmVxdWlyZWQuPC9saT48L3VsPgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXY+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxsYWJlbCBjbGFzcz0icmVxdWlyZWQiIGZvcj0iaWRfYm9va21hcmtlZF92YWNhbmNpZXMiPkJvb2ttYXJrZWQgdmFjYW5jaWVzOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgCjxkaXYgY2xhc3M9InJlbGF0ZWQtd2lkZ2V0LXdyYXBwZXIiPgogICAgPHNlbGVjdCBtdWx0aXBsZT0ibXVsdGlwbGUiIGlkPSJpZF9ib29rbWFya2VkX3ZhY2FuY2llcyIgbmFtZT0iYm9va21hcmtlZF92YWNhbmNpZXMiIHJlcXVpcmVkPgo8L3NlbGVjdD4KICAgIAogICAgICAgIAogICAgICAgIAogICAgICAgIDxhIGNsYXNzPSJyZWxhdGVkLXdpZGdldC13cmFwcGVyLWxpbmsgYWRkLXJlbGF0ZWQiIGlkPSJhZGRfaWRfYm9va21hcmtlZF92YWNhbmNpZXMiCiAgICAgICAgICAgIGhyZWY9Ii9hZG1pbi9jb3JlL3ZhY2FuY3kvYWRkLz9fdG9fZmllbGQ9aWQmYW1wO19wb3B1cD0xIgogICAgICAgICAgICB0aXRsZT0iQWRkIGFub3RoZXIgdmFjYW5jeSI+CiAgICAgICAgICAgIDxpbWcgc3JjPSIvYXNzZXRzL2FkbWluL2ltZy9pY29uLWFkZGxpbmsuc3ZnIiBhbHQ9IkFkZCIvPgogICAgICAgIDwvYT4KICAgICAgICAKICAgICAgICAKICAgIAo8L2Rpdj4KCiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8cCBjbGFzcz0iaGVscCI+SG9sZCBkb3duICJDb250cm9sIiwgb3IgIkNvbW1hbmQiIG9uIGEgTWFjLCB0byBzZWxlY3QgbW9yZSB0aGFuIG9uZS48L3A+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKPC9maWVsZHNldD4KCgoKCgoKCgoKCgoKCjxkaXYgY2xhc3M9InN1Ym1pdC1yb3ciPgo8aW5wdXQgdHlwZT0ic3VibWl0IiB2YWx1ZT0iU2F2ZSIgY2xhc3M9ImRlZmF1bHQiIG5hbWU9Il9zYXZlIiAvPgoKCjxpbnB1dCB0eXBlPSJzdWJtaXQiIHZhbHVlPSJTYXZlIGFuZCBhZGQgYW5vdGhlciIgbmFtZT0iX2FkZGFub3RoZXIiIC8+CjxpbnB1dCB0eXBlPSJzdWJtaXQiIHZhbHVlPSJTYXZlIGFuZCBjb250aW51ZSBlZGl0aW5nIiBuYW1lPSJfY29udGludWUiIC8+CjwvZGl2PgoKCgogICAgPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiCiAgICAgICAgICAgIGlkPSJkamFuZ28tYWRtaW4tZm9ybS1hZGQtY29uc3RhbnRzIgogICAgICAgICAgICBzcmM9Ii9hc3NldHMvYWRtaW4vanMvY2hhbmdlX2Zvcm0uanMiCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgZGF0YS1tb2RlbC1uYW1lPSJzdHVkZW50IgogICAgICAgICAgICA+CiAgICA8L3NjcmlwdD4KCgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IgogICAgICAgIGlkPSJkamFuZ28tYWRtaW4tcHJlcG9wdWxhdGVkLWZpZWxkcy1jb25zdGFudHMiCiAgICAgICAgc3JjPSIvYXNzZXRzL2FkbWluL2pzL3ByZXBvcHVsYXRlX2luaXQuanMiCiAgICAgICAgZGF0YS1wcmVwb3B1bGF0ZWQtZmllbGRzPSJbXSI+Cjwvc2NyaXB0PgoKCjwvZGl2Pgo8L2Zvcm0+PC9kaXY+CgogICAgICAgIAogICAgICAgIDxiciBjbGFzcz0iY2xlYXIiIC8+CiAgICA8L2Rpdj4KICAgIDwhLS0gRU5EIENvbnRlbnQgLS0+CgogICAgPGRpdiBpZD0iZm9vdGVyIj48L2Rpdj4KPC9kaXY+CjwhLS0gRU5EIENvbnRhaW5lciAtLT4KCjwvYm9keT4KPC9odG1sPgo=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 14:58:05 GMT\", \"Expires\": \"Mon, 27 Mar 2017 14:58:05 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "47e27ac7-2ee1-44c5-a4e7-8b35a0a67771", - "fields": { - "request": "7d6315de-2bbc-40a3-8b9b-b0f503ef0e6a", - "status_code": 200, - "raw_body": "eyJzd2FnZ2VyIjogIjIuMCIsICJpbmZvIjogeyJ0aXRsZSI6ICIiLCAidmVyc2lvbiI6ICIifSwgInBhdGhzIjogeyIvYXBpL2FwcGxpY2F0aW9ucy8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAiYXBwbGljYXRpb25zX2xpc3QiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogInBhZ2UiLCAicmVxdWlyZWQiOiBmYWxzZSwgImluIjogInF1ZXJ5IiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbImFwcGxpY2F0aW9ucyJdfSwgInBvc3QiOiB7Im9wZXJhdGlvbklkIjogImFwcGxpY2F0aW9uc19jcmVhdGUiLCAicmVzcG9uc2VzIjogeyIyMDEiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InN0dWRlbnRfbnBtIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgInZhY2FuY3lfaWQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9fSwgInJlcXVpcmVkIjogWyJzdHVkZW50X25wbSIsICJ2YWNhbmN5X2lkIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsiYXBwbGljYXRpb25zIl19fSwgIi9hcGkvYXBwbGljYXRpb25zL3tpZH0vIjogeyJnZXQiOiB7Im9wZXJhdGlvbklkIjogImFwcGxpY2F0aW9uc19yZWFkIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbImFwcGxpY2F0aW9ucyJdfSwgInB1dCI6IHsib3BlcmF0aW9uSWQiOiAiYXBwbGljYXRpb25zX3VwZGF0ZSIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InN0dWRlbnRfbnBtIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgInZhY2FuY3lfaWQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9fSwgInJlcXVpcmVkIjogWyJzdHVkZW50X25wbSIsICJ2YWNhbmN5X2lkIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsiYXBwbGljYXRpb25zIl19LCAicGF0Y2giOiB7Im9wZXJhdGlvbklkIjogImFwcGxpY2F0aW9uc19wYXJ0aWFsX3VwZGF0ZSIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InN0dWRlbnRfbnBtIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgInZhY2FuY3lfaWQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9fX19XSwgImNvbnN1bWVzIjogWyJhcHBsaWNhdGlvbi9qc29uIl0sICJ0YWdzIjogWyJhcHBsaWNhdGlvbnMiXX0sICJkZWxldGUiOiB7Im9wZXJhdGlvbklkIjogImFwcGxpY2F0aW9uc19kZWxldGUiLCAicmVzcG9uc2VzIjogeyIyMDQiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsiYXBwbGljYXRpb25zIl19fSwgIi9hcGkvY29tcGFuaWVzLyI6IHsiZ2V0IjogeyJvcGVyYXRpb25JZCI6ICJjb21wYW5pZXNfbGlzdCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAicGFnZSIsICJyZXF1aXJlZCI6IGZhbHNlLCAiaW4iOiAicXVlcnkiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsiY29tcGFuaWVzIl19LCAicG9zdCI6IHsib3BlcmF0aW9uSWQiOiAiY29tcGFuaWVzX2NyZWF0ZSIsICJyZXNwb25zZXMiOiB7IjIwMSI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidXNlciI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAib2JqZWN0In0sICJkZXNjcmlwdGlvbiI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sICJ2ZXJpZmllZCI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiYm9vbGVhbiJ9LCAibG9nbyI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sICJhbGFtYXQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9fSwgInJlcXVpcmVkIjogWyJ1c2VyIiwgImRlc2NyaXB0aW9uIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsiY29tcGFuaWVzIl19fSwgIi9hcGkvY29tcGFuaWVzL3tpZH0vIjogeyJnZXQiOiB7Im9wZXJhdGlvbklkIjogImNvbXBhbmllc19yZWFkIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbImNvbXBhbmllcyJdfSwgInB1dCI6IHsib3BlcmF0aW9uSWQiOiAiY29tcGFuaWVzX3VwZGF0ZSIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InVzZXIiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogIm9iamVjdCJ9LCAiZGVzY3JpcHRpb24iOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAidmVyaWZpZWQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImJvb2xlYW4ifSwgImxvZ28iOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiYWxhbWF0IjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifX0sICJyZXF1aXJlZCI6IFsidXNlciIsICJkZXNjcmlwdGlvbiJdfX1dLCAiY29uc3VtZXMiOiBbImFwcGxpY2F0aW9uL2pzb24iXSwgInRhZ3MiOiBbImNvbXBhbmllcyJdfSwgInBhdGNoIjogeyJvcGVyYXRpb25JZCI6ICJjb21wYW5pZXNfcGFydGlhbF91cGRhdGUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ1c2VyIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJvYmplY3QifSwgImRlc2NyaXB0aW9uIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgInZlcmlmaWVkIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJib29sZWFuIn0sICJsb2dvIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImFsYW1hdCI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn19fX1dLCAiY29uc3VtZXMiOiBbImFwcGxpY2F0aW9uL2pzb24iXSwgInRhZ3MiOiBbImNvbXBhbmllcyJdfSwgImRlbGV0ZSI6IHsib3BlcmF0aW9uSWQiOiAiY29tcGFuaWVzX2RlbGV0ZSIsICJyZXNwb25zZXMiOiB7IjIwNCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJjb21wYW5pZXMiXX19LCAiL2FwaS9zdHVkZW50cy8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAic3R1ZGVudHNfbGlzdCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAicGFnZSIsICJyZXF1aXJlZCI6IGZhbHNlLCAiaW4iOiAicXVlcnkiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsic3R1ZGVudHMiXX0sICJwb3N0IjogeyJvcGVyYXRpb25JZCI6ICJzdHVkZW50c19jcmVhdGUiLCAicmVzcG9uc2VzIjogeyIyMDEiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InVzZXIiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogIm9iamVjdCJ9LCAibnBtIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJpbnRlZ2VyIn0sICJyZXN1bWUiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImZpbGUifSwgInBob25lX251bWJlciI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sICJib29rbWFya2VkX3ZhY2FuY2llcyI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiYXJyYXkiLCAiaXRlbXMiOiB7InR5cGUiOiAic3RyaW5nIn19fSwgInJlcXVpcmVkIjogWyJ1c2VyIiwgIm5wbSJdfX1dLCAiY29uc3VtZXMiOiBbImFwcGxpY2F0aW9uL2pzb24iXSwgInRhZ3MiOiBbInN0dWRlbnRzIl19fSwgIi9hcGkvc3R1ZGVudHMve2lkfS8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAic3R1ZGVudHNfcmVhZCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJzdHVkZW50cyJdfSwgInB1dCI6IHsib3BlcmF0aW9uSWQiOiAic3R1ZGVudHNfdXBkYXRlIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCB7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidXNlciI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAib2JqZWN0In0sICJucG0iOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImludGVnZXIifSwgInJlc3VtZSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiZmlsZSJ9LCAicGhvbmVfbnVtYmVyIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImJvb2ttYXJrZWRfdmFjYW5jaWVzIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJhcnJheSIsICJpdGVtcyI6IHsidHlwZSI6ICJzdHJpbmcifX19LCAicmVxdWlyZWQiOiBbInVzZXIiLCAibnBtIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsic3R1ZGVudHMiXX0sICJwYXRjaCI6IHsib3BlcmF0aW9uSWQiOiAic3R1ZGVudHNfcGFydGlhbF91cGRhdGUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ1c2VyIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJvYmplY3QifSwgIm5wbSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiaW50ZWdlciJ9LCAicmVzdW1lIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJmaWxlIn0sICJwaG9uZV9udW1iZXIiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiYm9va21hcmtlZF92YWNhbmNpZXMiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImFycmF5IiwgIml0ZW1zIjogeyJ0eXBlIjogInN0cmluZyJ9fX19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsic3R1ZGVudHMiXX0sICJkZWxldGUiOiB7Im9wZXJhdGlvbklkIjogInN0dWRlbnRzX2RlbGV0ZSIsICJyZXNwb25zZXMiOiB7IjIwNCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJzdHVkZW50cyJdfX0sICIvYXBpL3N0dWRlbnRzL3tpZH0vYm9va21hcmtlZC12YWNhbmNpZXMvIjogeyJwb3N0IjogeyJvcGVyYXRpb25JZCI6ICJzdHVkZW50c19ib29rbWFya192YWNhbmNpZXMiLCAicmVzcG9uc2VzIjogeyIyMDEiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ1c2VyIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJvYmplY3QifSwgIm5wbSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiaW50ZWdlciJ9LCAicmVzdW1lIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJmaWxlIn0sICJwaG9uZV9udW1iZXIiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiYm9va21hcmtlZF92YWNhbmNpZXMiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImFycmF5IiwgIml0ZW1zIjogeyJ0eXBlIjogInN0cmluZyJ9fX0sICJyZXF1aXJlZCI6IFsidXNlciIsICJucG0iXX19XSwgImNvbnN1bWVzIjogWyJhcHBsaWNhdGlvbi9qc29uIl0sICJ0YWdzIjogWyJzdHVkZW50cyJdfSwgImRlbGV0ZSI6IHsib3BlcmF0aW9uSWQiOiAic3R1ZGVudHNfdW5ib29rbWFya192YWNhbmNpZXMiLCAicmVzcG9uc2VzIjogeyIyMDQiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsic3R1ZGVudHMiXX19LCAiL2FwaS9zdXBlcnZpc29ycy8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAic3VwZXJ2aXNvcnNfbGlzdCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAicGFnZSIsICJyZXF1aXJlZCI6IGZhbHNlLCAiaW4iOiAicXVlcnkiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsic3VwZXJ2aXNvcnMiXX0sICJwb3N0IjogeyJvcGVyYXRpb25JZCI6ICJzdXBlcnZpc29yc19jcmVhdGUiLCAicmVzcG9uc2VzIjogeyIyMDEiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InVzZXIiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogIm9iamVjdCJ9LCAibmlwIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJpbnRlZ2VyIn19LCAicmVxdWlyZWQiOiBbInVzZXIiLCAibmlwIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsic3VwZXJ2aXNvcnMiXX19LCAiL2FwaS9zdXBlcnZpc29ycy97aWR9LyI6IHsiZ2V0IjogeyJvcGVyYXRpb25JZCI6ICJzdXBlcnZpc29yc19yZWFkIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbInN1cGVydmlzb3JzIl19LCAicHV0IjogeyJvcGVyYXRpb25JZCI6ICJzdXBlcnZpc29yc191cGRhdGUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ1c2VyIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJvYmplY3QifSwgIm5pcCI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiaW50ZWdlciJ9fSwgInJlcXVpcmVkIjogWyJ1c2VyIiwgIm5pcCJdfX1dLCAiY29uc3VtZXMiOiBbImFwcGxpY2F0aW9uL2pzb24iXSwgInRhZ3MiOiBbInN1cGVydmlzb3JzIl19LCAicGF0Y2giOiB7Im9wZXJhdGlvbklkIjogInN1cGVydmlzb3JzX3BhcnRpYWxfdXBkYXRlIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCB7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidXNlciI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAib2JqZWN0In0sICJuaXAiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImludGVnZXIifX19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsic3VwZXJ2aXNvcnMiXX0sICJkZWxldGUiOiB7Im9wZXJhdGlvbklkIjogInN1cGVydmlzb3JzX2RlbGV0ZSIsICJyZXNwb25zZXMiOiB7IjIwNCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJzdXBlcnZpc29ycyJdfX0sICIvYXBpL3VzZXJzLyI6IHsiZ2V0IjogeyJvcGVyYXRpb25JZCI6ICJ1c2Vyc19saXN0IiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJwYWdlIiwgInJlcXVpcmVkIjogZmFsc2UsICJpbiI6ICJxdWVyeSIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJ1c2VycyJdfSwgInBvc3QiOiB7Im9wZXJhdGlvbklkIjogInVzZXJzX2NyZWF0ZSIsICJyZXNwb25zZXMiOiB7IjIwMSI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidXNlcm5hbWUiOiB7ImRlc2NyaXB0aW9uIjogIlJlcXVpcmVkLiAxNTAgY2hhcmFjdGVycyBvciBmZXdlci4gTGV0dGVycywgZGlnaXRzIGFuZCBALy4vKy8tL18gb25seS4iLCAidHlwZSI6ICJzdHJpbmcifSwgImVtYWlsIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImlzX3N0YWZmIjogeyJkZXNjcmlwdGlvbiI6ICJEZXNpZ25hdGVzIHdoZXRoZXIgdGhlIHVzZXIgY2FuIGxvZyBpbnRvIHRoaXMgYWRtaW4gc2l0ZS4iLCAidHlwZSI6ICJib29sZWFuIn19LCAicmVxdWlyZWQiOiBbInVzZXJuYW1lIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsidXNlcnMiXX19LCAiL2FwaS91c2Vycy9tZS8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAidXNlcnNfbWUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbXSwgInRhZ3MiOiBbInVzZXJzIl19fSwgIi9hcGkvdXNlcnMve2lkfS8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAidXNlcnNfcmVhZCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJ1c2VycyJdfSwgInB1dCI6IHsib3BlcmF0aW9uSWQiOiAidXNlcnNfdXBkYXRlIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCB7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidXNlcm5hbWUiOiB7ImRlc2NyaXB0aW9uIjogIlJlcXVpcmVkLiAxNTAgY2hhcmFjdGVycyBvciBmZXdlci4gTGV0dGVycywgZGlnaXRzIGFuZCBALy4vKy8tL18gb25seS4iLCAidHlwZSI6ICJzdHJpbmcifSwgImVtYWlsIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImlzX3N0YWZmIjogeyJkZXNjcmlwdGlvbiI6ICJEZXNpZ25hdGVzIHdoZXRoZXIgdGhlIHVzZXIgY2FuIGxvZyBpbnRvIHRoaXMgYWRtaW4gc2l0ZS4iLCAidHlwZSI6ICJib29sZWFuIn19LCAicmVxdWlyZWQiOiBbInVzZXJuYW1lIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsidXNlcnMiXX0sICJwYXRjaCI6IHsib3BlcmF0aW9uSWQiOiAidXNlcnNfcGFydGlhbF91cGRhdGUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ1c2VybmFtZSI6IHsiZGVzY3JpcHRpb24iOiAiUmVxdWlyZWQuIDE1MCBjaGFyYWN0ZXJzIG9yIGZld2VyLiBMZXR0ZXJzLCBkaWdpdHMgYW5kIEAvLi8rLy0vXyBvbmx5LiIsICJ0eXBlIjogInN0cmluZyJ9LCAiZW1haWwiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiaXNfc3RhZmYiOiB7ImRlc2NyaXB0aW9uIjogIkRlc2lnbmF0ZXMgd2hldGhlciB0aGUgdXNlciBjYW4gbG9nIGludG8gdGhpcyBhZG1pbiBzaXRlLiIsICJ0eXBlIjogImJvb2xlYW4ifX19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsidXNlcnMiXX0sICJkZWxldGUiOiB7Im9wZXJhdGlvbklkIjogInVzZXJzX2RlbGV0ZSIsICJyZXNwb25zZXMiOiB7IjIwNCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJ1c2VycyJdfX0sICIvYXBpL3ZhY2FuY2llcy8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAidmFjYW5jaWVzX2xpc3QiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogInBhZ2UiLCAicmVxdWlyZWQiOiBmYWxzZSwgImluIjogInF1ZXJ5IiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbInZhY2FuY2llcyJdfSwgInBvc3QiOiB7Im9wZXJhdGlvbklkIjogInZhY2FuY2llc19jcmVhdGUiLCAicmVzcG9uc2VzIjogeyIyMDEiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7ImNvbXBhbnkiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogIm9iamVjdCJ9LCAidmVyaWZpZWQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImJvb2xlYW4ifSwgIm9wZW5fdGltZSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sICJkZXNjcmlwdGlvbiI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sICJjbG9zZV90aW1lIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifX0sICJyZXF1aXJlZCI6IFsiY29tcGFueSIsICJvcGVuX3RpbWUiLCAiY2xvc2VfdGltZSJdfX1dLCAiY29uc3VtZXMiOiBbImFwcGxpY2F0aW9uL2pzb24iXSwgInRhZ3MiOiBbInZhY2FuY2llcyJdfX0sICIvYXBpL3ZhY2FuY2llcy97aWR9LyI6IHsiZ2V0IjogeyJvcGVyYXRpb25JZCI6ICJ2YWNhbmNpZXNfcmVhZCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJ2YWNhbmNpZXMiXX0sICJwdXQiOiB7Im9wZXJhdGlvbklkIjogInZhY2FuY2llc191cGRhdGUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJjb21wYW55IjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJvYmplY3QifSwgInZlcmlmaWVkIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJib29sZWFuIn0sICJvcGVuX3RpbWUiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiZGVzY3JpcHRpb24iOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiY2xvc2VfdGltZSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn19LCAicmVxdWlyZWQiOiBbImNvbXBhbnkiLCAib3Blbl90aW1lIiwgImNsb3NlX3RpbWUiXX19XSwgImNvbnN1bWVzIjogWyJhcHBsaWNhdGlvbi9qc29uIl0sICJ0YWdzIjogWyJ2YWNhbmNpZXMiXX0sICJwYXRjaCI6IHsib3BlcmF0aW9uSWQiOiAidmFjYW5jaWVzX3BhcnRpYWxfdXBkYXRlIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCB7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsiY29tcGFueSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAib2JqZWN0In0sICJ2ZXJpZmllZCI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiYm9vbGVhbiJ9LCAib3Blbl90aW1lIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImRlc2NyaXB0aW9uIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImNsb3NlX3RpbWUiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9fX19XSwgImNvbnN1bWVzIjogWyJhcHBsaWNhdGlvbi9qc29uIl0sICJ0YWdzIjogWyJ2YWNhbmNpZXMiXX0sICJkZWxldGUiOiB7Im9wZXJhdGlvbklkIjogInZhY2FuY2llc19kZWxldGUiLCAicmVzcG9uc2VzIjogeyIyMDQiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsidmFjYW5jaWVzIl19fX0sICJzZWN1cml0eURlZmluaXRpb25zIjogeyJiYXNpYyI6IHsidHlwZSI6ICJiYXNpYyJ9fX0=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"application/openapi+json\", \"Allow\": \"GET, HEAD, OPTIONS\", \"Vary\": \"Accept\"}" - } -}, -{ - "model": "silk.response", - "pk": "48c8a580-fd2d-4dac-82aa-4d5b65bfa0e9", - "fields": { - "request": "f56e2139-36dd-41e7-b082-a1aea5f55573", - "status_code": 302, - "raw_body": "", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Location\": \"/admin/core/supervisor/\", \"Last-Modified\": \"Mon, 27 Mar 2017 15:22:39 GMT\", \"Expires\": \"Mon, 27 Mar 2017 15:22:39 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\"}" - } -}, -{ - "model": "silk.response", - "pk": "48d5fa11-1b0d-40e3-8d8e-58f1cd46a4f6", - "fields": { - "request": "89f5ae99-1c37-4d9a-8487-294a3f12fdf6", - "status_code": 200, - "raw_body": "CgoKCjwhRE9DVFlQRSBodG1sPgo8aHRtbD4KICA8aGVhZD4KICAgIAoKICAgICAgCiAgICAgICAgPG1ldGEgaHR0cC1lcXVpdj0iQ29udGVudC1UeXBlIiBjb250ZW50PSJ0ZXh0L2h0bWw7IGNoYXJzZXQ9dXRmLTgiLz4KICAgICAgICA8bWV0YSBuYW1lPSJyb2JvdHMiIGNvbnRlbnQ9Ik5PTkUsTk9BUkNISVZFIiAvPgogICAgICAKCiAgICAgIDx0aXRsZT5BcGkgUm9vdCDigJMgRGphbmdvIFJFU1QgZnJhbWV3b3JrPC90aXRsZT4KCiAgICAgIAogICAgICAgIAogICAgICAgICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9yZXN0X2ZyYW1ld29yay9jc3MvYm9vdHN0cmFwLm1pbi5jc3MiLz4KICAgICAgICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvcmVzdF9mcmFtZXdvcmsvY3NzL2Jvb3RzdHJhcC10d2Vha3MuY3NzIi8+CiAgICAgICAgCgogICAgICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvcmVzdF9mcmFtZXdvcmsvY3NzL3ByZXR0aWZ5LmNzcyIvPgogICAgICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvcmVzdF9mcmFtZXdvcmsvY3NzL2RlZmF1bHQuY3NzIi8+CiAgICAgIAoKICAgIAogIDwvaGVhZD4KCiAgCiAgPGJvZHkgY2xhc3M9IiI+CgogICAgPGRpdiBjbGFzcz0id3JhcHBlciI+CiAgICAgIAogICAgICAgIDxkaXYgY2xhc3M9Im5hdmJhciBuYXZiYXItc3RhdGljLXRvcCBuYXZiYXItaW52ZXJzZSI+CiAgICAgICAgICA8ZGl2IGNsYXNzPSJjb250YWluZXIiPgogICAgICAgICAgICA8c3Bhbj4KICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGNsYXNzPSduYXZiYXItYnJhbmQnIHJlbD0ibm9mb2xsb3ciIGhyZWY9J2h0dHA6Ly93d3cuZGphbmdvLXJlc3QtZnJhbWV3b3JrLm9yZyc+CiAgICAgICAgICAgICAgICAgICAgRGphbmdvIFJFU1QgZnJhbWV3b3JrCiAgICAgICAgICAgICAgICA8L2E+CiAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvc3Bhbj4KICAgICAgICAgICAgPHVsIGNsYXNzPSJuYXYgbmF2YmFyLW5hdiBwdWxsLXJpZ2h0Ij4KICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICA8bGkgY2xhc3M9ImRyb3Bkb3duIj4KICAgICAgICA8YSBocmVmPSIjIiBjbGFzcz0iZHJvcGRvd24tdG9nZ2xlIiBkYXRhLXRvZ2dsZT0iZHJvcGRvd24iPgogICAgICAgICAgICBrYXBlCiAgICAgICAgICAgIDxiIGNsYXNzPSJjYXJldCI+PC9iPgogICAgICAgIDwvYT4KICAgICAgICA8dWwgY2xhc3M9ImRyb3Bkb3duLW1lbnUiPgogICAgICAgICAgICA8bGk+PGEgaHJlZj0nL2FwaS9hcGktYXV0aC9sb2dvdXQvP25leHQ9L2FwaS8nPkxvZyBvdXQ8L2E+PC9saT4KICAgICAgICA8L3VsPgogICAgPC9saT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgIAogICAgICAgICAgICA8L3VsPgogICAgICAgICAgPC9kaXY+CiAgICAgICAgPC9kaXY+CiAgICAgIAoKICAgICAgPGRpdiBjbGFzcz0iY29udGFpbmVyIj4KICAgICAgICAKICAgICAgICAgIDx1bCBjbGFzcz0iYnJlYWRjcnVtYiI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGxpPjxhIGhyZWY9Ii9hcGkiPlN3YWdnZXIgU2NoZW1hPC9hPjwvbGk+CiAgICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGxpIGNsYXNzPSJhY3RpdmUiPjxhIGhyZWY9Ii9hcGkvIj5BcGkgUm9vdDwvYT48L2xpPgogICAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgIDwvdWw+CiAgICAgICAgCgogICAgICAgIDwhLS0gQ29udGVudCAtLT4KICAgICAgICA8ZGl2IGlkPSJjb250ZW50Ij4KCiAgICAgICAgICAKICAgICAgICAgICAgPGZvcm0gaWQ9ImdldC1mb3JtIiBjbGFzcz0icHVsbC1yaWdodCI+CiAgICAgICAgICAgICAgPGZpZWxkc2V0PgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9ImJ0bi1ncm91cCBmb3JtYXQtc2VsZWN0aW9uIj4KICAgICAgICAgICAgICAgICAgICA8YSBjbGFzcz0iYnRuIGJ0bi1wcmltYXJ5IGpzLXRvb2x0aXAiIGhyZWY9Ii9hcGkvIiByZWw9Im5vZm9sbG93IiB0aXRsZT0iTWFrZSBhIEdFVCByZXF1ZXN0IG9uIHRoZSBBcGkgUm9vdCByZXNvdXJjZSI+R0VUPC9hPgoKICAgICAgICAgICAgICAgICAgICA8YnV0dG9uIGNsYXNzPSJidG4gYnRuLXByaW1hcnkgZHJvcGRvd24tdG9nZ2xlIGpzLXRvb2x0aXAiIGRhdGEtdG9nZ2xlPSJkcm9wZG93biIgdGl0bGU9IlNwZWNpZnkgYSBmb3JtYXQgZm9yIHRoZSBHRVQgcmVxdWVzdCI+CiAgICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz0iY2FyZXQiPjwvc3Bhbj4KICAgICAgICAgICAgICAgICAgICA8L2J1dHRvbj4KICAgICAgICAgICAgICAgICAgICA8dWwgY2xhc3M9ImRyb3Bkb3duLW1lbnUiPgogICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxsaT4KICAgICAgICAgICAgICAgICAgICAgICAgICA8YSBjbGFzcz0ianMtdG9vbHRpcCBmb3JtYXQtb3B0aW9uIiBocmVmPSIvYXBpLz9mb3JtYXQ9anNvbiIgcmVsPSJub2ZvbGxvdyIgdGl0bGU9Ik1ha2UgYSBHRVQgcmVxdWVzdCBvbiB0aGUgQXBpIFJvb3QgcmVzb3VyY2Ugd2l0aCB0aGUgZm9ybWF0IHNldCB0byBganNvbmAiPmpzb248L2E+CiAgICAgICAgICAgICAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPGxpPgogICAgICAgICAgICAgICAgICAgICAgICAgIDxhIGNsYXNzPSJqcy10b29sdGlwIGZvcm1hdC1vcHRpb24iIGhyZWY9Ii9hcGkvP2Zvcm1hdD1hcGkiIHJlbD0ibm9mb2xsb3ciIHRpdGxlPSJNYWtlIGEgR0VUIHJlcXVlc3Qgb24gdGhlIEFwaSBSb290IHJlc291cmNlIHdpdGggdGhlIGZvcm1hdCBzZXQgdG8gYGFwaWAiPmFwaTwvYT4KICAgICAgICAgICAgICAgICAgICAgICAgPC9saT4KICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDwvdWw+CiAgICAgICAgICAgICAgICAgIDwvZGl2PgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgPC9maWVsZHNldD4KICAgICAgICAgICAgPC9mb3JtPgogICAgICAgICAgCgogICAgICAgICAgCiAgICAgICAgICAgIDxmb3JtIGNsYXNzPSJidXR0b24tZm9ybSIgYWN0aW9uPSIvYXBpLyIgZGF0YS1tZXRob2Q9Ik9QVElPTlMiPgogICAgICAgICAgICAgIDxidXR0b24gY2xhc3M9ImJ0biBidG4tcHJpbWFyeSBqcy10b29sdGlwIiB0aXRsZT0iTWFrZSBhbiBPUFRJT05TIHJlcXVlc3Qgb24gdGhlIEFwaSBSb290IHJlc291cmNlIj5PUFRJT05TPC9idXR0b24+CiAgICAgICAgICAgIDwvZm9ybT4KICAgICAgICAgIAoKICAgICAgICAgIAoKICAgICAgICAgIAoKICAgICAgICAgICAgPGRpdiBjbGFzcz0iY29udGVudC1tYWluIj4KICAgICAgICAgICAgICA8ZGl2IGNsYXNzPSJwYWdlLWhlYWRlciI+CiAgICAgICAgICAgICAgICA8aDE+QXBpIFJvb3Q8L2gxPgogICAgICAgICAgICAgIDwvZGl2PgogICAgICAgICAgICAgIDxkaXYgc3R5bGU9ImZsb2F0OmxlZnQiPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgIDxwPjwvcD4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgIDwvZGl2PgoKICAgICAgICAgICAgICAKCiAgICAgICAgICAgICAgPGRpdiBjbGFzcz0icmVxdWVzdC1pbmZvIiBzdHlsZT0iY2xlYXI6IGJvdGgiID4KICAgICAgICAgICAgICAgIDxwcmUgY2xhc3M9InByZXR0eXByaW50Ij48Yj5HRVQ8L2I+IC9hcGkvPC9wcmU+CiAgICAgICAgICAgICAgPC9kaXY+CgogICAgICAgICAgICAgIDxkaXYgY2xhc3M9InJlc3BvbnNlLWluZm8iPgogICAgICAgICAgICAgICAgPHByZSBjbGFzcz0icHJldHR5cHJpbnQiPjxzcGFuIGNsYXNzPSJtZXRhIG5vY29kZSI+PGI+SFRUUCAyMDAgT0s8L2I+CjxiPkFsbG93OjwvYj4gPHNwYW4gY2xhc3M9ImxpdCI+R0VULCBIRUFELCBPUFRJT05TPC9zcGFuPgo8Yj5Db250ZW50LVR5cGU6PC9iPiA8c3BhbiBjbGFzcz0ibGl0Ij5hcHBsaWNhdGlvbi9qc29uPC9zcGFuPgo8Yj5WYXJ5OjwvYj4gPHNwYW4gY2xhc3M9ImxpdCI+QWNjZXB0PC9zcGFuPgoKPC9zcGFuPnsKICAgICZxdW90O3VzZXJzJnF1b3Q7OiAmcXVvdDs8YSBocmVmPSJodHRwOi8vMTI3LjAuMC4xOjgwMDAvYXBpL3VzZXJzLyIgcmVsPSJub2ZvbGxvdyI+aHR0cDovLzEyNy4wLjAuMTo4MDAwL2FwaS91c2Vycy88L2E+JnF1b3Q7LAogICAgJnF1b3Q7c3R1ZGVudHMmcXVvdDs6ICZxdW90OzxhIGhyZWY9Imh0dHA6Ly8xMjcuMC4wLjE6ODAwMC9hcGkvc3R1ZGVudHMvIiByZWw9Im5vZm9sbG93Ij5odHRwOi8vMTI3LjAuMC4xOjgwMDAvYXBpL3N0dWRlbnRzLzwvYT4mcXVvdDssCiAgICAmcXVvdDtjb21wYW5pZXMmcXVvdDs6ICZxdW90OzxhIGhyZWY9Imh0dHA6Ly8xMjcuMC4wLjE6ODAwMC9hcGkvY29tcGFuaWVzLyIgcmVsPSJub2ZvbGxvdyI+aHR0cDovLzEyNy4wLjAuMTo4MDAwL2FwaS9jb21wYW5pZXMvPC9hPiZxdW90OywKICAgICZxdW90O3N1cGVydmlzb3JzJnF1b3Q7OiAmcXVvdDs8YSBocmVmPSJodHRwOi8vMTI3LjAuMC4xOjgwMDAvYXBpL3N1cGVydmlzb3JzLyIgcmVsPSJub2ZvbGxvdyI+aHR0cDovLzEyNy4wLjAuMTo4MDAwL2FwaS9zdXBlcnZpc29ycy88L2E+JnF1b3Q7LAogICAgJnF1b3Q7dmFjYW5jaWVzJnF1b3Q7OiAmcXVvdDs8YSBocmVmPSJodHRwOi8vMTI3LjAuMC4xOjgwMDAvYXBpL3ZhY2FuY2llcy8iIHJlbD0ibm9mb2xsb3ciPmh0dHA6Ly8xMjcuMC4wLjE6ODAwMC9hcGkvdmFjYW5jaWVzLzwvYT4mcXVvdDssCiAgICAmcXVvdDthcHBsaWNhdGlvbnMmcXVvdDs6ICZxdW90OzxhIGhyZWY9Imh0dHA6Ly8xMjcuMC4wLjE6ODAwMC9hcGkvYXBwbGljYXRpb25zLyIgcmVsPSJub2ZvbGxvdyI+aHR0cDovLzEyNy4wLjAuMTo4MDAwL2FwaS9hcHBsaWNhdGlvbnMvPC9hPiZxdW90Owp9PC9wcmU+CiAgICAgICAgICAgICAgPC9kaXY+CiAgICAgICAgICAgIDwvZGl2PgoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgCgogICAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICA8L2Rpdj48IS0tIC8uY29udGVudCAtLT4KICAgICAgPC9kaXY+PCEtLSAvLmNvbnRhaW5lciAtLT4KICAgIDwvZGl2PjwhLS0gLi93cmFwcGVyIC0tPgoKICAgIAoKICAgIAogICAgICA8c2NyaXB0PgogICAgICAgIHdpbmRvdy5kcmYgPSB7CiAgICAgICAgICBjc3JmSGVhZGVyTmFtZTogIlgtQ1NSRlRPS0VOIiwKICAgICAgICAgIGNzcmZDb29raWVOYW1lOiAiY3NyZnRva2VuIgogICAgICAgIH07CiAgICAgIDwvc2NyaXB0PgogICAgICA8c2NyaXB0IHNyYz0iL2Fzc2V0cy9yZXN0X2ZyYW1ld29yay9qcy9qcXVlcnktMS4xMi40Lm1pbi5qcyI+PC9zY3JpcHQ+CiAgICAgIDxzY3JpcHQgc3JjPSIvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrL2pzL2FqYXgtZm9ybS5qcyI+PC9zY3JpcHQ+CiAgICAgIDxzY3JpcHQgc3JjPSIvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrL2pzL2NzcmYuanMiPjwvc2NyaXB0PgogICAgICA8c2NyaXB0IHNyYz0iL2Fzc2V0cy9yZXN0X2ZyYW1ld29yay9qcy9ib290c3RyYXAubWluLmpzIj48L3NjcmlwdD4KICAgICAgPHNjcmlwdCBzcmM9Ii9hc3NldHMvcmVzdF9mcmFtZXdvcmsvanMvcHJldHRpZnktbWluLmpzIj48L3NjcmlwdD4KICAgICAgPHNjcmlwdCBzcmM9Ii9hc3NldHMvcmVzdF9mcmFtZXdvcmsvanMvZGVmYXVsdC5qcyI+PC9zY3JpcHQ+CiAgICAgIDxzY3JpcHQ+CiAgICAgICAgJChkb2N1bWVudCkucmVhZHkoZnVuY3Rpb24oKSB7CiAgICAgICAgICAkKCdmb3JtJykuYWpheEZvcm0oKTsKICAgICAgICB9KTsKICAgICAgPC9zY3JpcHQ+CiAgICAKCiAgPC9ib2R5PgogIAo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Allow\": \"GET, HEAD, OPTIONS\", \"Vary\": \"Accept\"}" - } -}, -{ - "model": "silk.response", - "pk": "497a6689-91ad-487c-8956-4d4ab7567d78", - "fields": { - "request": "a92c7b87-6b5f-482a-94aa-f53d3a80ff6d", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPkFkZCBzdHVkZW50IHwgRGphbmdvIHNpdGUgYWRtaW48L3RpdGxlPgo8bGluayByZWw9InN0eWxlc2hlZXQiIHR5cGU9InRleHQvY3NzIiBocmVmPSIvYXNzZXRzL2FkbWluL2Nzcy9iYXNlLmNzcyIgLz4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvZm9ybXMuY3NzIiAvPgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9jb3JlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IvanF1ZXJ5L2pxdWVyeS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvanF1ZXJ5LmluaXQuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2FkbWluL1JlbGF0ZWRPYmplY3RMb29rdXBzLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hY3Rpb25zLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy91cmxpZnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL3ByZXBvcHVsYXRlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IveHJlZ2V4cC94cmVnZXhwLmpzIj48L3NjcmlwdD4KCjxtZXRhIG5hbWU9InJvYm90cyIgY29udGVudD0iTk9ORSxOT0FSQ0hJVkUiIC8+CjwvaGVhZD4KCgo8Ym9keSBjbGFzcz0iIGFwcC1jb3JlIG1vZGVsLXN0dWRlbnQgY2hhbmdlLWZvcm0iCiAgZGF0YS1hZG1pbi11dGMtb2Zmc2V0PSIwIj4KCjwhLS0gQ29udGFpbmVyIC0tPgo8ZGl2IGlkPSJjb250YWluZXIiPgoKICAgIAogICAgPCEtLSBIZWFkZXIgLS0+CiAgICA8ZGl2IGlkPSJoZWFkZXIiPgogICAgICAgIDxkaXYgaWQ9ImJyYW5kaW5nIj4KICAgICAgICAKPGgxIGlkPSJzaXRlLW5hbWUiPjxhIGhyZWY9Ii9hZG1pbi8iPkRqYW5nbyBhZG1pbmlzdHJhdGlvbjwvYT48L2gxPgoKICAgICAgICA8L2Rpdj4KICAgICAgICAKICAgICAgICAKICAgICAgICA8ZGl2IGlkPSJ1c2VyLXRvb2xzIj4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICBXZWxjb21lLAogICAgICAgICAgICAgICAgPHN0cm9uZz5rYXBlPC9zdHJvbmc+LgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvIj5WaWV3IHNpdGU8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL3Bhc3N3b3JkX2NoYW5nZS8iPkNoYW5nZSBwYXNzd29yZDwvYT4gLwogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vbG9nb3V0LyI+TG9nIG91dDwvYT4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgCiAgICA8L2Rpdj4KICAgIDwhLS0gRU5EIEhlYWRlciAtLT4KICAgIAo8ZGl2IGNsYXNzPSJicmVhZGNydW1icyI+CjxhIGhyZWY9Ii9hZG1pbi8iPkhvbWU8L2E+CiZyc2FxdW87IDxhIGhyZWY9Ii9hZG1pbi9jb3JlLyI+Q29yZTwvYT4KJnJzYXF1bzsgPGEgaHJlZj0iL2FkbWluL2NvcmUvc3R1ZGVudC8iPlN0dWRlbnRzPC9hPgomcnNhcXVvOyBBZGQgc3R1ZGVudAo8L2Rpdj4KCiAgICAKCiAgICAKICAgICAgICAKICAgIAoKICAgIDwhLS0gQ29udGVudCAtLT4KICAgIDxkaXYgaWQ9ImNvbnRlbnQiIGNsYXNzPSJjb2xNIj4KICAgICAgICAKICAgICAgICA8aDE+QWRkIHN0dWRlbnQ8L2gxPgogICAgICAgIDxkaXYgaWQ9ImNvbnRlbnQtbWFpbiI+CgoKCjxmb3JtIGVuY3R5cGU9Im11bHRpcGFydC9mb3JtLWRhdGEiIGFjdGlvbj0iIiBtZXRob2Q9InBvc3QiIGlkPSJzdHVkZW50X2Zvcm0iIG5vdmFsaWRhdGU+PGlucHV0IHR5cGU9J2hpZGRlbicgbmFtZT0nY3NyZm1pZGRsZXdhcmV0b2tlbicgdmFsdWU9JzZPVjhRZVpGeVNGTjQxdHZGaEZKTU5lQXNRVGc4QlU1dlUyWDJLUkFsUFFjcjl2WG9JYWJFdVZrcUxaNXNCUVUnIC8+CjxkaXY+CgoKCgogICAgPHAgY2xhc3M9ImVycm9ybm90ZSI+CiAgICBQbGVhc2UgY29ycmVjdCB0aGUgZXJyb3IgYmVsb3cuCiAgICA8L3A+CiAgICAKCgoKCiAgPGZpZWxkc2V0IGNsYXNzPSJtb2R1bGUgYWxpZ25lZCAiPgogICAgCiAgICAKICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImZvcm0tcm93IGZpZWxkLXVzZXIiPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgY2xhc3M9InJlcXVpcmVkIiBmb3I9ImlkX3VzZXIiPlVzZXI6PC9sYWJlbD4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAKPGRpdiBjbGFzcz0icmVsYXRlZC13aWRnZXQtd3JhcHBlciI+CiAgICA8c2VsZWN0IGlkPSJpZF91c2VyIiBuYW1lPSJ1c2VyIiByZXF1aXJlZD4KPG9wdGlvbiB2YWx1ZT0iIj4tLS0tLS0tLS08L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMiIgc2VsZWN0ZWQ9InNlbGVjdGVkIj5mYXJoYW48L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMyI+ZmFyaGFuY29ycDwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSI0Ij5mYXJoYW5zdXBlcjwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIxIj5rYXBlPC9vcHRpb24+Cjwvc2VsZWN0PgogICAgCiAgICAgICAgCiAgICAgICAgPGEgY2xhc3M9InJlbGF0ZWQtd2lkZ2V0LXdyYXBwZXItbGluayBjaGFuZ2UtcmVsYXRlZCIgaWQ9ImNoYW5nZV9pZF91c2VyIgogICAgICAgICAgICBkYXRhLWhyZWYtdGVtcGxhdGU9Ii9hZG1pbi9hdXRoL3VzZXIvX19ma19fL2NoYW5nZS8/X3RvX2ZpZWxkPWlkJmFtcDtfcG9wdXA9MSIKICAgICAgICAgICAgdGl0bGU9IkNoYW5nZSBzZWxlY3RlZCB1c2VyIj4KICAgICAgICAgICAgPGltZyBzcmM9Ii9hc3NldHMvYWRtaW4vaW1nL2ljb24tY2hhbmdlbGluay5zdmciIGFsdD0iQ2hhbmdlIi8+CiAgICAgICAgPC9hPgogICAgICAgIAogICAgICAgIAogICAgICAgIDxhIGNsYXNzPSJyZWxhdGVkLXdpZGdldC13cmFwcGVyLWxpbmsgYWRkLXJlbGF0ZWQiIGlkPSJhZGRfaWRfdXNlciIKICAgICAgICAgICAgaHJlZj0iL2FkbWluL2F1dGgvdXNlci9hZGQvP190b19maWVsZD1pZCZhbXA7X3BvcHVwPTEiCiAgICAgICAgICAgIHRpdGxlPSJBZGQgYW5vdGhlciB1c2VyIj4KICAgICAgICAgICAgPGltZyBzcmM9Ii9hc3NldHMvYWRtaW4vaW1nL2ljb24tYWRkbGluay5zdmciIGFsdD0iQWRkIi8+CiAgICAgICAgPC9hPgogICAgICAgIAogICAgICAgIAogICAgCjwvZGl2PgoKICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC1ucG0iPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgY2xhc3M9InJlcXVpcmVkIiBmb3I9ImlkX25wbSI+TnBtOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgPGlucHV0IGNsYXNzPSJ2SW50ZWdlckZpZWxkIiBpZD0iaWRfbnBtIiBuYW1lPSJucG0iIHR5cGU9InRleHQiIHZhbHVlPSIxNDA2NTcyMzIxIiByZXF1aXJlZCAvPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDwvZGl2PgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImZvcm0tcm93IGZpZWxkLXJlc3VtZSI+CiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXY+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxsYWJlbCBmb3I9ImlkX3Jlc3VtZSI+UmVzdW1lOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgPGlucHV0IGlkPSJpZF9yZXN1bWUiIG5hbWU9InJlc3VtZSIgdHlwZT0iZmlsZSIgLz4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC1waG9uZV9udW1iZXIiPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgZm9yPSJpZF9waG9uZV9udW1iZXIiPlBob25lIG51bWJlcjo8L2xhYmVsPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxpbnB1dCBjbGFzcz0idlRleHRGaWVsZCIgaWQ9ImlkX3Bob25lX251bWJlciIgbWF4bGVuZ3RoPSIxMDAiIG5hbWU9InBob25lX251bWJlciIgdHlwZT0idGV4dCIgdmFsdWU9IjEyMzQiIC8+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPC9kaXY+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgCiAgICAgICAgPGRpdiBjbGFzcz0iZm9ybS1yb3cgZXJyb3JzIGZpZWxkLWJvb2ttYXJrZWRfdmFjYW5jaWVzIj4KICAgICAgICAgICAgPHVsIGNsYXNzPSJlcnJvcmxpc3QiPjxsaT5UaGlzIGZpZWxkIGlzIHJlcXVpcmVkLjwvbGk+PC91bD4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgY2xhc3M9InJlcXVpcmVkIiBmb3I9ImlkX2Jvb2ttYXJrZWRfdmFjYW5jaWVzIj5Cb29rbWFya2VkIHZhY2FuY2llczo8L2xhYmVsPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIAo8ZGl2IGNsYXNzPSJyZWxhdGVkLXdpZGdldC13cmFwcGVyIj4KICAgIDxzZWxlY3QgbXVsdGlwbGU9Im11bHRpcGxlIiBpZD0iaWRfYm9va21hcmtlZF92YWNhbmNpZXMiIG5hbWU9ImJvb2ttYXJrZWRfdmFjYW5jaWVzIiByZXF1aXJlZD4KPC9zZWxlY3Q+CiAgICAKICAgICAgICAKICAgICAgICAKICAgICAgICA8YSBjbGFzcz0icmVsYXRlZC13aWRnZXQtd3JhcHBlci1saW5rIGFkZC1yZWxhdGVkIiBpZD0iYWRkX2lkX2Jvb2ttYXJrZWRfdmFjYW5jaWVzIgogICAgICAgICAgICBocmVmPSIvYWRtaW4vY29yZS92YWNhbmN5L2FkZC8/X3RvX2ZpZWxkPWlkJmFtcDtfcG9wdXA9MSIKICAgICAgICAgICAgdGl0bGU9IkFkZCBhbm90aGVyIHZhY2FuY3kiPgogICAgICAgICAgICA8aW1nIHNyYz0iL2Fzc2V0cy9hZG1pbi9pbWcvaWNvbi1hZGRsaW5rLnN2ZyIgYWx0PSJBZGQiLz4KICAgICAgICA8L2E+CiAgICAgICAgCiAgICAgICAgCiAgICAKPC9kaXY+CgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPHAgY2xhc3M9ImhlbHAiPkhvbGQgZG93biAiQ29udHJvbCIsIG9yICJDb21tYW5kIiBvbiBhIE1hYywgdG8gc2VsZWN0IG1vcmUgdGhhbiBvbmUuPC9wPgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPC9kaXY+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgCjwvZmllbGRzZXQ+CgoKCgoKCgoKCgoKCgo8ZGl2IGNsYXNzPSJzdWJtaXQtcm93Ij4KPGlucHV0IHR5cGU9InN1Ym1pdCIgdmFsdWU9IlNhdmUiIGNsYXNzPSJkZWZhdWx0IiBuYW1lPSJfc2F2ZSIgLz4KCgo8aW5wdXQgdHlwZT0ic3VibWl0IiB2YWx1ZT0iU2F2ZSBhbmQgYWRkIGFub3RoZXIiIG5hbWU9Il9hZGRhbm90aGVyIiAvPgo8aW5wdXQgdHlwZT0ic3VibWl0IiB2YWx1ZT0iU2F2ZSBhbmQgY29udGludWUgZWRpdGluZyIgbmFtZT0iX2NvbnRpbnVlIiAvPgo8L2Rpdj4KCgoKICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IgogICAgICAgICAgICBpZD0iZGphbmdvLWFkbWluLWZvcm0tYWRkLWNvbnN0YW50cyIKICAgICAgICAgICAgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2NoYW5nZV9mb3JtLmpzIgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIGRhdGEtbW9kZWwtbmFtZT0ic3R1ZGVudCIKICAgICAgICAgICAgPgogICAgPC9zY3JpcHQ+CgoKCgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIKICAgICAgICBpZD0iZGphbmdvLWFkbWluLXByZXBvcHVsYXRlZC1maWVsZHMtY29uc3RhbnRzIgogICAgICAgIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9wcmVwb3B1bGF0ZV9pbml0LmpzIgogICAgICAgIGRhdGEtcHJlcG9wdWxhdGVkLWZpZWxkcz0iW10iPgo8L3NjcmlwdD4KCgo8L2Rpdj4KPC9mb3JtPjwvZGl2PgoKICAgICAgICAKICAgICAgICA8YnIgY2xhc3M9ImNsZWFyIiAvPgogICAgPC9kaXY+CiAgICA8IS0tIEVORCBDb250ZW50IC0tPgoKICAgIDxkaXYgaWQ9ImZvb3RlciI+PC9kaXY+CjwvZGl2Pgo8IS0tIEVORCBDb250YWluZXIgLS0+Cgo8L2JvZHk+CjwvaHRtbD4K", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 14:56:14 GMT\", \"Expires\": \"Mon, 27 Mar 2017 14:56:14 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "49da58ff-47e1-4316-8d36-fc581b0602c1", - "fields": { - "request": "0def295b-e788-4b3e-8214-266149ffd157", - "status_code": 200, - "raw_body": "eyJzd2FnZ2VyIjogIjIuMCIsICJpbmZvIjogeyJ0aXRsZSI6ICIiLCAidmVyc2lvbiI6ICIifSwgInBhdGhzIjogeyIvYXBpL2FwcGxpY2F0aW9ucy8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAiYXBwbGljYXRpb25zX2xpc3QiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogInBhZ2UiLCAicmVxdWlyZWQiOiBmYWxzZSwgImluIjogInF1ZXJ5IiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbImFwcGxpY2F0aW9ucyJdfSwgInBvc3QiOiB7Im9wZXJhdGlvbklkIjogImFwcGxpY2F0aW9uc19jcmVhdGUiLCAicmVzcG9uc2VzIjogeyIyMDEiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InN0dWRlbnRfbnBtIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgInZhY2FuY3lfaWQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9fSwgInJlcXVpcmVkIjogWyJzdHVkZW50X25wbSIsICJ2YWNhbmN5X2lkIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsiYXBwbGljYXRpb25zIl19fSwgIi9hcGkvYXBwbGljYXRpb25zL3tpZH0vIjogeyJnZXQiOiB7Im9wZXJhdGlvbklkIjogImFwcGxpY2F0aW9uc19yZWFkIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbImFwcGxpY2F0aW9ucyJdfSwgInB1dCI6IHsib3BlcmF0aW9uSWQiOiAiYXBwbGljYXRpb25zX3VwZGF0ZSIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InN0dWRlbnRfbnBtIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgInZhY2FuY3lfaWQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9fSwgInJlcXVpcmVkIjogWyJzdHVkZW50X25wbSIsICJ2YWNhbmN5X2lkIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsiYXBwbGljYXRpb25zIl19LCAicGF0Y2giOiB7Im9wZXJhdGlvbklkIjogImFwcGxpY2F0aW9uc19wYXJ0aWFsX3VwZGF0ZSIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InN0dWRlbnRfbnBtIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgInZhY2FuY3lfaWQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9fX19XSwgImNvbnN1bWVzIjogWyJhcHBsaWNhdGlvbi9qc29uIl0sICJ0YWdzIjogWyJhcHBsaWNhdGlvbnMiXX0sICJkZWxldGUiOiB7Im9wZXJhdGlvbklkIjogImFwcGxpY2F0aW9uc19kZWxldGUiLCAicmVzcG9uc2VzIjogeyIyMDQiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsiYXBwbGljYXRpb25zIl19fSwgIi9hcGkvY29tcGFuaWVzLyI6IHsiZ2V0IjogeyJvcGVyYXRpb25JZCI6ICJjb21wYW5pZXNfbGlzdCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAicGFnZSIsICJyZXF1aXJlZCI6IGZhbHNlLCAiaW4iOiAicXVlcnkiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsiY29tcGFuaWVzIl19LCAicG9zdCI6IHsib3BlcmF0aW9uSWQiOiAiY29tcGFuaWVzX2NyZWF0ZSIsICJyZXNwb25zZXMiOiB7IjIwMSI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidXNlciI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAib2JqZWN0In0sICJkZXNjcmlwdGlvbiI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sICJ2ZXJpZmllZCI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiYm9vbGVhbiJ9fSwgInJlcXVpcmVkIjogWyJ1c2VyIiwgImRlc2NyaXB0aW9uIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsiY29tcGFuaWVzIl19fSwgIi9hcGkvY29tcGFuaWVzL3tpZH0vIjogeyJnZXQiOiB7Im9wZXJhdGlvbklkIjogImNvbXBhbmllc19yZWFkIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbImNvbXBhbmllcyJdfSwgInB1dCI6IHsib3BlcmF0aW9uSWQiOiAiY29tcGFuaWVzX3VwZGF0ZSIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InVzZXIiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogIm9iamVjdCJ9LCAiZGVzY3JpcHRpb24iOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAidmVyaWZpZWQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImJvb2xlYW4ifX0sICJyZXF1aXJlZCI6IFsidXNlciIsICJkZXNjcmlwdGlvbiJdfX1dLCAiY29uc3VtZXMiOiBbImFwcGxpY2F0aW9uL2pzb24iXSwgInRhZ3MiOiBbImNvbXBhbmllcyJdfSwgInBhdGNoIjogeyJvcGVyYXRpb25JZCI6ICJjb21wYW5pZXNfcGFydGlhbF91cGRhdGUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ1c2VyIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJvYmplY3QifSwgImRlc2NyaXB0aW9uIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgInZlcmlmaWVkIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJib29sZWFuIn19fX1dLCAiY29uc3VtZXMiOiBbImFwcGxpY2F0aW9uL2pzb24iXSwgInRhZ3MiOiBbImNvbXBhbmllcyJdfSwgImRlbGV0ZSI6IHsib3BlcmF0aW9uSWQiOiAiY29tcGFuaWVzX2RlbGV0ZSIsICJyZXNwb25zZXMiOiB7IjIwNCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJjb21wYW5pZXMiXX19LCAiL2FwaS9zdHVkZW50cy8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAic3R1ZGVudHNfbGlzdCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAicGFnZSIsICJyZXF1aXJlZCI6IGZhbHNlLCAiaW4iOiAicXVlcnkiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsic3R1ZGVudHMiXX0sICJwb3N0IjogeyJvcGVyYXRpb25JZCI6ICJzdHVkZW50c19jcmVhdGUiLCAicmVzcG9uc2VzIjogeyIyMDEiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InVzZXIiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogIm9iamVjdCJ9LCAibnBtIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJpbnRlZ2VyIn0sICJyZXN1bWUiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImZpbGUifSwgInBob25lX251bWJlciI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sICJib29rbWFya2VkX3ZhY2FuY2llcyI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiYXJyYXkiLCAiaXRlbXMiOiB7InR5cGUiOiAic3RyaW5nIn19fSwgInJlcXVpcmVkIjogWyJ1c2VyIiwgIm5wbSJdfX1dLCAiY29uc3VtZXMiOiBbImFwcGxpY2F0aW9uL2pzb24iXSwgInRhZ3MiOiBbInN0dWRlbnRzIl19fSwgIi9hcGkvc3R1ZGVudHMve2lkfS8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAic3R1ZGVudHNfcmVhZCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJzdHVkZW50cyJdfSwgInB1dCI6IHsib3BlcmF0aW9uSWQiOiAic3R1ZGVudHNfdXBkYXRlIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCB7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidXNlciI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAib2JqZWN0In0sICJucG0iOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImludGVnZXIifSwgInJlc3VtZSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiZmlsZSJ9LCAicGhvbmVfbnVtYmVyIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImJvb2ttYXJrZWRfdmFjYW5jaWVzIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJhcnJheSIsICJpdGVtcyI6IHsidHlwZSI6ICJzdHJpbmcifX19LCAicmVxdWlyZWQiOiBbInVzZXIiLCAibnBtIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsic3R1ZGVudHMiXX0sICJwYXRjaCI6IHsib3BlcmF0aW9uSWQiOiAic3R1ZGVudHNfcGFydGlhbF91cGRhdGUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ1c2VyIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJvYmplY3QifSwgIm5wbSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiaW50ZWdlciJ9LCAicmVzdW1lIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJmaWxlIn0sICJwaG9uZV9udW1iZXIiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiYm9va21hcmtlZF92YWNhbmNpZXMiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImFycmF5IiwgIml0ZW1zIjogeyJ0eXBlIjogInN0cmluZyJ9fX19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsic3R1ZGVudHMiXX0sICJkZWxldGUiOiB7Im9wZXJhdGlvbklkIjogInN0dWRlbnRzX2RlbGV0ZSIsICJyZXNwb25zZXMiOiB7IjIwNCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJzdHVkZW50cyJdfX0sICIvYXBpL3N0dWRlbnRzL3tpZH0vYm9va21hcmtlZC12YWNhbmNpZXMvIjogeyJwb3N0IjogeyJvcGVyYXRpb25JZCI6ICJzdHVkZW50c19ib29rbWFya192YWNhbmNpZXMiLCAicmVzcG9uc2VzIjogeyIyMDEiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ1c2VyIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJvYmplY3QifSwgIm5wbSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiaW50ZWdlciJ9LCAicmVzdW1lIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJmaWxlIn0sICJwaG9uZV9udW1iZXIiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiYm9va21hcmtlZF92YWNhbmNpZXMiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImFycmF5IiwgIml0ZW1zIjogeyJ0eXBlIjogInN0cmluZyJ9fX0sICJyZXF1aXJlZCI6IFsidXNlciIsICJucG0iXX19XSwgImNvbnN1bWVzIjogWyJhcHBsaWNhdGlvbi9qc29uIl0sICJ0YWdzIjogWyJzdHVkZW50cyJdfSwgImRlbGV0ZSI6IHsib3BlcmF0aW9uSWQiOiAic3R1ZGVudHNfdW5ib29rbWFya192YWNhbmNpZXMiLCAicmVzcG9uc2VzIjogeyIyMDQiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsic3R1ZGVudHMiXX19LCAiL2FwaS9zdXBlcnZpc29ycy8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAic3VwZXJ2aXNvcnNfbGlzdCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAicGFnZSIsICJyZXF1aXJlZCI6IGZhbHNlLCAiaW4iOiAicXVlcnkiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsic3VwZXJ2aXNvcnMiXX0sICJwb3N0IjogeyJvcGVyYXRpb25JZCI6ICJzdXBlcnZpc29yc19jcmVhdGUiLCAicmVzcG9uc2VzIjogeyIyMDEiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InVzZXIiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogIm9iamVjdCJ9LCAibmlwIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJpbnRlZ2VyIn19LCAicmVxdWlyZWQiOiBbInVzZXIiLCAibmlwIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsic3VwZXJ2aXNvcnMiXX19LCAiL2FwaS9zdXBlcnZpc29ycy97aWR9LyI6IHsiZ2V0IjogeyJvcGVyYXRpb25JZCI6ICJzdXBlcnZpc29yc19yZWFkIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbInN1cGVydmlzb3JzIl19LCAicHV0IjogeyJvcGVyYXRpb25JZCI6ICJzdXBlcnZpc29yc191cGRhdGUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ1c2VyIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJvYmplY3QifSwgIm5pcCI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiaW50ZWdlciJ9fSwgInJlcXVpcmVkIjogWyJ1c2VyIiwgIm5pcCJdfX1dLCAiY29uc3VtZXMiOiBbImFwcGxpY2F0aW9uL2pzb24iXSwgInRhZ3MiOiBbInN1cGVydmlzb3JzIl19LCAicGF0Y2giOiB7Im9wZXJhdGlvbklkIjogInN1cGVydmlzb3JzX3BhcnRpYWxfdXBkYXRlIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCB7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidXNlciI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAib2JqZWN0In0sICJuaXAiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImludGVnZXIifX19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsic3VwZXJ2aXNvcnMiXX0sICJkZWxldGUiOiB7Im9wZXJhdGlvbklkIjogInN1cGVydmlzb3JzX2RlbGV0ZSIsICJyZXNwb25zZXMiOiB7IjIwNCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJzdXBlcnZpc29ycyJdfX0sICIvYXBpL3VzZXJzLyI6IHsiZ2V0IjogeyJvcGVyYXRpb25JZCI6ICJ1c2Vyc19saXN0IiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJwYWdlIiwgInJlcXVpcmVkIjogZmFsc2UsICJpbiI6ICJxdWVyeSIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJ1c2VycyJdfSwgInBvc3QiOiB7Im9wZXJhdGlvbklkIjogInVzZXJzX2NyZWF0ZSIsICJyZXNwb25zZXMiOiB7IjIwMSI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidXNlcm5hbWUiOiB7ImRlc2NyaXB0aW9uIjogIlJlcXVpcmVkLiAxNTAgY2hhcmFjdGVycyBvciBmZXdlci4gTGV0dGVycywgZGlnaXRzIGFuZCBALy4vKy8tL18gb25seS4iLCAidHlwZSI6ICJzdHJpbmcifSwgImVtYWlsIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImlzX3N0YWZmIjogeyJkZXNjcmlwdGlvbiI6ICJEZXNpZ25hdGVzIHdoZXRoZXIgdGhlIHVzZXIgY2FuIGxvZyBpbnRvIHRoaXMgYWRtaW4gc2l0ZS4iLCAidHlwZSI6ICJib29sZWFuIn19LCAicmVxdWlyZWQiOiBbInVzZXJuYW1lIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsidXNlcnMiXX19LCAiL2FwaS91c2Vycy9tZS8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAidXNlcnNfbWUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbXSwgInRhZ3MiOiBbInVzZXJzIl19fSwgIi9hcGkvdXNlcnMve2lkfS8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAidXNlcnNfcmVhZCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJ1c2VycyJdfSwgInB1dCI6IHsib3BlcmF0aW9uSWQiOiAidXNlcnNfdXBkYXRlIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCB7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidXNlcm5hbWUiOiB7ImRlc2NyaXB0aW9uIjogIlJlcXVpcmVkLiAxNTAgY2hhcmFjdGVycyBvciBmZXdlci4gTGV0dGVycywgZGlnaXRzIGFuZCBALy4vKy8tL18gb25seS4iLCAidHlwZSI6ICJzdHJpbmcifSwgImVtYWlsIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImlzX3N0YWZmIjogeyJkZXNjcmlwdGlvbiI6ICJEZXNpZ25hdGVzIHdoZXRoZXIgdGhlIHVzZXIgY2FuIGxvZyBpbnRvIHRoaXMgYWRtaW4gc2l0ZS4iLCAidHlwZSI6ICJib29sZWFuIn19LCAicmVxdWlyZWQiOiBbInVzZXJuYW1lIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsidXNlcnMiXX0sICJwYXRjaCI6IHsib3BlcmF0aW9uSWQiOiAidXNlcnNfcGFydGlhbF91cGRhdGUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ1c2VybmFtZSI6IHsiZGVzY3JpcHRpb24iOiAiUmVxdWlyZWQuIDE1MCBjaGFyYWN0ZXJzIG9yIGZld2VyLiBMZXR0ZXJzLCBkaWdpdHMgYW5kIEAvLi8rLy0vXyBvbmx5LiIsICJ0eXBlIjogInN0cmluZyJ9LCAiZW1haWwiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiaXNfc3RhZmYiOiB7ImRlc2NyaXB0aW9uIjogIkRlc2lnbmF0ZXMgd2hldGhlciB0aGUgdXNlciBjYW4gbG9nIGludG8gdGhpcyBhZG1pbiBzaXRlLiIsICJ0eXBlIjogImJvb2xlYW4ifX19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsidXNlcnMiXX0sICJkZWxldGUiOiB7Im9wZXJhdGlvbklkIjogInVzZXJzX2RlbGV0ZSIsICJyZXNwb25zZXMiOiB7IjIwNCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJ1c2VycyJdfX0sICIvYXBpL3ZhY2FuY2llcy8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAidmFjYW5jaWVzX2xpc3QiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogInBhZ2UiLCAicmVxdWlyZWQiOiBmYWxzZSwgImluIjogInF1ZXJ5IiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbInZhY2FuY2llcyJdfSwgInBvc3QiOiB7Im9wZXJhdGlvbklkIjogInZhY2FuY2llc19jcmVhdGUiLCAicmVzcG9uc2VzIjogeyIyMDEiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InZlcmlmaWVkIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJib29sZWFuIn0sICJvcGVuX3RpbWUiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiY2xvc2VfdGltZSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sICJjb21wYW55IjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifX0sICJyZXF1aXJlZCI6IFsib3Blbl90aW1lIiwgImNsb3NlX3RpbWUiLCAiY29tcGFueSJdfX1dLCAiY29uc3VtZXMiOiBbImFwcGxpY2F0aW9uL2pzb24iXSwgInRhZ3MiOiBbInZhY2FuY2llcyJdfX0sICIvYXBpL3ZhY2FuY2llcy97aWR9LyI6IHsiZ2V0IjogeyJvcGVyYXRpb25JZCI6ICJ2YWNhbmNpZXNfcmVhZCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJ2YWNhbmNpZXMiXX0sICJwdXQiOiB7Im9wZXJhdGlvbklkIjogInZhY2FuY2llc191cGRhdGUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ2ZXJpZmllZCI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiYm9vbGVhbiJ9LCAib3Blbl90aW1lIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImNsb3NlX3RpbWUiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiY29tcGFueSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn19LCAicmVxdWlyZWQiOiBbIm9wZW5fdGltZSIsICJjbG9zZV90aW1lIiwgImNvbXBhbnkiXX19XSwgImNvbnN1bWVzIjogWyJhcHBsaWNhdGlvbi9qc29uIl0sICJ0YWdzIjogWyJ2YWNhbmNpZXMiXX0sICJwYXRjaCI6IHsib3BlcmF0aW9uSWQiOiAidmFjYW5jaWVzX3BhcnRpYWxfdXBkYXRlIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCB7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidmVyaWZpZWQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImJvb2xlYW4ifSwgIm9wZW5fdGltZSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sICJjbG9zZV90aW1lIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImNvbXBhbnkiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9fX19XSwgImNvbnN1bWVzIjogWyJhcHBsaWNhdGlvbi9qc29uIl0sICJ0YWdzIjogWyJ2YWNhbmNpZXMiXX0sICJkZWxldGUiOiB7Im9wZXJhdGlvbklkIjogInZhY2FuY2llc19kZWxldGUiLCAicmVzcG9uc2VzIjogeyIyMDQiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsidmFjYW5jaWVzIl19fX0sICJzZWN1cml0eURlZmluaXRpb25zIjogeyJiYXNpYyI6IHsidHlwZSI6ICJiYXNpYyJ9fX0=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"application/openapi+json\", \"Allow\": \"GET, HEAD, OPTIONS\", \"Vary\": \"Accept\"}" - } -}, -{ - "model": "silk.response", - "pk": "4b5276c2-1430-427d-b54e-4bb20b9d371c", - "fields": { - "request": "716e9363-de18-483f-b824-7a5cdc4bfc05", - "status_code": 404, - "raw_body": "eyJkZXRhaWwiOiJOb3QgZm91bmQuIn0=", - "body": "{\n \"detail\": \"Not found.\"\n}", - "encoded_headers": "{\"Content-Type\": \"application/json\", \"Allow\": \"POST, OPTIONS\", \"Vary\": \"Accept\"}" - } -}, -{ - "model": "silk.response", - "pk": "4bb9c638-1be1-402d-9d1e-9bcf3e60a3a6", - "fields": { - "request": "6346e283-8a7d-41fc-953a-fd0197c3abba", - "status_code": 200, - "raw_body": "W3siaWQiOjEsInVzZXIiOnsidXJsIjoiaHR0cDovLzEyNy4wLjAuMTo4MDAwL2FwaS91c2Vycy8yLyIsInVzZXJuYW1lIjoiZmFyaGFuIiwiZW1haWwiOiIiLCJpc19zdGFmZiI6ZmFsc2V9LCJuYW1lIjoiZmFyaGFuIiwiY3JlYXRlZCI6IjIwMTctMDMtMjdUMTU6MjE6NTguNTUwMDAwWiIsInVwZGF0ZWQiOiIyMDE3LTAzLTI3VDE1OjIxOjU4LjU1MDAwMFoiLCJucG0iOjE0MDY1NzIzMjEsInJlc3VtZSI6bnVsbCwicGhvbmVfbnVtYmVyIjoiIiwiYm9va21hcmtlZF92YWNhbmNpZXMiOltdfV0=", - "body": "[\n {\n \"bookmarked_vacancies\": [],\n \"created\": \"2017-03-27T15:21:58.550000Z\",\n \"id\": 1,\n \"name\": \"farhan\",\n \"npm\": 1406572321,\n \"phone_number\": \"\",\n \"resume\": null,\n \"updated\": \"2017-03-27T15:21:58.550000Z\",\n \"user\": {\n \"email\": \"\",\n \"is_staff\": false,\n \"url\": \"http://127.0.0.1:8000/api/users/2/\",\n \"username\": \"farhan\"\n }\n }\n]", - "encoded_headers": "{\"Content-Type\": \"application/json\", \"Allow\": \"GET, POST, OPTIONS\", \"Vary\": \"Accept\"}" - } -}, -{ - "model": "silk.response", - "pk": "4d0735b6-d7e9-4b95-a7a7-ce46eed418f4", - "fields": { - "request": "e869377f-5891-4cd3-b39a-3a0a0f3334cc", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "4de9fb02-5c58-45c9-b529-f44fbf59037a", - "fields": { - "request": "19d86d26-4000-4261-9ad1-6d55ec063ad8", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPkNoYW5nZSBzdHVkZW50IHwgRGphbmdvIHNpdGUgYWRtaW48L3RpdGxlPgo8bGluayByZWw9InN0eWxlc2hlZXQiIHR5cGU9InRleHQvY3NzIiBocmVmPSIvYXNzZXRzL2FkbWluL2Nzcy9iYXNlLmNzcyIgLz4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvZm9ybXMuY3NzIiAvPgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9jb3JlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IvanF1ZXJ5L2pxdWVyeS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvanF1ZXJ5LmluaXQuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2FkbWluL1JlbGF0ZWRPYmplY3RMb29rdXBzLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hY3Rpb25zLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy91cmxpZnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL3ByZXBvcHVsYXRlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IveHJlZ2V4cC94cmVnZXhwLmpzIj48L3NjcmlwdD4KCjxtZXRhIG5hbWU9InJvYm90cyIgY29udGVudD0iTk9ORSxOT0FSQ0hJVkUiIC8+CjwvaGVhZD4KCgo8Ym9keSBjbGFzcz0iIGFwcC1jb3JlIG1vZGVsLXN0dWRlbnQgY2hhbmdlLWZvcm0iCiAgZGF0YS1hZG1pbi11dGMtb2Zmc2V0PSIwIj4KCjwhLS0gQ29udGFpbmVyIC0tPgo8ZGl2IGlkPSJjb250YWluZXIiPgoKICAgIAogICAgPCEtLSBIZWFkZXIgLS0+CiAgICA8ZGl2IGlkPSJoZWFkZXIiPgogICAgICAgIDxkaXYgaWQ9ImJyYW5kaW5nIj4KICAgICAgICAKPGgxIGlkPSJzaXRlLW5hbWUiPjxhIGhyZWY9Ii9hZG1pbi8iPkRqYW5nbyBhZG1pbmlzdHJhdGlvbjwvYT48L2gxPgoKICAgICAgICA8L2Rpdj4KICAgICAgICAKICAgICAgICAKICAgICAgICA8ZGl2IGlkPSJ1c2VyLXRvb2xzIj4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICBXZWxjb21lLAogICAgICAgICAgICAgICAgPHN0cm9uZz5rYXBlPC9zdHJvbmc+LgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvIj5WaWV3IHNpdGU8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL3Bhc3N3b3JkX2NoYW5nZS8iPkNoYW5nZSBwYXNzd29yZDwvYT4gLwogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vbG9nb3V0LyI+TG9nIG91dDwvYT4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgCiAgICA8L2Rpdj4KICAgIDwhLS0gRU5EIEhlYWRlciAtLT4KICAgIAo8ZGl2IGNsYXNzPSJicmVhZGNydW1icyI+CjxhIGhyZWY9Ii9hZG1pbi8iPkhvbWU8L2E+CiZyc2FxdW87IDxhIGhyZWY9Ii9hZG1pbi9jb3JlLyI+Q29yZTwvYT4KJnJzYXF1bzsgPGEgaHJlZj0iL2FkbWluL2NvcmUvc3R1ZGVudC8iPlN0dWRlbnRzPC9hPgomcnNhcXVvOyBTdHVkZW50IG9iamVjdAo8L2Rpdj4KCiAgICAKCiAgICAKICAgICAgICAKICAgIAoKICAgIDwhLS0gQ29udGVudCAtLT4KICAgIDxkaXYgaWQ9ImNvbnRlbnQiIGNsYXNzPSJjb2xNIj4KICAgICAgICAKICAgICAgICA8aDE+Q2hhbmdlIHN0dWRlbnQ8L2gxPgogICAgICAgIDxkaXYgaWQ9ImNvbnRlbnQtbWFpbiI+CgoKICA8dWwgY2xhc3M9Im9iamVjdC10b29scyI+CiAgICAKICAgIDxsaT4KICAgICAgICAKICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS9zdHVkZW50LzEvaGlzdG9yeS8iIGNsYXNzPSJoaXN0b3J5bGluayI+SGlzdG9yeTwvYT4KICAgIDwvbGk+CiAgICAKICAgIAogIDwvdWw+CgoKPGZvcm0gZW5jdHlwZT0ibXVsdGlwYXJ0L2Zvcm0tZGF0YSIgYWN0aW9uPSIiIG1ldGhvZD0icG9zdCIgaWQ9InN0dWRlbnRfZm9ybSIgbm92YWxpZGF0ZT48aW5wdXQgdHlwZT0naGlkZGVuJyBuYW1lPSdjc3JmbWlkZGxld2FyZXRva2VuJyB2YWx1ZT0ncTh3VzF3NVRnVUdxajJpc0NON216UWR3Mm43cUdjMnZQZURMZDJYTzNSUlBHYWtVbGVDT3J4VWcwaWRmMGNZaycgLz4KPGRpdj4KCgoKCgoKCiAgPGZpZWxkc2V0IGNsYXNzPSJtb2R1bGUgYWxpZ25lZCAiPgogICAgCiAgICAKICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImZvcm0tcm93IGZpZWxkLXVzZXIiPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgY2xhc3M9InJlcXVpcmVkIiBmb3I9ImlkX3VzZXIiPlVzZXI6PC9sYWJlbD4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAKPGRpdiBjbGFzcz0icmVsYXRlZC13aWRnZXQtd3JhcHBlciI+CiAgICA8c2VsZWN0IGlkPSJpZF91c2VyIiBuYW1lPSJ1c2VyIiByZXF1aXJlZD4KPG9wdGlvbiB2YWx1ZT0iIj4tLS0tLS0tLS08L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMiIgc2VsZWN0ZWQ9InNlbGVjdGVkIj5mYXJoYW48L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMyI+ZmFyaGFuY29ycDwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSI0Ij5mYXJoYW5zdXBlcjwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIxIj5rYXBlPC9vcHRpb24+Cjwvc2VsZWN0PgogICAgCiAgICAgICAgCiAgICAgICAgPGEgY2xhc3M9InJlbGF0ZWQtd2lkZ2V0LXdyYXBwZXItbGluayBjaGFuZ2UtcmVsYXRlZCIgaWQ9ImNoYW5nZV9pZF91c2VyIgogICAgICAgICAgICBkYXRhLWhyZWYtdGVtcGxhdGU9Ii9hZG1pbi9hdXRoL3VzZXIvX19ma19fL2NoYW5nZS8/X3RvX2ZpZWxkPWlkJmFtcDtfcG9wdXA9MSIKICAgICAgICAgICAgdGl0bGU9IkNoYW5nZSBzZWxlY3RlZCB1c2VyIj4KICAgICAgICAgICAgPGltZyBzcmM9Ii9hc3NldHMvYWRtaW4vaW1nL2ljb24tY2hhbmdlbGluay5zdmciIGFsdD0iQ2hhbmdlIi8+CiAgICAgICAgPC9hPgogICAgICAgIAogICAgICAgIAogICAgICAgIDxhIGNsYXNzPSJyZWxhdGVkLXdpZGdldC13cmFwcGVyLWxpbmsgYWRkLXJlbGF0ZWQiIGlkPSJhZGRfaWRfdXNlciIKICAgICAgICAgICAgaHJlZj0iL2FkbWluL2F1dGgvdXNlci9hZGQvP190b19maWVsZD1pZCZhbXA7X3BvcHVwPTEiCiAgICAgICAgICAgIHRpdGxlPSJBZGQgYW5vdGhlciB1c2VyIj4KICAgICAgICAgICAgPGltZyBzcmM9Ii9hc3NldHMvYWRtaW4vaW1nL2ljb24tYWRkbGluay5zdmciIGFsdD0iQWRkIi8+CiAgICAgICAgPC9hPgogICAgICAgIAogICAgICAgIAogICAgCjwvZGl2PgoKICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC1ucG0iPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgY2xhc3M9InJlcXVpcmVkIiBmb3I9ImlkX25wbSI+TnBtOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgPGlucHV0IGNsYXNzPSJ2SW50ZWdlckZpZWxkIiBpZD0iaWRfbnBtIiBuYW1lPSJucG0iIHR5cGU9InRleHQiIHZhbHVlPSIxNDA2NTcyMzIxIiByZXF1aXJlZCAvPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDwvZGl2PgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImZvcm0tcm93IGZpZWxkLXJlc3VtZSI+CiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXY+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxsYWJlbCBmb3I9ImlkX3Jlc3VtZSI+UmVzdW1lOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgPGlucHV0IGlkPSJpZF9yZXN1bWUiIG5hbWU9InJlc3VtZSIgdHlwZT0iZmlsZSIgLz4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC1waG9uZV9udW1iZXIiPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgZm9yPSJpZF9waG9uZV9udW1iZXIiPlBob25lIG51bWJlcjo8L2xhYmVsPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxpbnB1dCBjbGFzcz0idlRleHRGaWVsZCIgaWQ9ImlkX3Bob25lX251bWJlciIgbWF4bGVuZ3RoPSIxMDAiIG5hbWU9InBob25lX251bWJlciIgdHlwZT0idGV4dCIgLz4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC1ib29rbWFya2VkX3ZhY2FuY2llcyI+CiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXY+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxsYWJlbCBmb3I9ImlkX2Jvb2ttYXJrZWRfdmFjYW5jaWVzIj5Cb29rbWFya2VkIHZhY2FuY2llczo8L2xhYmVsPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIAo8ZGl2IGNsYXNzPSJyZWxhdGVkLXdpZGdldC13cmFwcGVyIj4KICAgIDxzZWxlY3QgbXVsdGlwbGU9Im11bHRpcGxlIiBpZD0iaWRfYm9va21hcmtlZF92YWNhbmNpZXMiIG5hbWU9ImJvb2ttYXJrZWRfdmFjYW5jaWVzIj4KPG9wdGlvbiB2YWx1ZT0iMSI+VmFjYW5jeSBvYmplY3Q8L29wdGlvbj4KPC9zZWxlY3Q+CiAgICAKICAgICAgICAKICAgICAgICAKICAgICAgICA8YSBjbGFzcz0icmVsYXRlZC13aWRnZXQtd3JhcHBlci1saW5rIGFkZC1yZWxhdGVkIiBpZD0iYWRkX2lkX2Jvb2ttYXJrZWRfdmFjYW5jaWVzIgogICAgICAgICAgICBocmVmPSIvYWRtaW4vY29yZS92YWNhbmN5L2FkZC8/X3RvX2ZpZWxkPWlkJmFtcDtfcG9wdXA9MSIKICAgICAgICAgICAgdGl0bGU9IkFkZCBhbm90aGVyIHZhY2FuY3kiPgogICAgICAgICAgICA8aW1nIHNyYz0iL2Fzc2V0cy9hZG1pbi9pbWcvaWNvbi1hZGRsaW5rLnN2ZyIgYWx0PSJBZGQiLz4KICAgICAgICA8L2E+CiAgICAgICAgCiAgICAgICAgCiAgICAKPC9kaXY+CgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPHAgY2xhc3M9ImhlbHAiPkhvbGQgZG93biAiQ29udHJvbCIsIG9yICJDb21tYW5kIiBvbiBhIE1hYywgdG8gc2VsZWN0IG1vcmUgdGhhbiBvbmUuPC9wPgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPC9kaXY+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgCjwvZmllbGRzZXQ+CgoKCgoKCgoKCgoKCgo8ZGl2IGNsYXNzPSJzdWJtaXQtcm93Ij4KPGlucHV0IHR5cGU9InN1Ym1pdCIgdmFsdWU9IlNhdmUiIGNsYXNzPSJkZWZhdWx0IiBuYW1lPSJfc2F2ZSIgLz4KCiAgICAKICAgIDxwIGNsYXNzPSJkZWxldGVsaW5rLWJveCI+PGEgaHJlZj0iL2FkbWluL2NvcmUvc3R1ZGVudC8xL2RlbGV0ZS8iIGNsYXNzPSJkZWxldGVsaW5rIj5EZWxldGU8L2E+PC9wPgoKCjxpbnB1dCB0eXBlPSJzdWJtaXQiIHZhbHVlPSJTYXZlIGFuZCBhZGQgYW5vdGhlciIgbmFtZT0iX2FkZGFub3RoZXIiIC8+CjxpbnB1dCB0eXBlPSJzdWJtaXQiIHZhbHVlPSJTYXZlIGFuZCBjb250aW51ZSBlZGl0aW5nIiBuYW1lPSJfY29udGludWUiIC8+CjwvZGl2PgoKCgogICAgPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiCiAgICAgICAgICAgIGlkPSJkamFuZ28tYWRtaW4tZm9ybS1hZGQtY29uc3RhbnRzIgogICAgICAgICAgICBzcmM9Ii9hc3NldHMvYWRtaW4vanMvY2hhbmdlX2Zvcm0uanMiCiAgICAgICAgICAgID4KICAgIDwvc2NyaXB0PgoKCgoKPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiCiAgICAgICAgaWQ9ImRqYW5nby1hZG1pbi1wcmVwb3B1bGF0ZWQtZmllbGRzLWNvbnN0YW50cyIKICAgICAgICBzcmM9Ii9hc3NldHMvYWRtaW4vanMvcHJlcG9wdWxhdGVfaW5pdC5qcyIKICAgICAgICBkYXRhLXByZXBvcHVsYXRlZC1maWVsZHM9IltdIj4KPC9zY3JpcHQ+CgoKPC9kaXY+CjwvZm9ybT48L2Rpdj4KCiAgICAgICAgCiAgICAgICAgPGJyIGNsYXNzPSJjbGVhciIgLz4KICAgIDwvZGl2PgogICAgPCEtLSBFTkQgQ29udGVudCAtLT4KCiAgICA8ZGl2IGlkPSJmb290ZXIiPjwvZGl2Pgo8L2Rpdj4KPCEtLSBFTkQgQ29udGFpbmVyIC0tPgoKPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 17:15:42 GMT\", \"Expires\": \"Mon, 27 Mar 2017 17:15:42 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "4df0235e-10cc-4afc-a947-64c24b7895d4", - "fields": { - "request": "369e1c8c-41e9-434d-b4ee-12066a0eea2c", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPlNlbGVjdCBjb21wYW55IHRvIGNoYW5nZSB8IERqYW5nbyBzaXRlIGFkbWluPC90aXRsZT4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvYmFzZS5jc3MiIC8+CgogIAogIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvYWRtaW4vY3NzL2NoYW5nZWxpc3RzLmNzcyIgLz4KICAKICAKICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KICAKICAKICAKCgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvY29yZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL2pxdWVyeS9qcXVlcnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2pxdWVyeS5pbml0LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hZG1pbi9SZWxhdGVkT2JqZWN0TG9va3Vwcy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvYWN0aW9ucy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdXJsaWZ5LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9wcmVwb3B1bGF0ZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL3hyZWdleHAveHJlZ2V4cC5qcyI+PC9zY3JpcHQ+Cgo8bWV0YSBuYW1lPSJyb2JvdHMiIGNvbnRlbnQ9Ik5PTkUsTk9BUkNISVZFIiAvPgo8L2hlYWQ+CgoKPGJvZHkgY2xhc3M9IiBhcHAtY29yZSBtb2RlbC1jb21wYW55IGNoYW5nZS1saXN0IgogIGRhdGEtYWRtaW4tdXRjLW9mZnNldD0iMCI+Cgo8IS0tIENvbnRhaW5lciAtLT4KPGRpdiBpZD0iY29udGFpbmVyIj4KCiAgICAKICAgIDwhLS0gSGVhZGVyIC0tPgogICAgPGRpdiBpZD0iaGVhZGVyIj4KICAgICAgICA8ZGl2IGlkPSJicmFuZGluZyI+CiAgICAgICAgCjxoMSBpZD0ic2l0ZS1uYW1lIj48YSBocmVmPSIvYWRtaW4vIj5EamFuZ28gYWRtaW5pc3RyYXRpb248L2E+PC9oMT4KCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgPGRpdiBpZD0idXNlci10b29scyI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgV2VsY29tZSwKICAgICAgICAgICAgICAgIDxzdHJvbmc+a2FwZTwvc3Ryb25nPi4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iLyI+VmlldyBzaXRlPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9wYXNzd29yZF9jaGFuZ2UvIj5DaGFuZ2UgcGFzc3dvcmQ8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2xvZ291dC8iPkxvZyBvdXQ8L2E+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIAogICAgPC9kaXY+CiAgICA8IS0tIEVORCBIZWFkZXIgLS0+CiAgICAKPGRpdiBjbGFzcz0iYnJlYWRjcnVtYnMiPgo8YSBocmVmPSIvYWRtaW4vIj5Ib21lPC9hPgomcnNhcXVvOyA8YSBocmVmPSIvYWRtaW4vY29yZS8iPkNvcmU8L2E+CiZyc2FxdW87IENvbXBhbnlzCjwvZGl2PgoKICAgIAoKICAgIAogICAgICAgIAogICAgCgogICAgPCEtLSBDb250ZW50IC0tPgogICAgPGRpdiBpZD0iY29udGVudCIgY2xhc3M9ImZsZXgiPgogICAgICAgIAogICAgICAgIDxoMT5TZWxlY3QgY29tcGFueSB0byBjaGFuZ2U8L2gxPgogICAgICAgIAogIDxkaXYgaWQ9ImNvbnRlbnQtbWFpbiI+CiAgICAKICAgICAgICA8dWwgY2xhc3M9Im9iamVjdC10b29scyI+CiAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaT4KICAgICAgICAgICAgICAKICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS9jb21wYW55L2FkZC8iIGNsYXNzPSJhZGRsaW5rIj4KICAgICAgICAgICAgICAgIEFkZCBjb21wYW55CiAgICAgICAgICAgICAgPC9hPgogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgIAogICAgICAgIDwvdWw+CiAgICAKICAgIAogICAgPGRpdiBjbGFzcz0ibW9kdWxlIiBpZD0iY2hhbmdlbGlzdCI+CiAgICAgIAoKCiAgICAgIAoKCiAgICAgIAogICAgICAgIAogICAgICAKCiAgICAgIDxmb3JtIGlkPSJjaGFuZ2VsaXN0LWZvcm0iIG1ldGhvZD0icG9zdCIgbm92YWxpZGF0ZT48aW5wdXQgdHlwZT0naGlkZGVuJyBuYW1lPSdjc3JmbWlkZGxld2FyZXRva2VuJyB2YWx1ZT0nOEhiQXJHWE5CREtmdXEzVTlXeUJoZ0ZHTG12U0M1STZiR3VhMm52Q1RMWDd2enpUSEVKZUtyYWUwaGtzM3l3cCcgLz4KICAgICAgCgogICAgICAKICAgICAgICAgIAogICAgICAgICAgCgoKCiAgICAgICAgICAKICAgICAgCiAgICAgIAoKPHAgY2xhc3M9InBhZ2luYXRvciI+CgowIGNvbXBhbnlzCgoKPC9wPgoKICAgICAgPC9mb3JtPgogICAgPC9kaXY+CiAgPC9kaXY+CgogICAgICAgIAogICAgICAgIDxiciBjbGFzcz0iY2xlYXIiIC8+CiAgICA8L2Rpdj4KICAgIDwhLS0gRU5EIENvbnRlbnQgLS0+CgogICAgPGRpdiBpZD0iZm9vdGVyIj48L2Rpdj4KPC9kaXY+CjwhLS0gRU5EIENvbnRhaW5lciAtLT4KCjwvYm9keT4KPC9odG1sPgo=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 14:33:37 GMT\", \"Expires\": \"Mon, 27 Mar 2017 14:33:37 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "4ed52131-2842-4ea2-b63a-1c246aa92d0b", - "fields": { - "request": "9f60293c-f96b-4f99-b14c-af3d7d6ea8b6", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "4f8bb7c1-d66e-4687-aa74-63552dd9b0e6", - "fields": { - "request": "306bb360-adbc-410e-9e92-27c719135373", - "status_code": 200, - "raw_body": "CjwhRE9DVFlQRSBodG1sPgo8aHRtbD4KPGhlYWQ+CiAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogIDx0aXRsZT5Td2FnZ2VyIFVJPC90aXRsZT4KICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2ltYWdlcy9mYXZpY29uLTMyeDMyLnBuZyIgc2l6ZXM9IjMyeDMyIiAvPgogIDxsaW5rIHJlbD0iaWNvbiIgdHlwZT0iaW1hZ2UvcG5nIiBocmVmPSIvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvaW1hZ2VzL2Zhdmljb24tMTZ4MTYucG5nIiBzaXplcz0iMTZ4MTYiIC8+CiAgPGxpbmsgaHJlZj0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2Nzcy90eXBvZ3JhcGh5LmNzcycgbWVkaWE9J3NjcmVlbicgcmVsPSdzdHlsZXNoZWV0JyB0eXBlPSd0ZXh0L2NzcycvPgogIDxsaW5rIGhyZWY9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9jc3MvcmVzZXQuY3NzJyBtZWRpYT0nc2NyZWVuJyByZWw9J3N0eWxlc2hlZXQnIHR5cGU9J3RleHQvY3NzJy8+CiAgPGxpbmsgaHJlZj0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2Nzcy9zY3JlZW4uY3NzJyBtZWRpYT0nc2NyZWVuJyByZWw9J3N0eWxlc2hlZXQnIHR5cGU9J3RleHQvY3NzJy8+CiAgPGxpbmsgaHJlZj0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2Nzcy9yZXNldC5jc3MnIG1lZGlhPSdwcmludCcgcmVsPSdzdHlsZXNoZWV0JyB0eXBlPSd0ZXh0L2NzcycvPgogIDxsaW5rIGhyZWY9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9jc3MvcHJpbnQuY3NzJyBtZWRpYT0ncHJpbnQnIHJlbD0nc3R5bGVzaGVldCcgdHlwZT0ndGV4dC9jc3MnLz4KICAKICAKICAKCiAgPHNjcmlwdCBzcmM9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9saWIvb2JqZWN0LWFzc2lnbi1wb2xseWZpbGwuanMnIHR5cGU9J3RleHQvamF2YXNjcmlwdCc+PC9zY3JpcHQ+CiAgPHNjcmlwdCBzcmM9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9saWIvanF1ZXJ5LTEuOC4wLm1pbi5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4KICA8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2xpYi9qcXVlcnkuc2xpZGV0by5taW4uanMnIHR5cGU9J3RleHQvamF2YXNjcmlwdCc+PC9zY3JpcHQ+CiAgPHNjcmlwdCBzcmM9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9saWIvanF1ZXJ5LndpZ2dsZS5taW4uanMnIHR5cGU9J3RleHQvamF2YXNjcmlwdCc+PC9zY3JpcHQ+CiAgPHNjcmlwdCBzcmM9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9saWIvanF1ZXJ5LmJhLWJicS5taW4uanMnIHR5cGU9J3RleHQvamF2YXNjcmlwdCc+PC9zY3JpcHQ+CiAgPHNjcmlwdCBzcmM9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9saWIvaGFuZGxlYmFycy0yLjAuMC5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4KICA8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2xpYi9qcy15YW1sLm1pbi5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4KICA8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2xpYi9sb2Rhc2gubWluLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgogIDxzY3JpcHQgc3JjPScvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvbGliL2JhY2tib25lLW1pbi5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4KICA8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL3N3YWdnZXItdWkubWluLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgogIDxzY3JpcHQgc3JjPScvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvbGliL2hpZ2hsaWdodC45LjEuMC5wYWNrLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgogIDxzY3JpcHQgc3JjPScvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvbGliL2hpZ2hsaWdodC45LjEuMC5wYWNrX2V4dGVuZGVkLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgogIDxzY3JpcHQgc3JjPScvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvbGliL2pzb25lZGl0b3IubWluLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgogIDxzY3JpcHQgc3JjPScvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvbGliL21hcmtlZC5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4KICA8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2xpYi9zd2FnZ2VyLW9hdXRoLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgoKICA8IS0tIFNvbWUgYmFzaWMgdHJhbnNsYXRpb25zIC0tPgogIDwhLS0gPHNjcmlwdCBzcmM9J2xhbmcvdHJhbnNsYXRvci5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4gLS0+CiAgPCEtLSA8c2NyaXB0IHNyYz0nbGFuZy9ydS5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4gLS0+CiAgPCEtLSA8c2NyaXB0IHNyYz0nbGFuZy9lbi5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4gLS0+Cgo8L2hlYWQ+Cgo8Ym9keSBjbGFzcz0ic3dhZ2dlci1zZWN0aW9uIj4KCjxkaXYgaWQ9J2hlYWRlcic+CiAgPGRpdiBjbGFzcz0ic3dhZ2dlci11aS13cmFwIj4KICAgIAogICAgICA8YSBpZD0ibG9nbyIgaHJlZj0iaHR0cDovL3N3YWdnZXIuaW8iPjxpbWcgY2xhc3M9ImxvZ29fX2ltZyIgYWx0PSJzd2FnZ2VyIiBoZWlnaHQ9IjMwIiB3aWR0aD0iMzAiIHNyYz0iL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2ltYWdlcy9sb2dvX3NtYWxsLnBuZyIgLz48c3BhbiBjbGFzcz0ibG9nb19fdGl0bGUiPnN3YWdnZXI8L3NwYW4+PC9hPgogICAgCiAgICA8Zm9ybSBpZD0nYXBpX3NlbGVjdG9yJz4KICAgICAgPGlucHV0IGlkPSJpbnB1dF9iYXNlVXJsIiBuYW1lPSJiYXNlVXJsIiB0eXBlPSJoaWRkZW4iLz4KICAgICAgCiAgICAgICAgPGlucHV0IHR5cGU9J2hpZGRlbicgbmFtZT0nY3NyZm1pZGRsZXdhcmV0b2tlbicgdmFsdWU9J2pxOTFCdUY1ZTVSN1NqTUZSYzJUTmZ2V1U4bERPNnd5SXdnUU4weDAxMjJ3ZnJPN0FEeGxGV2NHUzNyczg2c24nIC8+CiAgICAgICAgCiAgICAgICAgICA8ZGl2IGNsYXNzPSJpbnB1dCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgIAogICAgICAgICAgICAgIEhlbGxvLCBrYXBlCiAgICAgICAgICAgIAogICAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgICAKICAgICAgICAKICAgICAgCgogICAgICAKICAgICAgICAKICAgICAgICAgIDxkaXYgY2xhc3M9J2lucHV0Jz48YSBpZD0iYXV0aCIgY2xhc3M9ImhlYWRlcl9fYnRuIiBocmVmPSI/bmV4dD0vYXBpIiBkYXRhLXN3LXRyYW5zbGF0ZT5EamFuZ28gTG9nb3V0PC9hPjwvZGl2PgogICAgICAgIAogICAgICAKICAgICAgPGRpdiBpZD0nYXV0aF9jb250YWluZXInPjwvZGl2PgogICAgPC9mb3JtPgogIDwvZGl2Pgo8L2Rpdj4KCgo8ZGl2IGlkPSJtZXNzYWdlLWJhciIgY2xhc3M9InN3YWdnZXItdWktd3JhcCIgZGF0YS1zdy10cmFuc2xhdGU+Jm5ic3A7PC9kaXY+CjxkaXYgaWQ9InN3YWdnZXItdWktY29udGFpbmVyIiBjbGFzcz0ic3dhZ2dlci11aS13cmFwIj48L2Rpdj4KCjxzY3JpcHQgaWQ9ImRycy1zZXR0aW5ncyIgdHlwZT0iYXBwbGljYXRpb24vanNvbiI+CnsiYXBpc1NvcnRlciI6IG51bGwsICJkb2NFeHBhbnNpb24iOiBudWxsLCAianNvbkVkaXRvciI6IGZhbHNlLCAib3BlcmF0aW9uc1NvcnRlciI6IG51bGwsICJzaG93UmVxdWVzdEhlYWRlcnMiOiBmYWxzZSwgInN1cHBvcnRlZFN1Ym1pdE1ldGhvZHMiOiBbImdldCIsICJwb3N0IiwgInB1dCIsICJkZWxldGUiLCAicGF0Y2giXX0KPC9zY3JpcHQ+Cgo8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2luaXQuanMnIHR5cGU9J3RleHQvamF2YXNjcmlwdCc+PC9zY3JpcHQ+CgoKCjwvYm9keT4KPC9odG1sPgo=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Allow\": \"GET, HEAD, OPTIONS\", \"Vary\": \"Accept\"}" - } -}, -{ - "model": "silk.response", - "pk": "4fec4114-c603-49f2-8a50-95c59145d5bf", - "fields": { - "request": "84771ee3-aa02-46cc-8c21-8d7fbda59f80", - "status_code": 500, - "raw_body": "QXR0cmlidXRlRXJyb3IgYXQgL2FwaQondHVwbGUnIG9iamVjdCBoYXMgbm8gYXR0cmlidXRlICdfbWV0YScKClJlcXVlc3QgTWV0aG9kOiBHRVQKUmVxdWVzdCBVUkw6IGh0dHA6Ly8xMjcuMC4wLjE6ODAwMC9hcGkKRGphbmdvIFZlcnNpb246IDEuMTAuNQpQeXRob24gRXhlY3V0YWJsZTogQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXHB5dGhvbi5leGUKUHl0aG9uIFZlcnNpb246IDMuNi4wClB5dGhvbiBQYXRoOiBbJ0Q6XFxQUExBJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXHB5dGhvbjM2LnppcCcsICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyXFxETExzJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXGxpYicsICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXGxpYlxcc2l0ZS1wYWNrYWdlcyddClNlcnZlciB0aW1lOiBNb24sIDI3IE1hciAyMDE3IDE4OjE2OjIwICswMDAwCkluc3RhbGxlZCBBcHBsaWNhdGlvbnM6ClsnZGphbmdvLmNvbnRyaWIuYWRtaW4nLAogJ2RqYW5nby5jb250cmliLmF1dGgnLAogJ2RqYW5nby5jb250cmliLmNvbnRlbnR0eXBlcycsCiAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMnLAogJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzJywKICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcycsCiAnd2VicGFja19sb2FkZXInLAogJ2NvcmUnLAogJ3Jlc3RfZnJhbWV3b3JrJywKICdkamFuZ29fbm9zZScsCiAncmVzdF9mcmFtZXdvcmtfc3dhZ2dlcicsCiAnc2lsayddCkluc3RhbGxlZCBNaWRkbGV3YXJlOgpbJ2RqYW5nby5taWRkbGV3YXJlLnNlY3VyaXR5LlNlY3VyaXR5TWlkZGxld2FyZScsCiAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMubWlkZGxld2FyZS5TZXNzaW9uTWlkZGxld2FyZScsCiAnZGphbmdvLm1pZGRsZXdhcmUuY29tbW9uLkNvbW1vbk1pZGRsZXdhcmUnLAogJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5hdXRoLm1pZGRsZXdhcmUuQXV0aGVudGljYXRpb25NaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5tZXNzYWdlcy5taWRkbGV3YXJlLk1lc3NhZ2VNaWRkbGV3YXJlJywKICdkamFuZ28ubWlkZGxld2FyZS5jbGlja2phY2tpbmcuWEZyYW1lT3B0aW9uc01pZGRsZXdhcmUnLAogJ3NpbGsubWlkZGxld2FyZS5TaWxreU1pZGRsZXdhcmUnXQoKClRyYWNlYmFjazogIAoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXGRqYW5nb1xjb3JlXGhhbmRsZXJzXGV4Y2VwdGlvbi5weSIgaW4gaW5uZXIKICAzOS4gICAgICAgICAgICAgcmVzcG9uc2UgPSBnZXRfcmVzcG9uc2UocmVxdWVzdCkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cY29yZVxoYW5kbGVyc1xiYXNlLnB5IiBpbiBfZ2V0X3Jlc3BvbnNlCiAgMTg3LiAgICAgICAgICAgICAgICAgcmVzcG9uc2UgPSBzZWxmLnByb2Nlc3NfZXhjZXB0aW9uX2J5X21pZGRsZXdhcmUoZSwgcmVxdWVzdCkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cY29yZVxoYW5kbGVyc1xiYXNlLnB5IiBpbiBfZ2V0X3Jlc3BvbnNlCiAgMTg1LiAgICAgICAgICAgICAgICAgcmVzcG9uc2UgPSB3cmFwcGVkX2NhbGxiYWNrKHJlcXVlc3QsICpjYWxsYmFja19hcmdzLCAqKmNhbGxiYWNrX2t3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cdmlld3NcZGVjb3JhdG9yc1xjc3JmLnB5IiBpbiB3cmFwcGVkX3ZpZXcKICA1OC4gICAgICAgICByZXR1cm4gdmlld19mdW5jKCphcmdzLCAqKmt3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cdmlld3NcZ2VuZXJpY1xiYXNlLnB5IiBpbiB2aWV3CiAgNjguICAgICAgICAgICAgIHJldHVybiBzZWxmLmRpc3BhdGNoKHJlcXVlc3QsICphcmdzLCAqKmt3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3cy5weSIgaW4gZGlzcGF0Y2gKICA0ODMuICAgICAgICAgICAgIHJlc3BvbnNlID0gc2VsZi5oYW5kbGVfZXhjZXB0aW9uKGV4YykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3cy5weSIgaW4gaGFuZGxlX2V4Y2VwdGlvbgogIDQ0My4gICAgICAgICAgICAgc2VsZi5yYWlzZV91bmNhdWdodF9leGNlcHRpb24oZXhjKQoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXHJlc3RfZnJhbWV3b3JrXHZpZXdzLnB5IiBpbiBkaXNwYXRjaAogIDQ4MC4gICAgICAgICAgICAgcmVzcG9uc2UgPSBoYW5kbGVyKHJlcXVlc3QsICphcmdzLCAqKmt3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya19zd2FnZ2VyXHZpZXdzLnB5IiBpbiBnZXQKICAzMi4gICAgICAgICAgICAgc2NoZW1hID0gZ2VuZXJhdG9yLmdldF9zY2hlbWEocmVxdWVzdD1yZXF1ZXN0KQoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXHJlc3RfZnJhbWV3b3JrXHNjaGVtYXMucHkiIGluIGdldF9zY2hlbWEKICAyNDIuICAgICAgICAgbGlua3MgPSBzZWxmLmdldF9saW5rcyhyZXF1ZXN0KQoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXHJlc3RfZnJhbWV3b3JrXHNjaGVtYXMucHkiIGluIGdldF9saW5rcwogIDI3My4gICAgICAgICAgICAgbGluayA9IHNlbGYuZ2V0X2xpbmsocGF0aCwgbWV0aG9kLCB2aWV3KQoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXHJlc3RfZnJhbWV3b3JrXHNjaGVtYXMucHkiIGluIGdldF9saW5rCiAgMzcyLiAgICAgICAgIGZpZWxkcyArPSBzZWxmLmdldF9zZXJpYWxpemVyX2ZpZWxkcyhwYXRoLCBtZXRob2QsIHZpZXcpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNccmVzdF9mcmFtZXdvcmtcc2NoZW1hcy5weSIgaW4gZ2V0X3NlcmlhbGl6ZXJfZmllbGRzCiAgNDg4LiAgICAgICAgIGZvciBmaWVsZCBpbiBzZXJpYWxpemVyLmZpZWxkcy52YWx1ZXMoKToKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1xzZXJpYWxpemVycy5weSIgaW4gZmllbGRzCiAgMzYzLiAgICAgICAgICAgICBmb3Iga2V5LCB2YWx1ZSBpbiBzZWxmLmdldF9maWVsZHMoKS5pdGVtcygpOgoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXHJlc3RfZnJhbWV3b3JrXHNlcmlhbGl6ZXJzLnB5IiBpbiBnZXRfZmllbGRzCiAgOTgzLiAgICAgICAgIGluZm8gPSBtb2RlbF9tZXRhLmdldF9maWVsZF9pbmZvKG1vZGVsKQoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXHJlc3RfZnJhbWV3b3JrXHV0aWxzXG1vZGVsX21ldGEucHkiIGluIGdldF9maWVsZF9pbmZvCiAgMzcuICAgICBvcHRzID0gbW9kZWwuX21ldGEuY29uY3JldGVfbW9kZWwuX21ldGEKCkV4Y2VwdGlvbiBUeXBlOiBBdHRyaWJ1dGVFcnJvciBhdCAvYXBpCkV4Y2VwdGlvbiBWYWx1ZTogJ3R1cGxlJyBvYmplY3QgaGFzIG5vIGF0dHJpYnV0ZSAnX21ldGEnClJlcXVlc3QgaW5mb3JtYXRpb246ClVTRVI6IGthcGUKCkdFVDogTm8gR0VUIGRhdGEKClBPU1Q6IE5vIFBPU1QgZGF0YQoKRklMRVM6IE5vIEZJTEVTIGRhdGEKCkNPT0tJRVM6CnNlc3Npb25pZCA9ICdibHQ4NzdnNWZqbXVjeHkzZGQ1dXhjaXphdmI5b3BvdicKY3NyZnRva2VuID0gJzFFRVAyU3dLdDFLOVFiV25GUFN5V1BJaWJ0TzdNQWFWcUtMRWVvb0ZnWVZ5ZGpZUG9nbjBPd3AyOW9VVzZBNksnCgpNRVRBOgpBTExVU0VSU1BST0ZJTEUgPSAnQzpcXFByb2dyYW1EYXRhJwpBUFBEQVRBID0gJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxSb2FtaW5nJwpDT01NT05QUk9HUkFNRklMRVMgPSAnQzpcXFByb2dyYW0gRmlsZXMgKHg4NilcXENvbW1vbiBGaWxlcycKQ09NTU9OUFJPR1JBTUZJTEVTKFg4NikgPSAnQzpcXFByb2dyYW0gRmlsZXMgKHg4NilcXENvbW1vbiBGaWxlcycKQ09NTU9OUFJPR1JBTVc2NDMyID0gJ0M6XFxQcm9ncmFtIEZpbGVzXFxDb21tb24gRmlsZXMnCkNPTVBVVEVSTkFNRSA9ICdGQVJIQU4nCkNPTVNQRUMgPSAnQzpcXFdJTkRPV1NcXHN5c3RlbTMyXFxjbWQuZXhlJwpDT05URU5UX0xFTkdUSCA9ICcnCkNPTlRFTlRfVFlQRSA9ICd0ZXh0L3BsYWluJwpDU1JGX0NPT0tJRSA9ICcxRUVQMlN3S3QxSzlRYlduRlBTeVdQSWlidE83TUFhVnFLTEVlb29GZ1lWeWRqWVBvZ24wT3dwMjlvVVc2QTZLJwpESkFOR09fU0VUVElOR1NfTU9EVUxFID0gJ2thcGUuc2V0dGluZ3MnCkZQU19CUk9XU0VSX0FQUF9QUk9GSUxFX1NUUklORyA9ICdJbnRlcm5ldCBFeHBsb3JlcicKRlBTX0JST1dTRVJfVVNFUl9QUk9GSUxFX1NUUklORyA9ICdEZWZhdWx0JwpGUF9OT19IT1NUX0NIRUNLID0gJ05PJwpHQVRFV0FZX0lOVEVSRkFDRSA9ICdDR0kvMS4xJwpIT01FRFJJVkUgPSAnQzonCkhPTUVQQVRIID0gJ1xcVXNlcnNcXGZhcmhhXzAwMCcKSFRUUF9BQ0NFUFQgPSAndGV4dC9odG1sLGFwcGxpY2F0aW9uL3hodG1sK3htbCxhcHBsaWNhdGlvbi94bWw7cT0wLjksaW1hZ2Uvd2VicCwqLyo7cT0wLjgnCkhUVFBfQUNDRVBUX0VOQ09ESU5HID0gJ2d6aXAsIGRlZmxhdGUsIHNkY2gsIGJyJwpIVFRQX0FDQ0VQVF9MQU5HVUFHRSA9ICdpZC1JRCxpZDtxPTAuOCxlbi1VUztxPTAuNixlbjtxPTAuNCcKSFRUUF9DT05ORUNUSU9OID0gJ2tlZXAtYWxpdmUnCkhUVFBfQ09PS0lFID0gJ3Nlc3Npb25pZD1ibHQ4NzdnNWZqbXVjeHkzZGQ1dXhjaXphdmI5b3BvdjsgY3NyZnRva2VuPTFFRVAyU3dLdDFLOVFiV25GUFN5V1BJaWJ0TzdNQWFWcUtMRWVvb0ZnWVZ5ZGpZUG9nbjBPd3AyOW9VVzZBNksnCkhUVFBfSE9TVCA9ICcxMjcuMC4wLjE6ODAwMCcKSFRUUF9VUEdSQURFX0lOU0VDVVJFX1JFUVVFU1RTID0gJzEnCkhUVFBfVVNFUl9BR0VOVCA9ICdNb3ppbGxhLzUuMCAoV2luZG93cyBOVCAxMC4wOyBXT1c2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzU2LjAuMjkyNC44NyBTYWZhcmkvNTM3LjM2JwpMT0NBTEFQUERBVEEgPSAnQzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXExvY2FsJwpMT0dPTlNFUlZFUiA9ICdcXFxcRkFSSEFOJwpOVU1CRVJfT0ZfUFJPQ0VTU09SUyA9ICcyJwpPTkVEUklWRSA9ICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcT25lRHJpdmUnCk9TID0gJ1dpbmRvd3NfTlQnClBBVEggPSAnQzpcXFByb2dyYW1EYXRhXFxPcmFjbGVcXEphdmFcXGphdmFwYXRoO0M6XFxQcm9ncmFtIEZpbGVzXFxIYXNrZWxsXFxiaW47QzpcXFByb2dyYW0gRmlsZXNcXEhhc2tlbGwgUGxhdGZvcm1cXDcuMTAuM1xcbGliXFxleHRyYWxpYnNcXGJpbjtDOlxcUHJvZ3JhbSBGaWxlc1xcSGFza2VsbCBQbGF0Zm9ybVxcNy4xMC4zXFxiaW47QzpcXFdJTkRPV1NcXHN5c3RlbTMyO0M6XFxXSU5ET1dTO0M6XFxXSU5ET1dTXFxTeXN0ZW0zMlxcV2JlbTtDOlxcV0lORE9XU1xcU3lzdGVtMzJcXFdpbmRvd3NQb3dlclNoZWxsXFx2MS4wXFw7QzpcXFByb2dyYW0gRmlsZXNcXEhhc2tlbGwgUGxhdGZvcm1cXDcuMTAuM1xcbWluZ3dcXGJpbjtDOlxcUHJvZ3JhbSBGaWxlc1xcSmF2YVxcamRrMS44LjBfNzdcXGJpbjtDOlxcY3lnd2luNjRcXGJpbjslbG9jYWxhcHBkYXRhJVxcTWljcm9zb2Z0XFxXaW5kb3dzQXBwcztEOlxcWEFNUFBcXHBocDtDOlxcUHJvZ3JhbSBGaWxlc1xcR2l0XFxjbWQ7QzpcXHhhbXBwXFxwaHA7QzpcXFByb2dyYW1EYXRhXFxDb21wb3NlclNldHVwXFxiaW47QzpcXFByb2dyYW0gRmlsZXMgKHg4NilcXG5vZGVqc1xcO0M6XFxQcm9ncmFtIEZpbGVzXFxQb3N0Z3JlU1FMXFw5LjZcXGJpbjtDOlxcUHJvZ3JhbSBGaWxlc1xcTUFUTEFCXFxSMjAxN2FcXGJpbjtDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyXFxTY3JpcHRzXFw7QzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXExvY2FsXFxQcm9ncmFtc1xcUHl0aG9uXFxQeXRob24zNi0zMlxcO0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxSb2FtaW5nXFxjYWJhbFxcYmluO0Q6XFxYQU1QUFxccGhwO0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxSb2FtaW5nXFxDb21wb3NlclxcdmVuZG9yXFxiaW47QzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXExvY2FsXFxNaWNyb3NvZnRcXFdpbmRvd3NBcHBzO0M6XFxweXRob24tMy42LjAnClBBVEhFWFQgPSAnLkNPTTsuRVhFOy5CQVQ7LkNNRDsuVkJTOy5WQkU7LkpTOy5KU0U7LldTRjsuV1NIOy5NU0MnClBBVEhfSU5GTyA9ICcvYXBpJwpQUk9DRVNTT1JfQVJDSElURUNUVVJFID0gJ3g4NicKUFJPQ0VTU09SX0FSQ0hJVEVXNjQzMiA9ICdBTUQ2NCcKUFJPQ0VTU09SX0lERU5USUZJRVIgPSAnSW50ZWw2NCBGYW1pbHkgNiBNb2RlbCA1OCBTdGVwcGluZyA5LCBHZW51aW5lSW50ZWwnClBST0NFU1NPUl9MRVZFTCA9ICc2JwpQUk9DRVNTT1JfUkVWSVNJT04gPSAnM2EwOScKUFJPR1JBTURBVEEgPSAnQzpcXFByb2dyYW1EYXRhJwpQUk9HUkFNRklMRVMgPSAnQzpcXFByb2dyYW0gRmlsZXMgKHg4NiknClBST0dSQU1GSUxFUyhYODYpID0gJ0M6XFxQcm9ncmFtIEZpbGVzICh4ODYpJwpQUk9HUkFNVzY0MzIgPSAnQzpcXFByb2dyYW0gRmlsZXMnClBST01QVCA9ICckUCRHJwpQU01PRFVMRVBBVEggPSAnQzpcXFdJTkRPV1NcXHN5c3RlbTMyXFxXaW5kb3dzUG93ZXJTaGVsbFxcdjEuMFxcTW9kdWxlc1xcJwpQVUJMSUMgPSAnQzpcXFVzZXJzXFxQdWJsaWMnClFVRVJZX1NUUklORyA9ICcnClJFTU9URV9BRERSID0gJzEyNy4wLjAuMScKUkVNT1RFX0hPU1QgPSAnJwpSRVFVRVNUX01FVEhPRCA9ICdHRVQnClJVTl9NQUlOID0gJ3RydWUnClNDUklQVF9OQU1FID0gJycKU0VSVkVSX05BTUUgPSAnRmFyaGFuJwpTRVJWRVJfUE9SVCA9ICc4MDAwJwpTRVJWRVJfUFJPVE9DT0wgPSAnSFRUUC8xLjEnClNFUlZFUl9TT0ZUV0FSRSA9ICdXU0dJU2VydmVyLzAuMicKU0VTU0lPTk5BTUUgPSAnQ29uc29sZScKU1lTVEVNRFJJVkUgPSAnQzonClNZU1RFTVJPT1QgPSAnQzpcXFdJTkRPV1MnClRFTVAgPSAnQzpcXFVzZXJzXFxGQVJIQV9+MVxcQXBwRGF0YVxcTG9jYWxcXFRlbXAnClRNUCA9ICdDOlxcVXNlcnNcXEZBUkhBX34xXFxBcHBEYXRhXFxMb2NhbFxcVGVtcCcKVVNFUkRPTUFJTiA9ICdGYXJoYW4nClVTRVJET01BSU5fUk9BTUlOR1BST0ZJTEUgPSAnRmFyaGFuJwpVU0VSTkFNRSA9ICdGYXJoYW4gRmFyYXNkYWsnClVTRVJQUk9GSUxFID0gJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwJwpWQk9YX01TSV9JTlNUQUxMX1BBVEggPSAnQzpcXFByb2dyYW0gRmlsZXNcXE9yYWNsZVxcVmlydHVhbEJveFxcJwpXSU5ESVIgPSAnQzpcXFdJTkRPV1MnCndzZ2kuZXJyb3JzID0gPF9pby5UZXh0SU9XcmFwcGVyIG5hbWU9JzxzdGRlcnI+JyBtb2RlPSd3JyBlbmNvZGluZz0ndXRmLTgnPgp3c2dpLmZpbGVfd3JhcHBlciA9ICcnCndzZ2kuaW5wdXQgPSA8X2lvLkJ1ZmZlcmVkUmVhZGVyIG5hbWU9OTI0Pgp3c2dpLm11bHRpcHJvY2VzcyA9IEZhbHNlCndzZ2kubXVsdGl0aHJlYWQgPSBUcnVlCndzZ2kucnVuX29uY2UgPSBGYWxzZQp3c2dpLnVybF9zY2hlbWUgPSAnaHR0cCcKd3NnaS52ZXJzaW9uID0gCgpTZXR0aW5nczoKVXNpbmcgc2V0dGluZ3MgbW9kdWxlIGthcGUuc2V0dGluZ3MKQUJTT0xVVEVfVVJMX09WRVJSSURFUyA9IHt9CkFETUlOUyA9IFtdCkFMTE9XRURfSE9TVFMgPSBbJ2JvdC5yZWNydWl0LmlkJywgJzEwNC4yMzYuNzYuMTYxJywgJ2xvY2FsaG9zdCcsICcxMjcuMC4wLjEnXQpBUFBFTkRfU0xBU0ggPSBUcnVlCkFVVEhFTlRJQ0FUSU9OX0JBQ0tFTkRTID0gWydkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCddCkFVVEhfUEFTU1dPUkRfVkFMSURBVE9SUyA9ICcqKioqKioqKioqKioqKioqKioqKicKQVVUSF9VU0VSX01PREVMID0gJ2F1dGguVXNlcicKQkFTRV9ESVIgPSAnRDpcXFBQTEEnCkNBQ0hFUyA9IHsnZGVmYXVsdCc6IHsnQkFDS0VORCc6ICdkamFuZ28uY29yZS5jYWNoZS5iYWNrZW5kcy5sb2NtZW0uTG9jTWVtQ2FjaGUnfX0KQ0FDSEVfTUlERExFV0FSRV9BTElBUyA9ICdkZWZhdWx0JwpDQUNIRV9NSURETEVXQVJFX0tFWV9QUkVGSVggPSAnKioqKioqKioqKioqKioqKioqKionCkNBQ0hFX01JRERMRVdBUkVfU0VDT05EUyA9IDYwMApDU1JGX0NPT0tJRV9BR0UgPSAzMTQ0OTYwMApDU1JGX0NPT0tJRV9ET01BSU4gPSBOb25lCkNTUkZfQ09PS0lFX0hUVFBPTkxZID0gRmFsc2UKQ1NSRl9DT09LSUVfTkFNRSA9ICdjc3JmdG9rZW4nCkNTUkZfQ09PS0lFX1BBVEggPSAnLycKQ1NSRl9DT09LSUVfU0VDVVJFID0gRmFsc2UKQ1NSRl9GQUlMVVJFX1ZJRVcgPSAnZGphbmdvLnZpZXdzLmNzcmYuY3NyZl9mYWlsdXJlJwpDU1JGX0hFQURFUl9OQU1FID0gJ0hUVFBfWF9DU1JGVE9LRU4nCkNTUkZfVFJVU1RFRF9PUklHSU5TID0gW10KREFUQUJBU0VTID0geydkZWZhdWx0JzogeydFTkdJTkUnOiAnZGphbmdvLmRiLmJhY2tlbmRzLnBvc3RncmVzcWxfcHN5Y29wZzInLCAnTkFNRSc6ICdrYXBlJywgJ1VTRVInOiAna2FwZScsICdQQVNTV09SRCc6ICcqKioqKioqKioqKioqKioqKioqKicsICdIT1NUJzogJ2xvY2FsaG9zdCcsICdQT1JUJzogJycsICdBVE9NSUNfUkVRVUVTVFMnOiBGYWxzZSwgJ0FVVE9DT01NSVQnOiBUcnVlLCAnQ09OTl9NQVhfQUdFJzogMCwgJ09QVElPTlMnOiB7fSwgJ1RJTUVfWk9ORSc6IE5vbmUsICdURVNUJzogeydDSEFSU0VUJzogTm9uZSwgJ0NPTExBVElPTic6IE5vbmUsICdOQU1FJzogTm9uZSwgJ01JUlJPUic6IE5vbmV9fX0KREFUQUJBU0VfUk9VVEVSUyA9IFtdCkRBVEFfVVBMT0FEX01BWF9NRU1PUllfU0laRSA9IDI2MjE0NDAKREFUQV9VUExPQURfTUFYX05VTUJFUl9GSUVMRFMgPSAxMDAwCkRBVEVUSU1FX0ZPUk1BVCA9ICdOIGosIFksIFAnCkRBVEVUSU1FX0lOUFVUX0ZPUk1BVFMgPSBbJyVZLSVtLSVkICVIOiVNOiVTJywgJyVZLSVtLSVkICVIOiVNOiVTLiVmJywgJyVZLSVtLSVkICVIOiVNJywgJyVZLSVtLSVkJywgJyVtLyVkLyVZICVIOiVNOiVTJywgJyVtLyVkLyVZICVIOiVNOiVTLiVmJywgJyVtLyVkLyVZICVIOiVNJywgJyVtLyVkLyVZJywgJyVtLyVkLyV5ICVIOiVNOiVTJywgJyVtLyVkLyV5ICVIOiVNOiVTLiVmJywgJyVtLyVkLyV5ICVIOiVNJywgJyVtLyVkLyV5J10KREFURV9GT1JNQVQgPSAnTiBqLCBZJwpEQVRFX0lOUFVUX0ZPUk1BVFMgPSBbJyVZLSVtLSVkJywgJyVtLyVkLyVZJywgJyVtLyVkLyV5JywgJyViICVkICVZJywgJyViICVkLCAlWScsICclZCAlYiAlWScsICclZCAlYiwgJVknLCAnJUIgJWQgJVknLCAnJUIgJWQsICVZJywgJyVkICVCICVZJywgJyVkICVCLCAlWSddCkRFQlVHID0gVHJ1ZQpERUJVR19QUk9QQUdBVEVfRVhDRVBUSU9OUyA9IEZhbHNlCkRFQ0lNQUxfU0VQQVJBVE9SID0gJy4nCkRFRkFVTFRfQ0hBUlNFVCA9ICd1dGYtOCcKREVGQVVMVF9DT05URU5UX1RZUEUgPSAndGV4dC9odG1sJwpERUZBVUxUX0VYQ0VQVElPTl9SRVBPUlRFUl9GSUxURVIgPSAnZGphbmdvLnZpZXdzLmRlYnVnLlNhZmVFeGNlcHRpb25SZXBvcnRlckZpbHRlcicKREVGQVVMVF9GSUxFX1NUT1JBR0UgPSAnZGphbmdvLmNvcmUuZmlsZXMuc3RvcmFnZS5GaWxlU3lzdGVtU3RvcmFnZScKREVGQVVMVF9GUk9NX0VNQUlMID0gJ3dlYm1hc3RlckBsb2NhbGhvc3QnCkRFRkFVTFRfSU5ERVhfVEFCTEVTUEFDRSA9ICcnCkRFRkFVTFRfVEFCTEVTUEFDRSA9ICcnCkRJU0FMTE9XRURfVVNFUl9BR0VOVFMgPSBbXQpFTUFJTF9CQUNLRU5EID0gJ2RqYW5nby5jb3JlLm1haWwuYmFja2VuZHMuc210cC5FbWFpbEJhY2tlbmQnCkVNQUlMX0hPU1QgPSAnbG9jYWxob3N0JwpFTUFJTF9IT1NUX1BBU1NXT1JEID0gJyoqKioqKioqKioqKioqKioqKioqJwpFTUFJTF9IT1NUX1VTRVIgPSAnJwpFTUFJTF9QT1JUID0gMjUKRU1BSUxfU1NMX0NFUlRGSUxFID0gTm9uZQpFTUFJTF9TU0xfS0VZRklMRSA9ICcqKioqKioqKioqKioqKioqKioqKicKRU1BSUxfU1VCSkVDVF9QUkVGSVggPSAnW0RqYW5nb10gJwpFTUFJTF9USU1FT1VUID0gTm9uZQpFTUFJTF9VU0VfU1NMID0gRmFsc2UKRU1BSUxfVVNFX1RMUyA9IEZhbHNlCkZJTEVfQ0hBUlNFVCA9ICd1dGYtOCcKRklMRV9VUExPQURfRElSRUNUT1JZX1BFUk1JU1NJT05TID0gTm9uZQpGSUxFX1VQTE9BRF9IQU5ETEVSUyA9IFsnZGphbmdvLmNvcmUuZmlsZXMudXBsb2FkaGFuZGxlci5NZW1vcnlGaWxlVXBsb2FkSGFuZGxlcicsICdkamFuZ28uY29yZS5maWxlcy51cGxvYWRoYW5kbGVyLlRlbXBvcmFyeUZpbGVVcGxvYWRIYW5kbGVyJ10KRklMRV9VUExPQURfTUFYX01FTU9SWV9TSVpFID0gMjYyMTQ0MApGSUxFX1VQTE9BRF9QRVJNSVNTSU9OUyA9IE5vbmUKRklMRV9VUExPQURfVEVNUF9ESVIgPSBOb25lCkZJUlNUX0RBWV9PRl9XRUVLID0gMApGSVhUVVJFX0RJUlMgPSBbXQpGT1JDRV9TQ1JJUFRfTkFNRSA9IE5vbmUKRk9STUFUX01PRFVMRV9QQVRIID0gTm9uZQpHWklQX0NPTlRFTlRfVFlQRVMgPSAKSUdOT1JBQkxFXzQwNF9VUkxTID0gW10KSU5TVEFMTEVEX0FQUFMgPSBbJ2RqYW5nby5jb250cmliLmFkbWluJywgJ2RqYW5nby5jb250cmliLmF1dGgnLCAnZGphbmdvLmNvbnRyaWIuY29udGVudHR5cGVzJywgJ2RqYW5nby5jb250cmliLnNlc3Npb25zJywgJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzJywgJ2RqYW5nby5jb250cmliLnN0YXRpY2ZpbGVzJywgJ3dlYnBhY2tfbG9hZGVyJywgJ2NvcmUnLCAncmVzdF9mcmFtZXdvcmsnLCAnZGphbmdvX25vc2UnLCAncmVzdF9mcmFtZXdvcmtfc3dhZ2dlcicsICdzaWxrJ10KSU5URVJOQUxfSVBTID0gW10KTEFOR1VBR0VTID0gWygnYWYnLCAnQWZyaWthYW5zJyksICgnYXInLCAnQXJhYmljJyksICgnYXN0JywgJ0FzdHVyaWFuJyksICgnYXonLCAnQXplcmJhaWphbmknKSwgKCdiZycsICdCdWxnYXJpYW4nKSwgKCdiZScsICdCZWxhcnVzaWFuJyksICgnYm4nLCAnQmVuZ2FsaScpLCAoJ2JyJywgJ0JyZXRvbicpLCAoJ2JzJywgJ0Jvc25pYW4nKSwgKCdjYScsICdDYXRhbGFuJyksICgnY3MnLCAnQ3plY2gnKSwgKCdjeScsICdXZWxzaCcpLCAoJ2RhJywgJ0RhbmlzaCcpLCAoJ2RlJywgJ0dlcm1hbicpLCAoJ2RzYicsICdMb3dlciBTb3JiaWFuJyksICgnZWwnLCAnR3JlZWsnKSwgKCdlbicsICdFbmdsaXNoJyksICgnZW4tYXUnLCAnQXVzdHJhbGlhbiBFbmdsaXNoJyksICgnZW4tZ2InLCAnQnJpdGlzaCBFbmdsaXNoJyksICgnZW8nLCAnRXNwZXJhbnRvJyksICgnZXMnLCAnU3BhbmlzaCcpLCAoJ2VzLWFyJywgJ0FyZ2VudGluaWFuIFNwYW5pc2gnKSwgKCdlcy1jbycsICdDb2xvbWJpYW4gU3BhbmlzaCcpLCAoJ2VzLW14JywgJ01leGljYW4gU3BhbmlzaCcpLCAoJ2VzLW5pJywgJ05pY2FyYWd1YW4gU3BhbmlzaCcpLCAoJ2VzLXZlJywgJ1ZlbmV6dWVsYW4gU3BhbmlzaCcpLCAoJ2V0JywgJ0VzdG9uaWFuJyksICgnZXUnLCAnQmFzcXVlJyksICgnZmEnLCAnUGVyc2lhbicpLCAoJ2ZpJywgJ0Zpbm5pc2gnKSwgKCdmcicsICdGcmVuY2gnKSwgKCdmeScsICdGcmlzaWFuJyksICgnZ2EnLCAnSXJpc2gnKSwgKCdnZCcsICdTY290dGlzaCBHYWVsaWMnKSwgKCdnbCcsICdHYWxpY2lhbicpLCAoJ2hlJywgJ0hlYnJldycpLCAoJ2hpJywgJ0hpbmRpJyksICgnaHInLCAnQ3JvYXRpYW4nKSwgKCdoc2InLCAnVXBwZXIgU29yYmlhbicpLCAoJ2h1JywgJ0h1bmdhcmlhbicpLCAoJ2lhJywgJ0ludGVybGluZ3VhJyksICgnaWQnLCAnSW5kb25lc2lhbicpLCAoJ2lvJywgJ0lkbycpLCAoJ2lzJywgJ0ljZWxhbmRpYycpLCAoJ2l0JywgJ0l0YWxpYW4nKSwgKCdqYScsICdKYXBhbmVzZScpLCAoJ2thJywgJ0dlb3JnaWFuJyksICgna2snLCAnS2F6YWtoJyksICgna20nLCAnS2htZXInKSwgKCdrbicsICdLYW5uYWRhJyksICgna28nLCAnS29yZWFuJyksICgnbGInLCAnTHV4ZW1ib3VyZ2lzaCcpLCAoJ2x0JywgJ0xpdGh1YW5pYW4nKSwgKCdsdicsICdMYXR2aWFuJyksICgnbWsnLCAnTWFjZWRvbmlhbicpLCAoJ21sJywgJ01hbGF5YWxhbScpLCAoJ21uJywgJ01vbmdvbGlhbicpLCAoJ21yJywgJ01hcmF0aGknKSwgKCdteScsICdCdXJtZXNlJyksICgnbmInLCAnTm9yd2VnaWFuIEJva23DpWwnKSwgKCduZScsICdOZXBhbGknKSwgKCdubCcsICdEdXRjaCcpLCAoJ25uJywgJ05vcndlZ2lhbiBOeW5vcnNrJyksICgnb3MnLCAnT3NzZXRpYycpLCAoJ3BhJywgJ1B1bmphYmknKSwgKCdwbCcsICdQb2xpc2gnKSwgKCdwdCcsICdQb3J0dWd1ZXNlJyksICgncHQtYnInLCAnQnJhemlsaWFuIFBvcnR1Z3Vlc2UnKSwgKCdybycsICdSb21hbmlhbicpLCAoJ3J1JywgJ1J1c3NpYW4nKSwgKCdzaycsICdTbG92YWsnKSwgKCdzbCcsICdTbG92ZW5pYW4nKSwgKCdzcScsICdBbGJhbmlhbicpLCAoJ3NyJywgJ1NlcmJpYW4nKSwgKCdzci1sYXRuJywgJ1NlcmJpYW4gTGF0aW4nKSwgKCdzdicsICdTd2VkaXNoJyksICgnc3cnLCAnU3dhaGlsaScpLCAoJ3RhJywgJ1RhbWlsJyksICgndGUnLCAnVGVsdWd1JyksICgndGgnLCAnVGhhaScpLCAoJ3RyJywgJ1R1cmtpc2gnKSwgKCd0dCcsICdUYXRhcicpLCAoJ3VkbScsICdVZG11cnQnKSwgKCd1aycsICdVa3JhaW5pYW4nKSwgKCd1cicsICdVcmR1JyksICgndmknLCAnVmlldG5hbWVzZScpLCAoJ3poLWhhbnMnLCAnU2ltcGxpZmllZCBDaGluZXNlJyksICgnemgtaGFudCcsICdUcmFkaXRpb25hbCBDaGluZXNlJyldCkxBTkdVQUdFU19CSURJID0gWydoZScsICdhcicsICdmYScsICd1ciddCkxBTkdVQUdFX0NPREUgPSAnZW4tdXMnCkxBTkdVQUdFX0NPT0tJRV9BR0UgPSBOb25lCkxBTkdVQUdFX0NPT0tJRV9ET01BSU4gPSBOb25lCkxBTkdVQUdFX0NPT0tJRV9OQU1FID0gJ2RqYW5nb19sYW5ndWFnZScKTEFOR1VBR0VfQ09PS0lFX1BBVEggPSAnLycKTE9DQUxFX1BBVEhTID0gW10KTE9HR0lORyA9IHt9CkxPR0dJTkdfQ09ORklHID0gJ2xvZ2dpbmcuY29uZmlnLmRpY3RDb25maWcnCkxPR0lOX1JFRElSRUNUX1VSTCA9ICcvYWNjb3VudHMvcHJvZmlsZS8nCkxPR0lOX1VSTCA9ICcvYWNjb3VudHMvbG9naW4vJwpMT0dPVVRfUkVESVJFQ1RfVVJMID0gTm9uZQpNQU5BR0VSUyA9IFtdCk1FRElBX1JPT1QgPSAnL2hvbWUvZmlsZXMnCk1FRElBX1VSTCA9ICcvZmlsZXMvJwpNRVNTQUdFX1NUT1JBR0UgPSAnZGphbmdvLmNvbnRyaWIubWVzc2FnZXMuc3RvcmFnZS5mYWxsYmFjay5GYWxsYmFja1N0b3JhZ2UnCk1JRERMRVdBUkUgPSBbJ2RqYW5nby5taWRkbGV3YXJlLnNlY3VyaXR5LlNlY3VyaXR5TWlkZGxld2FyZScsICdkamFuZ28uY29udHJpYi5zZXNzaW9ucy5taWRkbGV3YXJlLlNlc3Npb25NaWRkbGV3YXJlJywgJ2RqYW5nby5taWRkbGV3YXJlLmNvbW1vbi5Db21tb25NaWRkbGV3YXJlJywgJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJywgJ2RqYW5nby5jb250cmliLmF1dGgubWlkZGxld2FyZS5BdXRoZW50aWNhdGlvbk1pZGRsZXdhcmUnLCAnZGphbmdvLmNvbnRyaWIubWVzc2FnZXMubWlkZGxld2FyZS5NZXNzYWdlTWlkZGxld2FyZScsICdkamFuZ28ubWlkZGxld2FyZS5jbGlja2phY2tpbmcuWEZyYW1lT3B0aW9uc01pZGRsZXdhcmUnLCAnc2lsay5taWRkbGV3YXJlLlNpbGt5TWlkZGxld2FyZSddCk1JRERMRVdBUkVfQ0xBU1NFUyA9IFsnZGphbmdvLm1pZGRsZXdhcmUuY29tbW9uLkNvbW1vbk1pZGRsZXdhcmUnLCAnZGphbmdvLm1pZGRsZXdhcmUuY3NyZi5Dc3JmVmlld01pZGRsZXdhcmUnXQpNSUdSQVRJT05fTU9EVUxFUyA9IHt9Ck1PTlRIX0RBWV9GT1JNQVQgPSAnRiBqJwpOT1NFX0FSR1MgPSBbJy0td2l0aC1jb3ZlcmFnZScsICctLWNvdmVyLXBhY2thZ2U9Y29yZS52aWV3cycsICctLWNvdmVyLWh0bWwtZGlyPXRlc3QvYmFja2VuZCcsICctLWNvdmVyLWh0bWwnXQpOVU1CRVJfR1JPVVBJTkcgPSAwClBBU1NXT1JEX0hBU0hFUlMgPSAnKioqKioqKioqKioqKioqKioqKionClBBU1NXT1JEX1JFU0VUX1RJTUVPVVRfREFZUyA9ICcqKioqKioqKioqKioqKioqKioqKicKUFJFUEVORF9XV1cgPSBGYWxzZQpSRVNUX0ZSQU1FV09SSyA9IHsnREVGQVVMVF9QRVJNSVNTSU9OX0NMQVNTRVMnOiBbJ3Jlc3RfZnJhbWV3b3JrLnBlcm1pc3Npb25zLkRqYW5nb01vZGVsUGVybWlzc2lvbnNPckFub25SZWFkT25seSddfQpST09UX1VSTENPTkYgPSAna2FwZS51cmxzJwpSVU5OSU5HX0RFVlNFUlZFUiA9IFRydWUKU0VDUkVUX0tFWSA9ICcqKioqKioqKioqKioqKioqKioqKicKU0VDVVJFX0JST1dTRVJfWFNTX0ZJTFRFUiA9IEZhbHNlClNFQ1VSRV9DT05URU5UX1RZUEVfTk9TTklGRiA9IEZhbHNlClNFQ1VSRV9IU1RTX0lOQ0xVREVfU1VCRE9NQUlOUyA9IEZhbHNlClNFQ1VSRV9IU1RTX1NFQ09ORFMgPSAwClNFQ1VSRV9QUk9YWV9TU0xfSEVBREVSID0gTm9uZQpTRUNVUkVfUkVESVJFQ1RfRVhFTVBUID0gW10KU0VDVVJFX1NTTF9IT1NUID0gTm9uZQpTRUNVUkVfU1NMX1JFRElSRUNUID0gRmFsc2UKU0VSVkVSX0VNQUlMID0gJ3Jvb3RAbG9jYWxob3N0JwpTRVNTSU9OX0NBQ0hFX0FMSUFTID0gJ2RlZmF1bHQnClNFU1NJT05fQ09PS0lFX0FHRSA9IDEyMDk2MDAKU0VTU0lPTl9DT09LSUVfRE9NQUlOID0gTm9uZQpTRVNTSU9OX0NPT0tJRV9IVFRQT05MWSA9IEZhbHNlClNFU1NJT05fQ09PS0lFX05BTUUgPSAnc2Vzc2lvbmlkJwpTRVNTSU9OX0NPT0tJRV9QQVRIID0gJy8nClNFU1NJT05fQ09PS0lFX1NFQ1VSRSA9IEZhbHNlClNFU1NJT05fRU5HSU5FID0gJ2RqYW5nby5jb250cmliLnNlc3Npb25zLmJhY2tlbmRzLmRiJwpTRVNTSU9OX0VYUElSRV9BVF9CUk9XU0VSX0NMT1NFID0gRmFsc2UKU0VTU0lPTl9GSUxFX1BBVEggPSBOb25lClNFU1NJT05fU0FWRV9FVkVSWV9SRVFVRVNUID0gRmFsc2UKU0VTU0lPTl9TRVJJQUxJWkVSID0gJ2RqYW5nby5jb250cmliLnNlc3Npb25zLnNlcmlhbGl6ZXJzLkpTT05TZXJpYWxpemVyJwpTRVRUSU5HU19NT0RVTEUgPSAna2FwZS5zZXR0aW5ncycKU0hPUlRfREFURVRJTUVfRk9STUFUID0gJ20vZC9ZIFAnClNIT1JUX0RBVEVfRk9STUFUID0gJ20vZC9ZJwpTSUdOSU5HX0JBQ0tFTkQgPSAnZGphbmdvLmNvcmUuc2lnbmluZy5UaW1lc3RhbXBTaWduZXInClNJTEVOQ0VEX1NZU1RFTV9DSEVDS1MgPSBbXQpTVEFUSUNGSUxFU19ESVJTID0gJ0Q6XFxQUExBXFxhc3NldHMnClNUQVRJQ0ZJTEVTX0ZJTkRFUlMgPSBbJ2RqYW5nby5jb250cmliLnN0YXRpY2ZpbGVzLmZpbmRlcnMuRmlsZVN5c3RlbUZpbmRlcicsICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcy5maW5kZXJzLkFwcERpcmVjdG9yaWVzRmluZGVyJ10KU1RBVElDRklMRVNfU1RPUkFHRSA9ICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcy5zdG9yYWdlLlN0YXRpY0ZpbGVzU3RvcmFnZScKU1RBVElDX1JPT1QgPSAnL2hvbWUvYXNzZXRzJwpTVEFUSUNfVVJMID0gJy9hc3NldHMvJwpURU1QTEFURVMgPSBbeydCQUNLRU5EJzogJ2RqYW5nby50ZW1wbGF0ZS5iYWNrZW5kcy5kamFuZ28uRGphbmdvVGVtcGxhdGVzJywgJ0RJUlMnOiBbXSwgJ0FQUF9ESVJTJzogVHJ1ZSwgJ09QVElPTlMnOiB7J2NvbnRleHRfcHJvY2Vzc29ycyc6IFsnZGphbmdvLnRlbXBsYXRlLmNvbnRleHRfcHJvY2Vzc29ycy5kZWJ1ZycsICdkamFuZ28udGVtcGxhdGUuY29udGV4dF9wcm9jZXNzb3JzLnJlcXVlc3QnLCAnZGphbmdvLmNvbnRyaWIuYXV0aC5jb250ZXh0X3Byb2Nlc3NvcnMuYXV0aCcsICdkamFuZ28uY29udHJpYi5tZXNzYWdlcy5jb250ZXh0X3Byb2Nlc3NvcnMubWVzc2FnZXMnXX19XQpURVNUX05PTl9TRVJJQUxJWkVEX0FQUFMgPSBbXQpURVNUX1JVTk5FUiA9ICdkamFuZ29fbm9zZS5Ob3NlVGVzdFN1aXRlUnVubmVyJwpUSE9VU0FORF9TRVBBUkFUT1IgPSAnLCcKVElNRV9GT1JNQVQgPSAnUCcKVElNRV9JTlBVVF9GT1JNQVRTID0gWyclSDolTTolUycsICclSDolTTolUy4lZicsICclSDolTSddClRJTUVfWk9ORSA9ICdVVEMnClVTRV9FVEFHUyA9IEZhbHNlClVTRV9JMThOID0gVHJ1ZQpVU0VfTDEwTiA9IFRydWUKVVNFX1RIT1VTQU5EX1NFUEFSQVRPUiA9IEZhbHNlClVTRV9UWiA9IFRydWUKVVNFX1hfRk9SV0FSREVEX0hPU1QgPSBGYWxzZQpVU0VfWF9GT1JXQVJERURfUE9SVCA9IEZhbHNlCldFQlBBQ0tfTE9BREVSID0geydERUZBVUxUJzogeydCVU5ETEVfRElSX05BTUUnOiAnYnVuZGxlcy8nLCAnU1RBVFNfRklMRSc6ICdEOlxcUFBMQVxcd2VicGFjay1zdGF0cy5qc29uJ319CldTR0lfQVBQTElDQVRJT04gPSAna2FwZS53c2dpLmFwcGxpY2F0aW9uJwpYX0ZSQU1FX09QVElPTlMgPSAnU0FNRU9SSUdJTicKWUVBUl9NT05USF9GT1JNQVQgPSAnRiBZJwoKCllvdSdyZSBzZWVpbmcgdGhpcyBlcnJvciBiZWNhdXNlIHlvdSBoYXZlIERFQlVHID0gVHJ1ZSBpbiB5b3VyCkRqYW5nbyBzZXR0aW5ncyBmaWxlLiBDaGFuZ2UgdGhhdCB0byBGYWxzZSwgYW5kIERqYW5nbyB3aWxsCmRpc3BsYXkgYSBzdGFuZGFyZCBwYWdlIGdlbmVyYXRlZCBieSB0aGUgaGFuZGxlciBmb3IgdGhpcyBzdGF0dXMgY29kZS4KCg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/plain\"}" - } -}, -{ - "model": "silk.response", - "pk": "51648c07-96b7-4cde-aae2-b512259004c9", - "fields": { - "request": "a11dfab9-53c8-4360-b48e-b11c0a11794a", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPlNpdGUgYWRtaW5pc3RyYXRpb24gfCBEamFuZ28gc2l0ZSBhZG1pbjwvdGl0bGU+CjxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvYWRtaW4vY3NzL2Jhc2UuY3NzIiAvPgo8bGluayByZWw9InN0eWxlc2hlZXQiIHR5cGU9InRleHQvY3NzIiBocmVmPSIvYXNzZXRzL2FkbWluL2Nzcy9kYXNoYm9hcmQuY3NzIiAvPgoKCjxtZXRhIG5hbWU9InJvYm90cyIgY29udGVudD0iTk9ORSxOT0FSQ0hJVkUiIC8+CjwvaGVhZD4KCgo8Ym9keSBjbGFzcz0iIGRhc2hib2FyZCIKICBkYXRhLWFkbWluLXV0Yy1vZmZzZXQ9IjAiPgoKPCEtLSBDb250YWluZXIgLS0+CjxkaXYgaWQ9ImNvbnRhaW5lciI+CgogICAgCiAgICA8IS0tIEhlYWRlciAtLT4KICAgIDxkaXYgaWQ9ImhlYWRlciI+CiAgICAgICAgPGRpdiBpZD0iYnJhbmRpbmciPgogICAgICAgIAo8aDEgaWQ9InNpdGUtbmFtZSI+PGEgaHJlZj0iL2FkbWluLyI+RGphbmdvIGFkbWluaXN0cmF0aW9uPC9hPjwvaDE+CgogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIDxkaXYgaWQ9InVzZXItdG9vbHMiPgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIFdlbGNvbWUsCiAgICAgICAgICAgICAgICA8c3Ryb25nPmthcGU8L3N0cm9uZz4uCiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii8iPlZpZXcgc2l0ZTwvYT4gLwogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vcGFzc3dvcmRfY2hhbmdlLyI+Q2hhbmdlIHBhc3N3b3JkPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9sb2dvdXQvIj5Mb2cgb3V0PC9hPgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgICAgICAKICAgICAgICAKICAgICAgICAKICAgIDwvZGl2PgogICAgPCEtLSBFTkQgSGVhZGVyIC0tPgogICAgCiAgICAKCiAgICAKICAgICAgICAKICAgIAoKICAgIDwhLS0gQ29udGVudCAtLT4KICAgIDxkaXYgaWQ9ImNvbnRlbnQiIGNsYXNzPSJjb2xNUyI+CiAgICAgICAgCiAgICAgICAgPGgxPlNpdGUgYWRtaW5pc3RyYXRpb248L2gxPgogICAgICAgIAo8ZGl2IGlkPSJjb250ZW50LW1haW4iPgoKCiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJhcHAtYXV0aCBtb2R1bGUiPgogICAgICAgIDx0YWJsZT4KICAgICAgICA8Y2FwdGlvbj4KICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2F1dGgvIiBjbGFzcz0ic2VjdGlvbiIgdGl0bGU9Ik1vZGVscyBpbiB0aGUgQXV0aGVudGljYXRpb24gYW5kIEF1dGhvcml6YXRpb24gYXBwbGljYXRpb24iPkF1dGhlbnRpY2F0aW9uIGFuZCBBdXRob3JpemF0aW9uPC9hPgogICAgICAgIDwvY2FwdGlvbj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1ncm91cCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL2dyb3VwLyI+R3JvdXBzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvZ3JvdXAvYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL2dyb3VwLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC11c2VyIj4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8iPlVzZXJzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgPC90YWJsZT4KICAgICAgICA8L2Rpdj4KICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImFwcC1jb3JlIG1vZHVsZSI+CiAgICAgICAgPHRhYmxlPgogICAgICAgIDxjYXB0aW9uPgogICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS8iIGNsYXNzPSJzZWN0aW9uIiB0aXRsZT0iTW9kZWxzIGluIHRoZSBDb3JlIGFwcGxpY2F0aW9uIj5Db3JlPC9hPgogICAgICAgIDwvY2FwdGlvbj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1hcHBsaWNhdGlvbiI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL2FwcGxpY2F0aW9uLyI+QXBwbGljYXRpb25zPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvYXBwbGljYXRpb24vYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL2FwcGxpY2F0aW9uLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1jb21wYW55Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8iPkNvbXBhbnlzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgICAgIDx0ciBjbGFzcz0ibW9kZWwtc3R1ZGVudCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvIj5TdHVkZW50czwvYT48L3RoPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvIiBjbGFzcz0iY2hhbmdlbGluayI+Q2hhbmdlPC9hPjwvdGQ+CiAgICAgICAgICAgIAogICAgICAgICAgICA8L3RyPgogICAgICAgIAogICAgICAgICAgICA8dHIgY2xhc3M9Im1vZGVsLXN1cGVydmlzb3IiPgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0aCBzY29wZT0icm93Ij48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yLyI+U3VwZXJ2aXNvcnM8L2E+PC90aD4KICAgICAgICAgICAgCgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0ZD48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yL2FkZC8iIGNsYXNzPSJhZGRsaW5rIj5BZGQ8L2E+PC90ZD4KICAgICAgICAgICAgCgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0ZD48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC12YWNhbmN5Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS8iPlZhY2FuY3lzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgPC90YWJsZT4KICAgICAgICA8L2Rpdj4KICAgIAoKPC9kaXY+CgogICAgICAgIAo8ZGl2IGlkPSJjb250ZW50LXJlbGF0ZWQiPgogICAgPGRpdiBjbGFzcz0ibW9kdWxlIiBpZD0icmVjZW50LWFjdGlvbnMtbW9kdWxlIj4KICAgICAgICA8aDI+UmVjZW50IGFjdGlvbnM8L2gyPgogICAgICAgIDxoMz5NeSBhY3Rpb25zPC9oMz4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgPHVsIGNsYXNzPSJhY3Rpb25saXN0Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaSBjbGFzcz0iYWRkbGluayI+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS9jb21wYW55LzIvY2hhbmdlLyI+Q29tcGFueSBvYmplY3Q8L2E+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxici8+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz0ibWluaSBxdWlldCI+Q29tcGFueTwvc3Bhbj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgICAgPGxpIGNsYXNzPSJkZWxldGVsaW5rIj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIENvbXBhbnkgb2JqZWN0CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxici8+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz0ibWluaSBxdWlldCI+Q29tcGFueTwvc3Bhbj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgICAgPGxpIGNsYXNzPSJhZGRsaW5rIj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9hdXRoL3VzZXIvNC9jaGFuZ2UvIj5mYXJoYW5zdXBlcjwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5Vc2VyPC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8bGkgY2xhc3M9ImFkZGxpbmsiPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8zL2NoYW5nZS8iPmZhcmhhbmNvcnA8L2E+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxici8+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz0ibWluaSBxdWlldCI+VXNlcjwvc3Bhbj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgICAgPGxpIGNsYXNzPSJhZGRsaW5rIj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9hdXRoL3VzZXIvMi9jaGFuZ2UvIj5mYXJoYW48L2E+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxici8+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz0ibWluaSBxdWlldCI+VXNlcjwvc3Bhbj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgICAgPGxpIGNsYXNzPSJhZGRsaW5rIj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9jb3JlL2NvbXBhbnkvMS9jaGFuZ2UvIj5Db21wYW55IG9iamVjdDwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5Db21wYW55PC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8L3VsPgogICAgICAgICAgICAKICAgIDwvZGl2Pgo8L2Rpdj4KCiAgICAgICAgPGJyIGNsYXNzPSJjbGVhciIgLz4KICAgIDwvZGl2PgogICAgPCEtLSBFTkQgQ29udGVudCAtLT4KCiAgICA8ZGl2IGlkPSJmb290ZXIiPjwvZGl2Pgo8L2Rpdj4KPCEtLSBFTkQgQ29udGFpbmVyIC0tPgoKPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 14:55:49 GMT\", \"Expires\": \"Mon, 27 Mar 2017 14:55:49 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\"}" - } -}, -{ - "model": "silk.response", - "pk": "516c57f8-29d3-4f27-839f-23e869321160", - "fields": { - "request": "eaaf36e9-80f7-4239-8090-a3c0958b6b2c", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "51724e14-eac6-4a29-bce6-26ae6096c8ba", - "fields": { - "request": "41e0ea01-0962-4882-b829-399fe0299b9c", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "51737f06-e74c-4176-a869-65b8b8c8ee2d", - "fields": { - "request": "ede22694-0952-4bfb-9cd6-9825f7c15d40", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "52f3e27d-cb35-455f-ad61-bc0e5db227f0", - "fields": { - "request": "a3509633-9dc3-4d32-97d5-15f6eab38c27", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "53210c30-1508-4477-8e35-54bd46dab9ce", - "fields": { - "request": "9f1866c2-695a-4d1b-a636-685c5bd89033", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPlNlbGVjdCB2YWNhbmN5IHRvIGNoYW5nZSB8IERqYW5nbyBzaXRlIGFkbWluPC90aXRsZT4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvYmFzZS5jc3MiIC8+CgogIAogIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvYWRtaW4vY3NzL2NoYW5nZWxpc3RzLmNzcyIgLz4KICAKICAKICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KICAKICAKICAKCgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvY29yZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL2pxdWVyeS9qcXVlcnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2pxdWVyeS5pbml0LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hZG1pbi9SZWxhdGVkT2JqZWN0TG9va3Vwcy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvYWN0aW9ucy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdXJsaWZ5LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9wcmVwb3B1bGF0ZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL3hyZWdleHAveHJlZ2V4cC5qcyI+PC9zY3JpcHQ+Cgo8bWV0YSBuYW1lPSJyb2JvdHMiIGNvbnRlbnQ9Ik5PTkUsTk9BUkNISVZFIiAvPgo8L2hlYWQ+CgoKPGJvZHkgY2xhc3M9IiBhcHAtY29yZSBtb2RlbC12YWNhbmN5IGNoYW5nZS1saXN0IgogIGRhdGEtYWRtaW4tdXRjLW9mZnNldD0iMCI+Cgo8IS0tIENvbnRhaW5lciAtLT4KPGRpdiBpZD0iY29udGFpbmVyIj4KCiAgICAKICAgIDwhLS0gSGVhZGVyIC0tPgogICAgPGRpdiBpZD0iaGVhZGVyIj4KICAgICAgICA8ZGl2IGlkPSJicmFuZGluZyI+CiAgICAgICAgCjxoMSBpZD0ic2l0ZS1uYW1lIj48YSBocmVmPSIvYWRtaW4vIj5EamFuZ28gYWRtaW5pc3RyYXRpb248L2E+PC9oMT4KCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgPGRpdiBpZD0idXNlci10b29scyI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgV2VsY29tZSwKICAgICAgICAgICAgICAgIDxzdHJvbmc+a2FwZTwvc3Ryb25nPi4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iLyI+VmlldyBzaXRlPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9wYXNzd29yZF9jaGFuZ2UvIj5DaGFuZ2UgcGFzc3dvcmQ8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2xvZ291dC8iPkxvZyBvdXQ8L2E+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIAogICAgPC9kaXY+CiAgICA8IS0tIEVORCBIZWFkZXIgLS0+CiAgICAKPGRpdiBjbGFzcz0iYnJlYWRjcnVtYnMiPgo8YSBocmVmPSIvYWRtaW4vIj5Ib21lPC9hPgomcnNhcXVvOyA8YSBocmVmPSIvYWRtaW4vY29yZS8iPkNvcmU8L2E+CiZyc2FxdW87IFZhY2FuY3lzCjwvZGl2PgoKICAgIAoKICAgIAogICAgICAgIAogICAgCgogICAgPCEtLSBDb250ZW50IC0tPgogICAgPGRpdiBpZD0iY29udGVudCIgY2xhc3M9ImZsZXgiPgogICAgICAgIAogICAgICAgIDxoMT5TZWxlY3QgdmFjYW5jeSB0byBjaGFuZ2U8L2gxPgogICAgICAgIAogIDxkaXYgaWQ9ImNvbnRlbnQtbWFpbiI+CiAgICAKICAgICAgICA8dWwgY2xhc3M9Im9iamVjdC10b29scyI+CiAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaT4KICAgICAgICAgICAgICAKICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS92YWNhbmN5L2FkZC8iIGNsYXNzPSJhZGRsaW5rIj4KICAgICAgICAgICAgICAgIEFkZCB2YWNhbmN5CiAgICAgICAgICAgICAgPC9hPgogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgIAogICAgICAgIDwvdWw+CiAgICAKICAgIAogICAgPGRpdiBjbGFzcz0ibW9kdWxlIiBpZD0iY2hhbmdlbGlzdCI+CiAgICAgIAoKCiAgICAgIAoKCiAgICAgIAogICAgICAgIAogICAgICAKCiAgICAgIDxmb3JtIGlkPSJjaGFuZ2VsaXN0LWZvcm0iIG1ldGhvZD0icG9zdCIgbm92YWxpZGF0ZT48aW5wdXQgdHlwZT0naGlkZGVuJyBuYW1lPSdjc3JmbWlkZGxld2FyZXRva2VuJyB2YWx1ZT0nVEFhRnoyZDVtM2VEQ1lYdWxQQ0JmZXRxQU1DWlZHZTBpR2h1THk1MDkwcDJaNlpXNGc3MzdWYWF5SElPZkdhUCcgLz4KICAgICAgCgogICAgICAKICAgICAgICAgIAo8ZGl2IGNsYXNzPSJhY3Rpb25zIj4KICAgIDxsYWJlbD5BY3Rpb246IDxzZWxlY3QgbmFtZT0iYWN0aW9uIiByZXF1aXJlZD4KPG9wdGlvbiB2YWx1ZT0iIiBzZWxlY3RlZD0ic2VsZWN0ZWQiPi0tLS0tLS0tLTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSJkZWxldGVfc2VsZWN0ZWQiPkRlbGV0ZSBzZWxlY3RlZCB2YWNhbmN5czwvb3B0aW9uPgo8L3NlbGVjdD48L2xhYmVsPjxpbnB1dCBjbGFzcz0ic2VsZWN0LWFjcm9zcyIgbmFtZT0ic2VsZWN0X2Fjcm9zcyIgdHlwZT0iaGlkZGVuIiB2YWx1ZT0iMCIgLz4KICAgIDxidXR0b24gdHlwZT0ic3VibWl0IiBjbGFzcz0iYnV0dG9uIiB0aXRsZT0iUnVuIHRoZSBzZWxlY3RlZCBhY3Rpb24iIG5hbWU9ImluZGV4IiB2YWx1ZT0iMCI+R288L2J1dHRvbj4KICAgIAogICAgICAgIDxzcGFuIGNsYXNzPSJhY3Rpb24tY291bnRlciIgZGF0YS1hY3Rpb25zLWljbnQ9IjEiPjAgb2YgMSBzZWxlY3RlZDwvc3Bhbj4KICAgICAgICAKICAgIAo8L2Rpdj4KCiAgICAgICAgICAKCgo8ZGl2IGNsYXNzPSJyZXN1bHRzIj4KPHRhYmxlIGlkPSJyZXN1bHRfbGlzdCI+Cjx0aGVhZD4KPHRyPgoKPHRoIHNjb3BlPSJjb2wiICBjbGFzcz0iYWN0aW9uLWNoZWNrYm94LWNvbHVtbiI+CiAgIAogICA8ZGl2IGNsYXNzPSJ0ZXh0Ij48c3Bhbj48aW5wdXQgdHlwZT0iY2hlY2tib3giIGlkPSJhY3Rpb24tdG9nZ2xlIiAvPjwvc3Bhbj48L2Rpdj4KICAgPGRpdiBjbGFzcz0iY2xlYXIiPjwvZGl2Pgo8L3RoPgo8dGggc2NvcGU9ImNvbCIgIGNsYXNzPSJjb2x1bW4tX19zdHJfXyI+CiAgIAogICA8ZGl2IGNsYXNzPSJ0ZXh0Ij48c3Bhbj5WYWNhbmN5PC9zcGFuPjwvZGl2PgogICA8ZGl2IGNsYXNzPSJjbGVhciI+PC9kaXY+CjwvdGg+CjwvdHI+CjwvdGhlYWQ+Cjx0Ym9keT4KCgo8dHIgY2xhc3M9InJvdzEiPjx0ZCBjbGFzcz0iYWN0aW9uLWNoZWNrYm94Ij48aW5wdXQgY2xhc3M9ImFjdGlvbi1zZWxlY3QiIG5hbWU9Il9zZWxlY3RlZF9hY3Rpb24iIHR5cGU9ImNoZWNrYm94IiB2YWx1ZT0iMSIgLz48L3RkPjx0aCBjbGFzcz0iZmllbGQtX19zdHJfXyI+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS8xL2NoYW5nZS8iPlZhY2FuY3kgb2JqZWN0PC9hPjwvdGg+PC90cj4KCjwvdGJvZHk+CjwvdGFibGU+CjwvZGl2PgoKCiAgICAgICAgICAKICAgICAgCiAgICAgIAoKPHAgY2xhc3M9InBhZ2luYXRvciI+CgoxIHZhY2FuY3kKCgo8L3A+CgogICAgICA8L2Zvcm0+CiAgICA8L2Rpdj4KICA8L2Rpdj4KCiAgICAgICAgCiAgICAgICAgPGJyIGNsYXNzPSJjbGVhciIgLz4KICAgIDwvZGl2PgogICAgPCEtLSBFTkQgQ29udGVudCAtLT4KCiAgICA8ZGl2IGlkPSJmb290ZXIiPjwvZGl2Pgo8L2Rpdj4KPCEtLSBFTkQgQ29udGFpbmVyIC0tPgoKPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 17:17:53 GMT\", \"Expires\": \"Mon, 27 Mar 2017 17:17:53 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "53653d6c-c2e0-489e-bd71-c8e1884aedcd", - "fields": { - "request": "d37159f8-b02d-4f6c-949e-d5d7497242f8", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPlNpdGUgYWRtaW5pc3RyYXRpb24gfCBEamFuZ28gc2l0ZSBhZG1pbjwvdGl0bGU+CjxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvYWRtaW4vY3NzL2Jhc2UuY3NzIiAvPgo8bGluayByZWw9InN0eWxlc2hlZXQiIHR5cGU9InRleHQvY3NzIiBocmVmPSIvYXNzZXRzL2FkbWluL2Nzcy9kYXNoYm9hcmQuY3NzIiAvPgoKCjxtZXRhIG5hbWU9InJvYm90cyIgY29udGVudD0iTk9ORSxOT0FSQ0hJVkUiIC8+CjwvaGVhZD4KCgo8Ym9keSBjbGFzcz0iIGRhc2hib2FyZCIKICBkYXRhLWFkbWluLXV0Yy1vZmZzZXQ9IjAiPgoKPCEtLSBDb250YWluZXIgLS0+CjxkaXYgaWQ9ImNvbnRhaW5lciI+CgogICAgCiAgICA8IS0tIEhlYWRlciAtLT4KICAgIDxkaXYgaWQ9ImhlYWRlciI+CiAgICAgICAgPGRpdiBpZD0iYnJhbmRpbmciPgogICAgICAgIAo8aDEgaWQ9InNpdGUtbmFtZSI+PGEgaHJlZj0iL2FkbWluLyI+RGphbmdvIGFkbWluaXN0cmF0aW9uPC9hPjwvaDE+CgogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIDxkaXYgaWQ9InVzZXItdG9vbHMiPgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIFdlbGNvbWUsCiAgICAgICAgICAgICAgICA8c3Ryb25nPmthcGU8L3N0cm9uZz4uCiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii8iPlZpZXcgc2l0ZTwvYT4gLwogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vcGFzc3dvcmRfY2hhbmdlLyI+Q2hhbmdlIHBhc3N3b3JkPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9sb2dvdXQvIj5Mb2cgb3V0PC9hPgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgICAgICAKICAgICAgICAKICAgICAgICAKICAgIDwvZGl2PgogICAgPCEtLSBFTkQgSGVhZGVyIC0tPgogICAgCiAgICAKCiAgICAKICAgICAgICAKICAgIAoKICAgIDwhLS0gQ29udGVudCAtLT4KICAgIDxkaXYgaWQ9ImNvbnRlbnQiIGNsYXNzPSJjb2xNUyI+CiAgICAgICAgCiAgICAgICAgPGgxPlNpdGUgYWRtaW5pc3RyYXRpb248L2gxPgogICAgICAgIAo8ZGl2IGlkPSJjb250ZW50LW1haW4iPgoKCiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJhcHAtYXV0aCBtb2R1bGUiPgogICAgICAgIDx0YWJsZT4KICAgICAgICA8Y2FwdGlvbj4KICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2F1dGgvIiBjbGFzcz0ic2VjdGlvbiIgdGl0bGU9Ik1vZGVscyBpbiB0aGUgQXV0aGVudGljYXRpb24gYW5kIEF1dGhvcml6YXRpb24gYXBwbGljYXRpb24iPkF1dGhlbnRpY2F0aW9uIGFuZCBBdXRob3JpemF0aW9uPC9hPgogICAgICAgIDwvY2FwdGlvbj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1ncm91cCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL2dyb3VwLyI+R3JvdXBzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvZ3JvdXAvYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL2dyb3VwLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC11c2VyIj4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8iPlVzZXJzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgPC90YWJsZT4KICAgICAgICA8L2Rpdj4KICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImFwcC1jb3JlIG1vZHVsZSI+CiAgICAgICAgPHRhYmxlPgogICAgICAgIDxjYXB0aW9uPgogICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS8iIGNsYXNzPSJzZWN0aW9uIiB0aXRsZT0iTW9kZWxzIGluIHRoZSBDb3JlIGFwcGxpY2F0aW9uIj5Db3JlPC9hPgogICAgICAgIDwvY2FwdGlvbj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1hcHBsaWNhdGlvbiI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL2FwcGxpY2F0aW9uLyI+QXBwbGljYXRpb25zPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvYXBwbGljYXRpb24vYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL2FwcGxpY2F0aW9uLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1jb21wYW55Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8iPkNvbXBhbnlzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgICAgIDx0ciBjbGFzcz0ibW9kZWwtc3R1ZGVudCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvIj5TdHVkZW50czwvYT48L3RoPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvIiBjbGFzcz0iY2hhbmdlbGluayI+Q2hhbmdlPC9hPjwvdGQ+CiAgICAgICAgICAgIAogICAgICAgICAgICA8L3RyPgogICAgICAgIAogICAgICAgICAgICA8dHIgY2xhc3M9Im1vZGVsLXN1cGVydmlzb3IiPgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0aCBzY29wZT0icm93Ij48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yLyI+U3VwZXJ2aXNvcnM8L2E+PC90aD4KICAgICAgICAgICAgCgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0ZD48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yL2FkZC8iIGNsYXNzPSJhZGRsaW5rIj5BZGQ8L2E+PC90ZD4KICAgICAgICAgICAgCgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0ZD48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC12YWNhbmN5Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS8iPlZhY2FuY3lzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgPC90YWJsZT4KICAgICAgICA8L2Rpdj4KICAgIAoKPC9kaXY+CgogICAgICAgIAo8ZGl2IGlkPSJjb250ZW50LXJlbGF0ZWQiPgogICAgPGRpdiBjbGFzcz0ibW9kdWxlIiBpZD0icmVjZW50LWFjdGlvbnMtbW9kdWxlIj4KICAgICAgICA8aDI+UmVjZW50IGFjdGlvbnM8L2gyPgogICAgICAgIDxoMz5NeSBhY3Rpb25zPC9oMz4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgPHVsIGNsYXNzPSJhY3Rpb25saXN0Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaSBjbGFzcz0iYWRkbGluayI+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS9jb21wYW55LzIvY2hhbmdlLyI+Q29tcGFueSBvYmplY3Q8L2E+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxici8+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz0ibWluaSBxdWlldCI+Q29tcGFueTwvc3Bhbj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgICAgPGxpIGNsYXNzPSJkZWxldGVsaW5rIj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIENvbXBhbnkgb2JqZWN0CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxici8+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz0ibWluaSBxdWlldCI+Q29tcGFueTwvc3Bhbj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgICAgPGxpIGNsYXNzPSJhZGRsaW5rIj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9hdXRoL3VzZXIvNC9jaGFuZ2UvIj5mYXJoYW5zdXBlcjwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5Vc2VyPC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8bGkgY2xhc3M9ImFkZGxpbmsiPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8zL2NoYW5nZS8iPmZhcmhhbmNvcnA8L2E+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxici8+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz0ibWluaSBxdWlldCI+VXNlcjwvc3Bhbj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgICAgPGxpIGNsYXNzPSJhZGRsaW5rIj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9hdXRoL3VzZXIvMi9jaGFuZ2UvIj5mYXJoYW48L2E+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxici8+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz0ibWluaSBxdWlldCI+VXNlcjwvc3Bhbj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgICAgPGxpIGNsYXNzPSJhZGRsaW5rIj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9jb3JlL2NvbXBhbnkvMS9jaGFuZ2UvIj5Db21wYW55IG9iamVjdDwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5Db21wYW55PC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8L3VsPgogICAgICAgICAgICAKICAgIDwvZGl2Pgo8L2Rpdj4KCiAgICAgICAgPGJyIGNsYXNzPSJjbGVhciIgLz4KICAgIDwvZGl2PgogICAgPCEtLSBFTkQgQ29udGVudCAtLT4KCiAgICA8ZGl2IGlkPSJmb290ZXIiPjwvZGl2Pgo8L2Rpdj4KPCEtLSBFTkQgQ29udGFpbmVyIC0tPgoKPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 15:21:41 GMT\", \"Expires\": \"Mon, 27 Mar 2017 15:21:41 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\"}" - } -}, -{ - "model": "silk.response", - "pk": "5411de4d-1a31-4c5b-b8fa-616349239a9f", - "fields": { - "request": "484cfe5c-b960-4825-a056-c012416b2bef", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "54728e52-a35a-4000-8355-314449045a8f", - "fields": { - "request": "1ce5db39-e66d-43fb-a619-96fbd6480be8", - "status_code": 404, - "raw_body": "eyJkZXRhaWwiOiJOb3QgZm91bmQuIn0=", - "body": "{\n \"detail\": \"Not found.\"\n}", - "encoded_headers": "{\"Content-Type\": \"application/json\", \"Allow\": \"POST, OPTIONS\", \"Vary\": \"Accept\"}" - } -}, -{ - "model": "silk.response", - "pk": "553bef3f-5d28-4aed-a77f-25b9065d9e67", - "fields": { - "request": "99750c5e-39b0-45ff-a581-ce05b2143394", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPlNpdGUgYWRtaW5pc3RyYXRpb24gfCBEamFuZ28gc2l0ZSBhZG1pbjwvdGl0bGU+CjxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvYWRtaW4vY3NzL2Jhc2UuY3NzIiAvPgo8bGluayByZWw9InN0eWxlc2hlZXQiIHR5cGU9InRleHQvY3NzIiBocmVmPSIvYXNzZXRzL2FkbWluL2Nzcy9kYXNoYm9hcmQuY3NzIiAvPgoKCjxtZXRhIG5hbWU9InJvYm90cyIgY29udGVudD0iTk9ORSxOT0FSQ0hJVkUiIC8+CjwvaGVhZD4KCgo8Ym9keSBjbGFzcz0iIGRhc2hib2FyZCIKICBkYXRhLWFkbWluLXV0Yy1vZmZzZXQ9IjAiPgoKPCEtLSBDb250YWluZXIgLS0+CjxkaXYgaWQ9ImNvbnRhaW5lciI+CgogICAgCiAgICA8IS0tIEhlYWRlciAtLT4KICAgIDxkaXYgaWQ9ImhlYWRlciI+CiAgICAgICAgPGRpdiBpZD0iYnJhbmRpbmciPgogICAgICAgIAo8aDEgaWQ9InNpdGUtbmFtZSI+PGEgaHJlZj0iL2FkbWluLyI+RGphbmdvIGFkbWluaXN0cmF0aW9uPC9hPjwvaDE+CgogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIDxkaXYgaWQ9InVzZXItdG9vbHMiPgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIFdlbGNvbWUsCiAgICAgICAgICAgICAgICA8c3Ryb25nPmthcGU8L3N0cm9uZz4uCiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii8iPlZpZXcgc2l0ZTwvYT4gLwogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vcGFzc3dvcmRfY2hhbmdlLyI+Q2hhbmdlIHBhc3N3b3JkPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9sb2dvdXQvIj5Mb2cgb3V0PC9hPgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgICAgICAKICAgICAgICAKICAgICAgICAKICAgIDwvZGl2PgogICAgPCEtLSBFTkQgSGVhZGVyIC0tPgogICAgCiAgICAKCiAgICAKICAgICAgICAKICAgIAoKICAgIDwhLS0gQ29udGVudCAtLT4KICAgIDxkaXYgaWQ9ImNvbnRlbnQiIGNsYXNzPSJjb2xNUyI+CiAgICAgICAgCiAgICAgICAgPGgxPlNpdGUgYWRtaW5pc3RyYXRpb248L2gxPgogICAgICAgIAo8ZGl2IGlkPSJjb250ZW50LW1haW4iPgoKCiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJhcHAtYXV0aCBtb2R1bGUiPgogICAgICAgIDx0YWJsZT4KICAgICAgICA8Y2FwdGlvbj4KICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2F1dGgvIiBjbGFzcz0ic2VjdGlvbiIgdGl0bGU9Ik1vZGVscyBpbiB0aGUgQXV0aGVudGljYXRpb24gYW5kIEF1dGhvcml6YXRpb24gYXBwbGljYXRpb24iPkF1dGhlbnRpY2F0aW9uIGFuZCBBdXRob3JpemF0aW9uPC9hPgogICAgICAgIDwvY2FwdGlvbj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1ncm91cCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL2dyb3VwLyI+R3JvdXBzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvZ3JvdXAvYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL2dyb3VwLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC11c2VyIj4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8iPlVzZXJzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgPC90YWJsZT4KICAgICAgICA8L2Rpdj4KICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImFwcC1jb3JlIG1vZHVsZSI+CiAgICAgICAgPHRhYmxlPgogICAgICAgIDxjYXB0aW9uPgogICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS8iIGNsYXNzPSJzZWN0aW9uIiB0aXRsZT0iTW9kZWxzIGluIHRoZSBDb3JlIGFwcGxpY2F0aW9uIj5Db3JlPC9hPgogICAgICAgIDwvY2FwdGlvbj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1hcHBsaWNhdGlvbiI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL2FwcGxpY2F0aW9uLyI+QXBwbGljYXRpb25zPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvYXBwbGljYXRpb24vYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL2FwcGxpY2F0aW9uLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1jb21wYW55Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8iPkNvbXBhbnlzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgICAgIDx0ciBjbGFzcz0ibW9kZWwtc3R1ZGVudCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvIj5TdHVkZW50czwvYT48L3RoPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvIiBjbGFzcz0iY2hhbmdlbGluayI+Q2hhbmdlPC9hPjwvdGQ+CiAgICAgICAgICAgIAogICAgICAgICAgICA8L3RyPgogICAgICAgIAogICAgICAgICAgICA8dHIgY2xhc3M9Im1vZGVsLXN1cGVydmlzb3IiPgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0aCBzY29wZT0icm93Ij48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yLyI+U3VwZXJ2aXNvcnM8L2E+PC90aD4KICAgICAgICAgICAgCgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0ZD48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yL2FkZC8iIGNsYXNzPSJhZGRsaW5rIj5BZGQ8L2E+PC90ZD4KICAgICAgICAgICAgCgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0ZD48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC12YWNhbmN5Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS8iPlZhY2FuY3lzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgPC90YWJsZT4KICAgICAgICA8L2Rpdj4KICAgIAoKPC9kaXY+CgogICAgICAgIAo8ZGl2IGlkPSJjb250ZW50LXJlbGF0ZWQiPgogICAgPGRpdiBjbGFzcz0ibW9kdWxlIiBpZD0icmVjZW50LWFjdGlvbnMtbW9kdWxlIj4KICAgICAgICA8aDI+UmVjZW50IGFjdGlvbnM8L2gyPgogICAgICAgIDxoMz5NeSBhY3Rpb25zPC9oMz4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgPHVsIGNsYXNzPSJhY3Rpb25saXN0Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaSBjbGFzcz0iYWRkbGluayI+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vYXV0aC91c2VyLzQvY2hhbmdlLyI+ZmFyaGFuc3VwZXI8L2E+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxici8+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz0ibWluaSBxdWlldCI+VXNlcjwvc3Bhbj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgICAgPGxpIGNsYXNzPSJhZGRsaW5rIj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9hdXRoL3VzZXIvMy9jaGFuZ2UvIj5mYXJoYW5jb3JwPC9hPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YnIvPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9Im1pbmkgcXVpZXQiPlVzZXI8L3NwYW4+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgPC9saT4KICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaSBjbGFzcz0iYWRkbGluayI+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vYXV0aC91c2VyLzIvY2hhbmdlLyI+ZmFyaGFuPC9hPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YnIvPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9Im1pbmkgcXVpZXQiPlVzZXI8L3NwYW4+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgPC9saT4KICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaSBjbGFzcz0iYWRkbGluayI+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS9jb21wYW55LzEvY2hhbmdlLyI+Q29tcGFueSBvYmplY3Q8L2E+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxici8+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz0ibWluaSBxdWlldCI+Q29tcGFueTwvc3Bhbj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgICAgPC91bD4KICAgICAgICAgICAgCiAgICA8L2Rpdj4KPC9kaXY+CgogICAgICAgIDxiciBjbGFzcz0iY2xlYXIiIC8+CiAgICA8L2Rpdj4KICAgIDwhLS0gRU5EIENvbnRlbnQgLS0+CgogICAgPGRpdiBpZD0iZm9vdGVyIj48L2Rpdj4KPC9kaXY+CjwhLS0gRU5EIENvbnRhaW5lciAtLT4KCjwvYm9keT4KPC9odG1sPgo=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 14:55:12 GMT\", \"Expires\": \"Mon, 27 Mar 2017 14:55:12 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\"}" - } -}, -{ - "model": "silk.response", - "pk": "56ce2744-1b4a-499e-8b4e-815cc601d3eb", - "fields": { - "request": "cc0f2a90-9739-4675-9a28-776afa4004d7", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "571de832-bf6b-4f11-93ea-b55c9c787b86", - "fields": { - "request": "f6347d4d-6662-4b8d-baa2-2f87a116b484", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "57f1b19e-74ad-47b8-9047-5da21ba4f1a3", - "fields": { - "request": "2b21a674-7e8b-4dfe-ab7d-5b2a3e22265e", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPlNlbGVjdCBzdHVkZW50IHRvIGNoYW5nZSB8IERqYW5nbyBzaXRlIGFkbWluPC90aXRsZT4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvYmFzZS5jc3MiIC8+CgogIAogIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvYWRtaW4vY3NzL2NoYW5nZWxpc3RzLmNzcyIgLz4KICAKICAKICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KICAKICAKICAKCgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvY29yZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL2pxdWVyeS9qcXVlcnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2pxdWVyeS5pbml0LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hZG1pbi9SZWxhdGVkT2JqZWN0TG9va3Vwcy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvYWN0aW9ucy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdXJsaWZ5LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9wcmVwb3B1bGF0ZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL3hyZWdleHAveHJlZ2V4cC5qcyI+PC9zY3JpcHQ+Cgo8bWV0YSBuYW1lPSJyb2JvdHMiIGNvbnRlbnQ9Ik5PTkUsTk9BUkNISVZFIiAvPgo8L2hlYWQ+CgoKPGJvZHkgY2xhc3M9IiBhcHAtY29yZSBtb2RlbC1zdHVkZW50IGNoYW5nZS1saXN0IgogIGRhdGEtYWRtaW4tdXRjLW9mZnNldD0iMCI+Cgo8IS0tIENvbnRhaW5lciAtLT4KPGRpdiBpZD0iY29udGFpbmVyIj4KCiAgICAKICAgIDwhLS0gSGVhZGVyIC0tPgogICAgPGRpdiBpZD0iaGVhZGVyIj4KICAgICAgICA8ZGl2IGlkPSJicmFuZGluZyI+CiAgICAgICAgCjxoMSBpZD0ic2l0ZS1uYW1lIj48YSBocmVmPSIvYWRtaW4vIj5EamFuZ28gYWRtaW5pc3RyYXRpb248L2E+PC9oMT4KCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgPGRpdiBpZD0idXNlci10b29scyI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgV2VsY29tZSwKICAgICAgICAgICAgICAgIDxzdHJvbmc+a2FwZTwvc3Ryb25nPi4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iLyI+VmlldyBzaXRlPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9wYXNzd29yZF9jaGFuZ2UvIj5DaGFuZ2UgcGFzc3dvcmQ8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2xvZ291dC8iPkxvZyBvdXQ8L2E+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIAogICAgPC9kaXY+CiAgICA8IS0tIEVORCBIZWFkZXIgLS0+CiAgICAKPGRpdiBjbGFzcz0iYnJlYWRjcnVtYnMiPgo8YSBocmVmPSIvYWRtaW4vIj5Ib21lPC9hPgomcnNhcXVvOyA8YSBocmVmPSIvYWRtaW4vY29yZS8iPkNvcmU8L2E+CiZyc2FxdW87IFN0dWRlbnRzCjwvZGl2PgoKICAgIAoKICAgIAogICAgICAgIAogICAgCgogICAgPCEtLSBDb250ZW50IC0tPgogICAgPGRpdiBpZD0iY29udGVudCIgY2xhc3M9ImZsZXgiPgogICAgICAgIAogICAgICAgIDxoMT5TZWxlY3Qgc3R1ZGVudCB0byBjaGFuZ2U8L2gxPgogICAgICAgIAogIDxkaXYgaWQ9ImNvbnRlbnQtbWFpbiI+CiAgICAKICAgICAgICA8dWwgY2xhc3M9Im9iamVjdC10b29scyI+CiAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaT4KICAgICAgICAgICAgICAKICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS9zdHVkZW50L2FkZC8iIGNsYXNzPSJhZGRsaW5rIj4KICAgICAgICAgICAgICAgIEFkZCBzdHVkZW50CiAgICAgICAgICAgICAgPC9hPgogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgIAogICAgICAgIDwvdWw+CiAgICAKICAgIAogICAgPGRpdiBjbGFzcz0ibW9kdWxlIiBpZD0iY2hhbmdlbGlzdCI+CiAgICAgIAoKCiAgICAgIAoKCiAgICAgIAogICAgICAgIAogICAgICAKCiAgICAgIDxmb3JtIGlkPSJjaGFuZ2VsaXN0LWZvcm0iIG1ldGhvZD0icG9zdCIgbm92YWxpZGF0ZT48aW5wdXQgdHlwZT0naGlkZGVuJyBuYW1lPSdjc3JmbWlkZGxld2FyZXRva2VuJyB2YWx1ZT0neGZncm9TbHZvN2pwV08zM3pab25VRG9hM2dtSmg1dUNXbG5nQW9kcWI0dU9qVzV2aXFUUE1rNVUxYnN5QjVxcicgLz4KICAgICAgCgogICAgICAKICAgICAgICAgIAogICAgICAgICAgCgoKCiAgICAgICAgICAKICAgICAgCiAgICAgIAoKPHAgY2xhc3M9InBhZ2luYXRvciI+CgowIHN0dWRlbnRzCgoKPC9wPgoKICAgICAgPC9mb3JtPgogICAgPC9kaXY+CiAgPC9kaXY+CgogICAgICAgIAogICAgICAgIDxiciBjbGFzcz0iY2xlYXIiIC8+CiAgICA8L2Rpdj4KICAgIDwhLS0gRU5EIENvbnRlbnQgLS0+CgogICAgPGRpdiBpZD0iZm9vdGVyIj48L2Rpdj4KPC9kaXY+CjwhLS0gRU5EIENvbnRhaW5lciAtLT4KCjwvYm9keT4KPC9odG1sPgo=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 14:55:54 GMT\", \"Expires\": \"Mon, 27 Mar 2017 14:55:54 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "583ce754-6655-4070-a8af-7fc3655835cf", - "fields": { - "request": "5edf1ead-a791-41e2-a2da-0b8d475b8176", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "5a64320f-d271-4ea8-b577-b39051213ce1", - "fields": { - "request": "cfaac135-fc01-41ee-b1a3-4c93813a0465", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "5a802f04-3d58-401d-8b28-a3077affa3e0", - "fields": { - "request": "c7031832-23a9-4c25-a883-9fa0eedf6c39", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPkFkZCB2YWNhbmN5IHwgRGphbmdvIHNpdGUgYWRtaW48L3RpdGxlPgo8bGluayByZWw9InN0eWxlc2hlZXQiIHR5cGU9InRleHQvY3NzIiBocmVmPSIvYXNzZXRzL2FkbWluL2Nzcy9iYXNlLmNzcyIgLz4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvZm9ybXMuY3NzIiAvPgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9jb3JlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IvanF1ZXJ5L2pxdWVyeS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvanF1ZXJ5LmluaXQuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2FkbWluL1JlbGF0ZWRPYmplY3RMb29rdXBzLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hY3Rpb25zLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy91cmxpZnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL3ByZXBvcHVsYXRlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IveHJlZ2V4cC94cmVnZXhwLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9jYWxlbmRhci5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvYWRtaW4vRGF0ZVRpbWVTaG9ydGN1dHMuanMiPjwvc2NyaXB0PgoKPG1ldGEgbmFtZT0icm9ib3RzIiBjb250ZW50PSJOT05FLE5PQVJDSElWRSIgLz4KPC9oZWFkPgoKCjxib2R5IGNsYXNzPSIgYXBwLWNvcmUgbW9kZWwtdmFjYW5jeSBjaGFuZ2UtZm9ybSIKICBkYXRhLWFkbWluLXV0Yy1vZmZzZXQ9IjAiPgoKPCEtLSBDb250YWluZXIgLS0+CjxkaXYgaWQ9ImNvbnRhaW5lciI+CgogICAgCiAgICA8IS0tIEhlYWRlciAtLT4KICAgIDxkaXYgaWQ9ImhlYWRlciI+CiAgICAgICAgPGRpdiBpZD0iYnJhbmRpbmciPgogICAgICAgIAo8aDEgaWQ9InNpdGUtbmFtZSI+PGEgaHJlZj0iL2FkbWluLyI+RGphbmdvIGFkbWluaXN0cmF0aW9uPC9hPjwvaDE+CgogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIDxkaXYgaWQ9InVzZXItdG9vbHMiPgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIFdlbGNvbWUsCiAgICAgICAgICAgICAgICA8c3Ryb25nPmthcGU8L3N0cm9uZz4uCiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii8iPlZpZXcgc2l0ZTwvYT4gLwogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vcGFzc3dvcmRfY2hhbmdlLyI+Q2hhbmdlIHBhc3N3b3JkPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9sb2dvdXQvIj5Mb2cgb3V0PC9hPgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgICAgICAKICAgICAgICAKICAgICAgICAKICAgIDwvZGl2PgogICAgPCEtLSBFTkQgSGVhZGVyIC0tPgogICAgCjxkaXYgY2xhc3M9ImJyZWFkY3J1bWJzIj4KPGEgaHJlZj0iL2FkbWluLyI+SG9tZTwvYT4KJnJzYXF1bzsgPGEgaHJlZj0iL2FkbWluL2NvcmUvIj5Db3JlPC9hPgomcnNhcXVvOyA8YSBocmVmPSIvYWRtaW4vY29yZS92YWNhbmN5LyI+VmFjYW5jeXM8L2E+CiZyc2FxdW87IEFkZCB2YWNhbmN5CjwvZGl2PgoKICAgIAoKICAgIAogICAgICAgIAogICAgCgogICAgPCEtLSBDb250ZW50IC0tPgogICAgPGRpdiBpZD0iY29udGVudCIgY2xhc3M9ImNvbE0iPgogICAgICAgIAogICAgICAgIDxoMT5BZGQgdmFjYW5jeTwvaDE+CiAgICAgICAgPGRpdiBpZD0iY29udGVudC1tYWluIj4KCgoKPGZvcm0gZW5jdHlwZT0ibXVsdGlwYXJ0L2Zvcm0tZGF0YSIgYWN0aW9uPSIiIG1ldGhvZD0icG9zdCIgaWQ9InZhY2FuY3lfZm9ybSIgbm92YWxpZGF0ZT48aW5wdXQgdHlwZT0naGlkZGVuJyBuYW1lPSdjc3JmbWlkZGxld2FyZXRva2VuJyB2YWx1ZT0nVWJaQU52Z0hoaWVMQlBMOGF2MGQyZUh1RGdzeFJCckxqaDZwWjE4QzRmcGFZWE5BVFd2RlVWb2VCYnltYkJuQScgLz4KPGRpdj4KCgoKCgoKCiAgPGZpZWxkc2V0IGNsYXNzPSJtb2R1bGUgYWxpZ25lZCAiPgogICAgCiAgICAKICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImZvcm0tcm93IGZpZWxkLWNvbXBhbnkiPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgY2xhc3M9InJlcXVpcmVkIiBmb3I9ImlkX2NvbXBhbnkiPkNvbXBhbnk6PC9sYWJlbD4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAKPGRpdiBjbGFzcz0icmVsYXRlZC13aWRnZXQtd3JhcHBlciI+CiAgICA8c2VsZWN0IGlkPSJpZF9jb21wYW55IiBuYW1lPSJjb21wYW55IiByZXF1aXJlZD4KPG9wdGlvbiB2YWx1ZT0iIiBzZWxlY3RlZD0ic2VsZWN0ZWQiPi0tLS0tLS0tLTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIyIj5Db21wYW55IG9iamVjdDwvb3B0aW9uPgo8L3NlbGVjdD4KICAgIAogICAgICAgIAogICAgICAgIDxhIGNsYXNzPSJyZWxhdGVkLXdpZGdldC13cmFwcGVyLWxpbmsgY2hhbmdlLXJlbGF0ZWQiIGlkPSJjaGFuZ2VfaWRfY29tcGFueSIKICAgICAgICAgICAgZGF0YS1ocmVmLXRlbXBsYXRlPSIvYWRtaW4vY29yZS9jb21wYW55L19fZmtfXy9jaGFuZ2UvP190b19maWVsZD1pZCZhbXA7X3BvcHVwPTEiCiAgICAgICAgICAgIHRpdGxlPSJDaGFuZ2Ugc2VsZWN0ZWQgY29tcGFueSI+CiAgICAgICAgICAgIDxpbWcgc3JjPSIvYXNzZXRzL2FkbWluL2ltZy9pY29uLWNoYW5nZWxpbmsuc3ZnIiBhbHQ9IkNoYW5nZSIvPgogICAgICAgIDwvYT4KICAgICAgICAKICAgICAgICAKICAgICAgICA8YSBjbGFzcz0icmVsYXRlZC13aWRnZXQtd3JhcHBlci1saW5rIGFkZC1yZWxhdGVkIiBpZD0iYWRkX2lkX2NvbXBhbnkiCiAgICAgICAgICAgIGhyZWY9Ii9hZG1pbi9jb3JlL2NvbXBhbnkvYWRkLz9fdG9fZmllbGQ9aWQmYW1wO19wb3B1cD0xIgogICAgICAgICAgICB0aXRsZT0iQWRkIGFub3RoZXIgY29tcGFueSI+CiAgICAgICAgICAgIDxpbWcgc3JjPSIvYXNzZXRzL2FkbWluL2ltZy9pY29uLWFkZGxpbmsuc3ZnIiBhbHQ9IkFkZCIvPgogICAgICAgIDwvYT4KICAgICAgICAKICAgICAgICAKICAgIAo8L2Rpdj4KCiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPC9kaXY+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgCiAgICAgICAgPGRpdiBjbGFzcz0iZm9ybS1yb3cgZmllbGQtdmVyaWZpZWQiPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPSJjaGVja2JveC1yb3ciPgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8aW5wdXQgaWQ9ImlkX3ZlcmlmaWVkIiBuYW1lPSJ2ZXJpZmllZCIgdHlwZT0iY2hlY2tib3giIC8+PGxhYmVsIGNsYXNzPSJ2Q2hlY2tib3hMYWJlbCIgZm9yPSJpZF92ZXJpZmllZCI+VmVyaWZpZWQ8L2xhYmVsPgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPC9kaXY+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgCiAgICAgICAgPGRpdiBjbGFzcz0iZm9ybS1yb3cgZmllbGQtb3Blbl90aW1lIj4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGRpdj4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPGxhYmVsIGNsYXNzPSJyZXF1aXJlZCIgZm9yPSJpZF9vcGVuX3RpbWVfMCI+T3BlbiB0aW1lOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgPHAgY2xhc3M9ImRhdGV0aW1lIj5EYXRlOiA8aW5wdXQgY2xhc3M9InZEYXRlRmllbGQiIGlkPSJpZF9vcGVuX3RpbWVfMCIgbmFtZT0ib3Blbl90aW1lXzAiIHNpemU9IjEwIiB0eXBlPSJ0ZXh0IiByZXF1aXJlZCAvPjxiciAvPlRpbWU6IDxpbnB1dCBjbGFzcz0idlRpbWVGaWVsZCIgaWQ9ImlkX29wZW5fdGltZV8xIiBuYW1lPSJvcGVuX3RpbWVfMSIgc2l6ZT0iOCIgdHlwZT0idGV4dCIgcmVxdWlyZWQgLz48L3A+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPC9kaXY+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgCiAgICAgICAgPGRpdiBjbGFzcz0iZm9ybS1yb3cgZmllbGQtY2xvc2VfdGltZSI+CiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXY+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxsYWJlbCBjbGFzcz0icmVxdWlyZWQiIGZvcj0iaWRfY2xvc2VfdGltZV8wIj5DbG9zZSB0aW1lOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgPHAgY2xhc3M9ImRhdGV0aW1lIj5EYXRlOiA8aW5wdXQgY2xhc3M9InZEYXRlRmllbGQiIGlkPSJpZF9jbG9zZV90aW1lXzAiIG5hbWU9ImNsb3NlX3RpbWVfMCIgc2l6ZT0iMTAiIHR5cGU9InRleHQiIHJlcXVpcmVkIC8+PGJyIC8+VGltZTogPGlucHV0IGNsYXNzPSJ2VGltZUZpZWxkIiBpZD0iaWRfY2xvc2VfdGltZV8xIiBuYW1lPSJjbG9zZV90aW1lXzEiIHNpemU9IjgiIHR5cGU9InRleHQiIHJlcXVpcmVkIC8+PC9wPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDwvZGl2PgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgIAo8L2ZpZWxkc2V0PgoKCgoKCgoKCgoKCgoKPGRpdiBjbGFzcz0ic3VibWl0LXJvdyI+CjxpbnB1dCB0eXBlPSJzdWJtaXQiIHZhbHVlPSJTYXZlIiBjbGFzcz0iZGVmYXVsdCIgbmFtZT0iX3NhdmUiIC8+CgoKPGlucHV0IHR5cGU9InN1Ym1pdCIgdmFsdWU9IlNhdmUgYW5kIGFkZCBhbm90aGVyIiBuYW1lPSJfYWRkYW5vdGhlciIgLz4KPGlucHV0IHR5cGU9InN1Ym1pdCIgdmFsdWU9IlNhdmUgYW5kIGNvbnRpbnVlIGVkaXRpbmciIG5hbWU9Il9jb250aW51ZSIgLz4KPC9kaXY+CgoKCiAgICA8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIKICAgICAgICAgICAgaWQ9ImRqYW5nby1hZG1pbi1mb3JtLWFkZC1jb25zdGFudHMiCiAgICAgICAgICAgIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9jaGFuZ2VfZm9ybS5qcyIKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICBkYXRhLW1vZGVsLW5hbWU9InZhY2FuY3kiCiAgICAgICAgICAgID4KICAgIDwvc2NyaXB0PgoKCgoKPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiCiAgICAgICAgaWQ9ImRqYW5nby1hZG1pbi1wcmVwb3B1bGF0ZWQtZmllbGRzLWNvbnN0YW50cyIKICAgICAgICBzcmM9Ii9hc3NldHMvYWRtaW4vanMvcHJlcG9wdWxhdGVfaW5pdC5qcyIKICAgICAgICBkYXRhLXByZXBvcHVsYXRlZC1maWVsZHM9IltdIj4KPC9zY3JpcHQ+CgoKPC9kaXY+CjwvZm9ybT48L2Rpdj4KCiAgICAgICAgCiAgICAgICAgPGJyIGNsYXNzPSJjbGVhciIgLz4KICAgIDwvZGl2PgogICAgPCEtLSBFTkQgQ29udGVudCAtLT4KCiAgICA8ZGl2IGlkPSJmb290ZXIiPjwvZGl2Pgo8L2Rpdj4KPCEtLSBFTkQgQ29udGFpbmVyIC0tPgoKPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 15:23:11 GMT\", \"Expires\": \"Mon, 27 Mar 2017 15:23:11 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "5b72339a-ff8f-4c56-aca3-b829d270e09d", - "fields": { - "request": "a2cbf430-13f7-4179-9875-53c6156a1ef5", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "5b8f9155-2b9a-4c94-86eb-83e41ece1baa", - "fields": { - "request": "a46bb5f5-8c7a-4649-8d1a-dbd4d514bd1f", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPlNpdGUgYWRtaW5pc3RyYXRpb24gfCBEamFuZ28gc2l0ZSBhZG1pbjwvdGl0bGU+CjxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvYWRtaW4vY3NzL2Jhc2UuY3NzIiAvPgo8bGluayByZWw9InN0eWxlc2hlZXQiIHR5cGU9InRleHQvY3NzIiBocmVmPSIvYXNzZXRzL2FkbWluL2Nzcy9kYXNoYm9hcmQuY3NzIiAvPgoKCjxtZXRhIG5hbWU9InJvYm90cyIgY29udGVudD0iTk9ORSxOT0FSQ0hJVkUiIC8+CjwvaGVhZD4KCgo8Ym9keSBjbGFzcz0iIGRhc2hib2FyZCIKICBkYXRhLWFkbWluLXV0Yy1vZmZzZXQ9IjAiPgoKPCEtLSBDb250YWluZXIgLS0+CjxkaXYgaWQ9ImNvbnRhaW5lciI+CgogICAgCiAgICA8IS0tIEhlYWRlciAtLT4KICAgIDxkaXYgaWQ9ImhlYWRlciI+CiAgICAgICAgPGRpdiBpZD0iYnJhbmRpbmciPgogICAgICAgIAo8aDEgaWQ9InNpdGUtbmFtZSI+PGEgaHJlZj0iL2FkbWluLyI+RGphbmdvIGFkbWluaXN0cmF0aW9uPC9hPjwvaDE+CgogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIDxkaXYgaWQ9InVzZXItdG9vbHMiPgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIFdlbGNvbWUsCiAgICAgICAgICAgICAgICA8c3Ryb25nPmthcGU8L3N0cm9uZz4uCiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii8iPlZpZXcgc2l0ZTwvYT4gLwogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vcGFzc3dvcmRfY2hhbmdlLyI+Q2hhbmdlIHBhc3N3b3JkPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9sb2dvdXQvIj5Mb2cgb3V0PC9hPgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgICAgICAKICAgICAgICAKICAgICAgICAKICAgIDwvZGl2PgogICAgPCEtLSBFTkQgSGVhZGVyIC0tPgogICAgCiAgICAKCiAgICAKICAgICAgICAKICAgIAoKICAgIDwhLS0gQ29udGVudCAtLT4KICAgIDxkaXYgaWQ9ImNvbnRlbnQiIGNsYXNzPSJjb2xNUyI+CiAgICAgICAgCiAgICAgICAgPGgxPlNpdGUgYWRtaW5pc3RyYXRpb248L2gxPgogICAgICAgIAo8ZGl2IGlkPSJjb250ZW50LW1haW4iPgoKCiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJhcHAtYXV0aCBtb2R1bGUiPgogICAgICAgIDx0YWJsZT4KICAgICAgICA8Y2FwdGlvbj4KICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2F1dGgvIiBjbGFzcz0ic2VjdGlvbiIgdGl0bGU9Ik1vZGVscyBpbiB0aGUgQXV0aGVudGljYXRpb24gYW5kIEF1dGhvcml6YXRpb24gYXBwbGljYXRpb24iPkF1dGhlbnRpY2F0aW9uIGFuZCBBdXRob3JpemF0aW9uPC9hPgogICAgICAgIDwvY2FwdGlvbj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1ncm91cCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL2dyb3VwLyI+R3JvdXBzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvZ3JvdXAvYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL2dyb3VwLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC11c2VyIj4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8iPlVzZXJzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgPC90YWJsZT4KICAgICAgICA8L2Rpdj4KICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImFwcC1jb3JlIG1vZHVsZSI+CiAgICAgICAgPHRhYmxlPgogICAgICAgIDxjYXB0aW9uPgogICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS8iIGNsYXNzPSJzZWN0aW9uIiB0aXRsZT0iTW9kZWxzIGluIHRoZSBDb3JlIGFwcGxpY2F0aW9uIj5Db3JlPC9hPgogICAgICAgIDwvY2FwdGlvbj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1hcHBsaWNhdGlvbiI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL2FwcGxpY2F0aW9uLyI+QXBwbGljYXRpb25zPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvYXBwbGljYXRpb24vYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL2FwcGxpY2F0aW9uLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1jb21wYW55Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8iPkNvbXBhbnlzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgICAgIDx0ciBjbGFzcz0ibW9kZWwtc3R1ZGVudCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvIj5TdHVkZW50czwvYT48L3RoPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvIiBjbGFzcz0iY2hhbmdlbGluayI+Q2hhbmdlPC9hPjwvdGQ+CiAgICAgICAgICAgIAogICAgICAgICAgICA8L3RyPgogICAgICAgIAogICAgICAgICAgICA8dHIgY2xhc3M9Im1vZGVsLXN1cGVydmlzb3IiPgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0aCBzY29wZT0icm93Ij48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yLyI+U3VwZXJ2aXNvcnM8L2E+PC90aD4KICAgICAgICAgICAgCgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0ZD48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yL2FkZC8iIGNsYXNzPSJhZGRsaW5rIj5BZGQ8L2E+PC90ZD4KICAgICAgICAgICAgCgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0ZD48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC12YWNhbmN5Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS8iPlZhY2FuY3lzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgPC90YWJsZT4KICAgICAgICA8L2Rpdj4KICAgIAoKPC9kaXY+CgogICAgICAgIAo8ZGl2IGlkPSJjb250ZW50LXJlbGF0ZWQiPgogICAgPGRpdiBjbGFzcz0ibW9kdWxlIiBpZD0icmVjZW50LWFjdGlvbnMtbW9kdWxlIj4KICAgICAgICA8aDI+UmVjZW50IGFjdGlvbnM8L2gyPgogICAgICAgIDxoMz5NeSBhY3Rpb25zPC9oMz4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgPHVsIGNsYXNzPSJhY3Rpb25saXN0Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaSBjbGFzcz0iYWRkbGluayI+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS9hcHBsaWNhdGlvbi8xL2NoYW5nZS8iPkFwcGxpY2F0aW9uIG9iamVjdDwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5BcHBsaWNhdGlvbjwvc3Bhbj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgICAgPGxpIGNsYXNzPSJhZGRsaW5rIj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9jb3JlL3ZhY2FuY3kvMS9jaGFuZ2UvIj5WYWNhbmN5IG9iamVjdDwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5WYWNhbmN5PC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8bGkgY2xhc3M9ImFkZGxpbmsiPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2NvcmUvc3VwZXJ2aXNvci8xL2NoYW5nZS8iPlN1cGVydmlzb3Igb2JqZWN0PC9hPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YnIvPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9Im1pbmkgcXVpZXQiPlN1cGVydmlzb3I8L3NwYW4+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgPC9saT4KICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaSBjbGFzcz0iYWRkbGluayI+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS9zdHVkZW50LzEvY2hhbmdlLyI+U3R1ZGVudCBvYmplY3Q8L2E+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxici8+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz0ibWluaSBxdWlldCI+U3R1ZGVudDwvc3Bhbj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgICAgPGxpIGNsYXNzPSJhZGRsaW5rIj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9jb3JlL2NvbXBhbnkvMi9jaGFuZ2UvIj5Db21wYW55IG9iamVjdDwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5Db21wYW55PC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8bGkgY2xhc3M9ImRlbGV0ZWxpbmsiPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgQ29tcGFueSBvYmplY3QKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5Db21wYW55PC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8bGkgY2xhc3M9ImFkZGxpbmsiPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci80L2NoYW5nZS8iPmZhcmhhbnN1cGVyPC9hPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YnIvPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9Im1pbmkgcXVpZXQiPlVzZXI8L3NwYW4+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgPC9saT4KICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaSBjbGFzcz0iYWRkbGluayI+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vYXV0aC91c2VyLzMvY2hhbmdlLyI+ZmFyaGFuY29ycDwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5Vc2VyPC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8bGkgY2xhc3M9ImFkZGxpbmsiPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8yL2NoYW5nZS8iPmZhcmhhbjwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5Vc2VyPC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8bGkgY2xhc3M9ImFkZGxpbmsiPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8xL2NoYW5nZS8iPkNvbXBhbnkgb2JqZWN0PC9hPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YnIvPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9Im1pbmkgcXVpZXQiPkNvbXBhbnk8L3NwYW4+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgPC9saT4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdWw+CiAgICAgICAgICAgIAogICAgPC9kaXY+CjwvZGl2PgoKICAgICAgICA8YnIgY2xhc3M9ImNsZWFyIiAvPgogICAgPC9kaXY+CiAgICA8IS0tIEVORCBDb250ZW50IC0tPgoKICAgIDxkaXYgaWQ9ImZvb3RlciI+PC9kaXY+CjwvZGl2Pgo8IS0tIEVORCBDb250YWluZXIgLS0+Cgo8L2JvZHk+CjwvaHRtbD4K", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 17:13:34 GMT\", \"Expires\": \"Mon, 27 Mar 2017 17:13:34 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\"}" - } -}, -{ - "model": "silk.response", - "pk": "5c3928e3-199b-4c01-8f7e-ffe07de21bbd", - "fields": { - "request": "466a4c19-dd4a-415d-a626-212aba832f53", - "status_code": 500, - "raw_body": "QXR0cmlidXRlRXJyb3IgYXQgL2FwaS9zdHVkZW50cy80L2Jvb2ttYXJrZWQtdmFjYW5jaWVzLwonZGljdCcgb2JqZWN0IGhhcyBubyBhdHRyaWJ1dGUgJ2lkJwoKUmVxdWVzdCBNZXRob2Q6IFBPU1QKUmVxdWVzdCBVUkw6IGh0dHA6Ly8xMjcuMC4wLjE6ODAwMC9hcGkvc3R1ZGVudHMvNC9ib29rbWFya2VkLXZhY2FuY2llcy8KRGphbmdvIFZlcnNpb246IDEuMTAuNQpQeXRob24gRXhlY3V0YWJsZTogQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXHB5dGhvbi5leGUKUHl0aG9uIFZlcnNpb246IDMuNi4wClB5dGhvbiBQYXRoOiBbJ0Q6XFxQUExBJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXHB5dGhvbjM2LnppcCcsICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyXFxETExzJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXGxpYicsICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXGxpYlxcc2l0ZS1wYWNrYWdlcyddClNlcnZlciB0aW1lOiBNb24sIDI3IE1hciAyMDE3IDE2OjAyOjUzICswMDAwCkluc3RhbGxlZCBBcHBsaWNhdGlvbnM6ClsnZGphbmdvLmNvbnRyaWIuYWRtaW4nLAogJ2RqYW5nby5jb250cmliLmF1dGgnLAogJ2RqYW5nby5jb250cmliLmNvbnRlbnR0eXBlcycsCiAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMnLAogJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzJywKICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcycsCiAnd2VicGFja19sb2FkZXInLAogJ2NvcmUnLAogJ3Jlc3RfZnJhbWV3b3JrJywKICdkamFuZ29fbm9zZScsCiAncmVzdF9mcmFtZXdvcmtfc3dhZ2dlcicsCiAnc2lsayddCkluc3RhbGxlZCBNaWRkbGV3YXJlOgpbJ2RqYW5nby5taWRkbGV3YXJlLnNlY3VyaXR5LlNlY3VyaXR5TWlkZGxld2FyZScsCiAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMubWlkZGxld2FyZS5TZXNzaW9uTWlkZGxld2FyZScsCiAnZGphbmdvLm1pZGRsZXdhcmUuY29tbW9uLkNvbW1vbk1pZGRsZXdhcmUnLAogJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5hdXRoLm1pZGRsZXdhcmUuQXV0aGVudGljYXRpb25NaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5tZXNzYWdlcy5taWRkbGV3YXJlLk1lc3NhZ2VNaWRkbGV3YXJlJywKICdkamFuZ28ubWlkZGxld2FyZS5jbGlja2phY2tpbmcuWEZyYW1lT3B0aW9uc01pZGRsZXdhcmUnLAogJ3NpbGsubWlkZGxld2FyZS5TaWxreU1pZGRsZXdhcmUnXQoKClRyYWNlYmFjazogIAoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXGRqYW5nb1xjb3JlXGhhbmRsZXJzXGV4Y2VwdGlvbi5weSIgaW4gaW5uZXIKICAzOS4gICAgICAgICAgICAgcmVzcG9uc2UgPSBnZXRfcmVzcG9uc2UocmVxdWVzdCkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cY29yZVxoYW5kbGVyc1xiYXNlLnB5IiBpbiBfZ2V0X3Jlc3BvbnNlCiAgMTg3LiAgICAgICAgICAgICAgICAgcmVzcG9uc2UgPSBzZWxmLnByb2Nlc3NfZXhjZXB0aW9uX2J5X21pZGRsZXdhcmUoZSwgcmVxdWVzdCkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cY29yZVxoYW5kbGVyc1xiYXNlLnB5IiBpbiBfZ2V0X3Jlc3BvbnNlCiAgMTg1LiAgICAgICAgICAgICAgICAgcmVzcG9uc2UgPSB3cmFwcGVkX2NhbGxiYWNrKHJlcXVlc3QsICpjYWxsYmFja19hcmdzLCAqKmNhbGxiYWNrX2t3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cdmlld3NcZGVjb3JhdG9yc1xjc3JmLnB5IiBpbiB3cmFwcGVkX3ZpZXcKICA1OC4gICAgICAgICByZXR1cm4gdmlld19mdW5jKCphcmdzLCAqKmt3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3c2V0cy5weSIgaW4gdmlldwogIDgzLiAgICAgICAgICAgICByZXR1cm4gc2VsZi5kaXNwYXRjaChyZXF1ZXN0LCAqYXJncywgKiprd2FyZ3MpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNccmVzdF9mcmFtZXdvcmtcdmlld3MucHkiIGluIGRpc3BhdGNoCiAgNDgzLiAgICAgICAgICAgICByZXNwb25zZSA9IHNlbGYuaGFuZGxlX2V4Y2VwdGlvbihleGMpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNccmVzdF9mcmFtZXdvcmtcdmlld3MucHkiIGluIGhhbmRsZV9leGNlcHRpb24KICA0NDMuICAgICAgICAgICAgIHNlbGYucmFpc2VfdW5jYXVnaHRfZXhjZXB0aW9uKGV4YykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3cy5weSIgaW4gZGlzcGF0Y2gKICA0ODAuICAgICAgICAgICAgIHJlc3BvbnNlID0gaGFuZGxlcihyZXF1ZXN0LCAqYXJncywgKiprd2FyZ3MpCgpGaWxlICJEOlxQUExBXGNvcmVcdmlld3NcYWNjb3VudHMucHkiIGluIGJvb2ttYXJrX3ZhY2FuY2llcwogIDMwLiAgICAgICAgIHZhY2FuY3kgPSBnZXRfb2JqZWN0X29yXzQwNChWYWNhbmN5Lm9iamVjdHMuYWxsKCksIHBrPXJlcXVlc3QuZGF0YS5pZCkKCkV4Y2VwdGlvbiBUeXBlOiBBdHRyaWJ1dGVFcnJvciBhdCAvYXBpL3N0dWRlbnRzLzQvYm9va21hcmtlZC12YWNhbmNpZXMvCkV4Y2VwdGlvbiBWYWx1ZTogJ2RpY3QnIG9iamVjdCBoYXMgbm8gYXR0cmlidXRlICdpZCcKUmVxdWVzdCBpbmZvcm1hdGlvbjoKVVNFUjoga2FwZQoKR0VUOiBObyBHRVQgZGF0YQoKUE9TVDogTm8gUE9TVCBkYXRhCgpGSUxFUzogTm8gRklMRVMgZGF0YQoKQ09PS0lFUzoKc2Vzc2lvbmlkID0gJ2JsdDg3N2c1ZmptdWN4eTNkZDV1eGNpemF2YjlvcG92Jwpjc3JmdG9rZW4gPSAnMUVFUDJTd0t0MUs5UWJXbkZQU3lXUElpYnRPN01BYVZxS0xFZW9vRmdZVnlkallQb2duME93cDI5b1VXNkE2SycKCk1FVEE6CkFMTFVTRVJTUFJPRklMRSA9ICdDOlxcUHJvZ3JhbURhdGEnCkFQUERBVEEgPSAnQzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmcnCkNPTU1PTlBST0dSQU1GSUxFUyA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcQ29tbW9uIEZpbGVzJwpDT01NT05QUk9HUkFNRklMRVMoWDg2KSA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcQ29tbW9uIEZpbGVzJwpDT01NT05QUk9HUkFNVzY0MzIgPSAnQzpcXFByb2dyYW0gRmlsZXNcXENvbW1vbiBGaWxlcycKQ09NUFVURVJOQU1FID0gJ0ZBUkhBTicKQ09NU1BFQyA9ICdDOlxcV0lORE9XU1xcc3lzdGVtMzJcXGNtZC5leGUnCkNPTlRFTlRfTEVOR1RIID0gJzEzOScKQ09OVEVOVF9UWVBFID0gJ2FwcGxpY2F0aW9uL2pzb24nCkNTUkZfQ09PS0lFID0gJzFFRVAyU3dLdDFLOVFiV25GUFN5V1BJaWJ0TzdNQWFWcUtMRWVvb0ZnWVZ5ZGpZUG9nbjBPd3AyOW9VVzZBNksnCkRKQU5HT19TRVRUSU5HU19NT0RVTEUgPSAna2FwZS5zZXR0aW5ncycKRlBTX0JST1dTRVJfQVBQX1BST0ZJTEVfU1RSSU5HID0gJ0ludGVybmV0IEV4cGxvcmVyJwpGUFNfQlJPV1NFUl9VU0VSX1BST0ZJTEVfU1RSSU5HID0gJ0RlZmF1bHQnCkZQX05PX0hPU1RfQ0hFQ0sgPSAnTk8nCkdBVEVXQVlfSU5URVJGQUNFID0gJ0NHSS8xLjEnCkhPTUVEUklWRSA9ICdDOicKSE9NRVBBVEggPSAnXFxVc2Vyc1xcZmFyaGFfMDAwJwpIVFRQX0FDQ0VQVCA9ICdhcHBsaWNhdGlvbi9qc29uJwpIVFRQX0FDQ0VQVF9FTkNPRElORyA9ICdnemlwLCBkZWZsYXRlLCBicicKSFRUUF9BQ0NFUFRfTEFOR1VBR0UgPSAnaWQtSUQsaWQ7cT0wLjgsZW4tVVM7cT0wLjYsZW47cT0wLjQnCkhUVFBfQ09OTkVDVElPTiA9ICdrZWVwLWFsaXZlJwpIVFRQX0NPT0tJRSA9ICdzZXNzaW9uaWQ9Ymx0ODc3ZzVmam11Y3h5M2RkNXV4Y2l6YXZiOW9wb3Y7IGNzcmZ0b2tlbj0xRUVQMlN3S3QxSzlRYlduRlBTeVdQSWlidE83TUFhVnFLTEVlb29GZ1lWeWRqWVBvZ24wT3dwMjlvVVc2QTZLJwpIVFRQX0hPU1QgPSAnMTI3LjAuMC4xOjgwMDAnCkhUVFBfT1JJR0lOID0gJ2h0dHA6Ly8xMjcuMC4wLjE6ODAwMCcKSFRUUF9SRUZFUkVSID0gJ2h0dHA6Ly8xMjcuMC4wLjE6ODAwMC9hcGknCkhUVFBfVVNFUl9BR0VOVCA9ICdNb3ppbGxhLzUuMCAoV2luZG93cyBOVCAxMC4wOyBXT1c2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzU2LjAuMjkyNC44NyBTYWZhcmkvNTM3LjM2JwpIVFRQX1hfQ1NSRlRPS0VOID0gJ2pxOTFCdUY1ZTVSN1NqTUZSYzJUTmZ2V1U4bERPNnd5SXdnUU4weDAxMjJ3ZnJPN0FEeGxGV2NHUzNyczg2c24nCkxPQ0FMQVBQREFUQSA9ICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWwnCkxPR09OU0VSVkVSID0gJ1xcXFxGQVJIQU4nCk5VTUJFUl9PRl9QUk9DRVNTT1JTID0gJzInCk9ORURSSVZFID0gJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxPbmVEcml2ZScKT1MgPSAnV2luZG93c19OVCcKUEFUSCA9ICdDOlxcUHJvZ3JhbURhdGFcXE9yYWNsZVxcSmF2YVxcamF2YXBhdGg7QzpcXFByb2dyYW0gRmlsZXNcXEhhc2tlbGxcXGJpbjtDOlxcUHJvZ3JhbSBGaWxlc1xcSGFza2VsbCBQbGF0Zm9ybVxcNy4xMC4zXFxsaWJcXGV4dHJhbGlic1xcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxIYXNrZWxsIFBsYXRmb3JtXFw3LjEwLjNcXGJpbjtDOlxcV0lORE9XU1xcc3lzdGVtMzI7QzpcXFdJTkRPV1M7QzpcXFdJTkRPV1NcXFN5c3RlbTMyXFxXYmVtO0M6XFxXSU5ET1dTXFxTeXN0ZW0zMlxcV2luZG93c1Bvd2VyU2hlbGxcXHYxLjBcXDtDOlxcUHJvZ3JhbSBGaWxlc1xcSGFza2VsbCBQbGF0Zm9ybVxcNy4xMC4zXFxtaW5nd1xcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxKYXZhXFxqZGsxLjguMF83N1xcYmluO0M6XFxjeWd3aW42NFxcYmluOyVsb2NhbGFwcGRhdGElXFxNaWNyb3NvZnRcXFdpbmRvd3NBcHBzO0Q6XFxYQU1QUFxccGhwO0M6XFxQcm9ncmFtIEZpbGVzXFxHaXRcXGNtZDtDOlxceGFtcHBcXHBocDtDOlxcUHJvZ3JhbURhdGFcXENvbXBvc2VyU2V0dXBcXGJpbjtDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcbm9kZWpzXFw7QzpcXFByb2dyYW0gRmlsZXNcXFBvc3RncmVTUUxcXDkuNlxcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxNQVRMQUJcXFIyMDE3YVxcYmluO0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXFNjcmlwdHNcXDtDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyXFw7QzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmdcXGNhYmFsXFxiaW47RDpcXFhBTVBQXFxwaHA7QzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmdcXENvbXBvc2VyXFx2ZW5kb3JcXGJpbjtDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXE1pY3Jvc29mdFxcV2luZG93c0FwcHM7QzpcXHB5dGhvbi0zLjYuMCcKUEFUSEVYVCA9ICcuQ09NOy5FWEU7LkJBVDsuQ01EOy5WQlM7LlZCRTsuSlM7LkpTRTsuV1NGOy5XU0g7Lk1TQycKUEFUSF9JTkZPID0gJy9hcGkvc3R1ZGVudHMvNC9ib29rbWFya2VkLXZhY2FuY2llcy8nClBST0NFU1NPUl9BUkNISVRFQ1RVUkUgPSAneDg2JwpQUk9DRVNTT1JfQVJDSElURVc2NDMyID0gJ0FNRDY0JwpQUk9DRVNTT1JfSURFTlRJRklFUiA9ICdJbnRlbDY0IEZhbWlseSA2IE1vZGVsIDU4IFN0ZXBwaW5nIDksIEdlbnVpbmVJbnRlbCcKUFJPQ0VTU09SX0xFVkVMID0gJzYnClBST0NFU1NPUl9SRVZJU0lPTiA9ICczYTA5JwpQUk9HUkFNREFUQSA9ICdDOlxcUHJvZ3JhbURhdGEnClBST0dSQU1GSUxFUyA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KScKUFJPR1JBTUZJTEVTKFg4NikgPSAnQzpcXFByb2dyYW0gRmlsZXMgKHg4NiknClBST0dSQU1XNjQzMiA9ICdDOlxcUHJvZ3JhbSBGaWxlcycKUFJPTVBUID0gJyRQJEcnClBTTU9EVUxFUEFUSCA9ICdDOlxcV0lORE9XU1xcc3lzdGVtMzJcXFdpbmRvd3NQb3dlclNoZWxsXFx2MS4wXFxNb2R1bGVzXFwnClBVQkxJQyA9ICdDOlxcVXNlcnNcXFB1YmxpYycKUVVFUllfU1RSSU5HID0gJycKUkVNT1RFX0FERFIgPSAnMTI3LjAuMC4xJwpSRU1PVEVfSE9TVCA9ICcnClJFUVVFU1RfTUVUSE9EID0gJ1BPU1QnClJVTl9NQUlOID0gJ3RydWUnClNDUklQVF9OQU1FID0gJycKU0VSVkVSX05BTUUgPSAnRmFyaGFuJwpTRVJWRVJfUE9SVCA9ICc4MDAwJwpTRVJWRVJfUFJPVE9DT0wgPSAnSFRUUC8xLjEnClNFUlZFUl9TT0ZUV0FSRSA9ICdXU0dJU2VydmVyLzAuMicKU0VTU0lPTk5BTUUgPSAnQ29uc29sZScKU1lTVEVNRFJJVkUgPSAnQzonClNZU1RFTVJPT1QgPSAnQzpcXFdJTkRPV1MnClRFTVAgPSAnQzpcXFVzZXJzXFxGQVJIQV9+MVxcQXBwRGF0YVxcTG9jYWxcXFRlbXAnClRNUCA9ICdDOlxcVXNlcnNcXEZBUkhBX34xXFxBcHBEYXRhXFxMb2NhbFxcVGVtcCcKVVNFUkRPTUFJTiA9ICdGYXJoYW4nClVTRVJET01BSU5fUk9BTUlOR1BST0ZJTEUgPSAnRmFyaGFuJwpVU0VSTkFNRSA9ICdGYXJoYW4gRmFyYXNkYWsnClVTRVJQUk9GSUxFID0gJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwJwpWQk9YX01TSV9JTlNUQUxMX1BBVEggPSAnQzpcXFByb2dyYW0gRmlsZXNcXE9yYWNsZVxcVmlydHVhbEJveFxcJwpXSU5ESVIgPSAnQzpcXFdJTkRPV1MnCndzZ2kuZXJyb3JzID0gPF9pby5UZXh0SU9XcmFwcGVyIG5hbWU9JzxzdGRlcnI+JyBtb2RlPSd3JyBlbmNvZGluZz0ndXRmLTgnPgp3c2dpLmZpbGVfd3JhcHBlciA9ICcnCndzZ2kuaW5wdXQgPSA8X2lvLkJ1ZmZlcmVkUmVhZGVyIG5hbWU9MjAxNj4Kd3NnaS5tdWx0aXByb2Nlc3MgPSBGYWxzZQp3c2dpLm11bHRpdGhyZWFkID0gVHJ1ZQp3c2dpLnJ1bl9vbmNlID0gRmFsc2UKd3NnaS51cmxfc2NoZW1lID0gJ2h0dHAnCndzZ2kudmVyc2lvbiA9IAoKU2V0dGluZ3M6ClVzaW5nIHNldHRpbmdzIG1vZHVsZSBrYXBlLnNldHRpbmdzCkFCU09MVVRFX1VSTF9PVkVSUklERVMgPSB7fQpBRE1JTlMgPSBbXQpBTExPV0VEX0hPU1RTID0gWydib3QucmVjcnVpdC5pZCcsICcxMDQuMjM2Ljc2LjE2MScsICdsb2NhbGhvc3QnLCAnMTI3LjAuMC4xJ10KQVBQRU5EX1NMQVNIID0gVHJ1ZQpBVVRIRU5USUNBVElPTl9CQUNLRU5EUyA9IFsnZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQnXQpBVVRIX1BBU1NXT1JEX1ZBTElEQVRPUlMgPSAnKioqKioqKioqKioqKioqKioqKionCkFVVEhfVVNFUl9NT0RFTCA9ICdhdXRoLlVzZXInCkJBU0VfRElSID0gJ0Q6XFxQUExBJwpDQUNIRVMgPSB7J2RlZmF1bHQnOiB7J0JBQ0tFTkQnOiAnZGphbmdvLmNvcmUuY2FjaGUuYmFja2VuZHMubG9jbWVtLkxvY01lbUNhY2hlJ319CkNBQ0hFX01JRERMRVdBUkVfQUxJQVMgPSAnZGVmYXVsdCcKQ0FDSEVfTUlERExFV0FSRV9LRVlfUFJFRklYID0gJyoqKioqKioqKioqKioqKioqKioqJwpDQUNIRV9NSURETEVXQVJFX1NFQ09ORFMgPSA2MDAKQ1NSRl9DT09LSUVfQUdFID0gMzE0NDk2MDAKQ1NSRl9DT09LSUVfRE9NQUlOID0gTm9uZQpDU1JGX0NPT0tJRV9IVFRQT05MWSA9IEZhbHNlCkNTUkZfQ09PS0lFX05BTUUgPSAnY3NyZnRva2VuJwpDU1JGX0NPT0tJRV9QQVRIID0gJy8nCkNTUkZfQ09PS0lFX1NFQ1VSRSA9IEZhbHNlCkNTUkZfRkFJTFVSRV9WSUVXID0gJ2RqYW5nby52aWV3cy5jc3JmLmNzcmZfZmFpbHVyZScKQ1NSRl9IRUFERVJfTkFNRSA9ICdIVFRQX1hfQ1NSRlRPS0VOJwpDU1JGX1RSVVNURURfT1JJR0lOUyA9IFtdCkRBVEFCQVNFUyA9IHsnZGVmYXVsdCc6IHsnRU5HSU5FJzogJ2RqYW5nby5kYi5iYWNrZW5kcy5wb3N0Z3Jlc3FsX3BzeWNvcGcyJywgJ05BTUUnOiAna2FwZScsICdVU0VSJzogJ2thcGUnLCAnUEFTU1dPUkQnOiAnKioqKioqKioqKioqKioqKioqKionLCAnSE9TVCc6ICdsb2NhbGhvc3QnLCAnUE9SVCc6ICcnLCAnQVRPTUlDX1JFUVVFU1RTJzogRmFsc2UsICdBVVRPQ09NTUlUJzogVHJ1ZSwgJ0NPTk5fTUFYX0FHRSc6IDAsICdPUFRJT05TJzoge30sICdUSU1FX1pPTkUnOiBOb25lLCAnVEVTVCc6IHsnQ0hBUlNFVCc6IE5vbmUsICdDT0xMQVRJT04nOiBOb25lLCAnTkFNRSc6IE5vbmUsICdNSVJST1InOiBOb25lfX19CkRBVEFCQVNFX1JPVVRFUlMgPSBbXQpEQVRBX1VQTE9BRF9NQVhfTUVNT1JZX1NJWkUgPSAyNjIxNDQwCkRBVEFfVVBMT0FEX01BWF9OVU1CRVJfRklFTERTID0gMTAwMApEQVRFVElNRV9GT1JNQVQgPSAnTiBqLCBZLCBQJwpEQVRFVElNRV9JTlBVVF9GT1JNQVRTID0gWyclWS0lbS0lZCAlSDolTTolUycsICclWS0lbS0lZCAlSDolTTolUy4lZicsICclWS0lbS0lZCAlSDolTScsICclWS0lbS0lZCcsICclbS8lZC8lWSAlSDolTTolUycsICclbS8lZC8lWSAlSDolTTolUy4lZicsICclbS8lZC8lWSAlSDolTScsICclbS8lZC8lWScsICclbS8lZC8leSAlSDolTTolUycsICclbS8lZC8leSAlSDolTTolUy4lZicsICclbS8lZC8leSAlSDolTScsICclbS8lZC8leSddCkRBVEVfRk9STUFUID0gJ04gaiwgWScKREFURV9JTlBVVF9GT1JNQVRTID0gWyclWS0lbS0lZCcsICclbS8lZC8lWScsICclbS8lZC8leScsICclYiAlZCAlWScsICclYiAlZCwgJVknLCAnJWQgJWIgJVknLCAnJWQgJWIsICVZJywgJyVCICVkICVZJywgJyVCICVkLCAlWScsICclZCAlQiAlWScsICclZCAlQiwgJVknXQpERUJVRyA9IFRydWUKREVCVUdfUFJPUEFHQVRFX0VYQ0VQVElPTlMgPSBGYWxzZQpERUNJTUFMX1NFUEFSQVRPUiA9ICcuJwpERUZBVUxUX0NIQVJTRVQgPSAndXRmLTgnCkRFRkFVTFRfQ09OVEVOVF9UWVBFID0gJ3RleHQvaHRtbCcKREVGQVVMVF9FWENFUFRJT05fUkVQT1JURVJfRklMVEVSID0gJ2RqYW5nby52aWV3cy5kZWJ1Zy5TYWZlRXhjZXB0aW9uUmVwb3J0ZXJGaWx0ZXInCkRFRkFVTFRfRklMRV9TVE9SQUdFID0gJ2RqYW5nby5jb3JlLmZpbGVzLnN0b3JhZ2UuRmlsZVN5c3RlbVN0b3JhZ2UnCkRFRkFVTFRfRlJPTV9FTUFJTCA9ICd3ZWJtYXN0ZXJAbG9jYWxob3N0JwpERUZBVUxUX0lOREVYX1RBQkxFU1BBQ0UgPSAnJwpERUZBVUxUX1RBQkxFU1BBQ0UgPSAnJwpESVNBTExPV0VEX1VTRVJfQUdFTlRTID0gW10KRU1BSUxfQkFDS0VORCA9ICdkamFuZ28uY29yZS5tYWlsLmJhY2tlbmRzLnNtdHAuRW1haWxCYWNrZW5kJwpFTUFJTF9IT1NUID0gJ2xvY2FsaG9zdCcKRU1BSUxfSE9TVF9QQVNTV09SRCA9ICcqKioqKioqKioqKioqKioqKioqKicKRU1BSUxfSE9TVF9VU0VSID0gJycKRU1BSUxfUE9SVCA9IDI1CkVNQUlMX1NTTF9DRVJURklMRSA9IE5vbmUKRU1BSUxfU1NMX0tFWUZJTEUgPSAnKioqKioqKioqKioqKioqKioqKionCkVNQUlMX1NVQkpFQ1RfUFJFRklYID0gJ1tEamFuZ29dICcKRU1BSUxfVElNRU9VVCA9IE5vbmUKRU1BSUxfVVNFX1NTTCA9IEZhbHNlCkVNQUlMX1VTRV9UTFMgPSBGYWxzZQpGSUxFX0NIQVJTRVQgPSAndXRmLTgnCkZJTEVfVVBMT0FEX0RJUkVDVE9SWV9QRVJNSVNTSU9OUyA9IE5vbmUKRklMRV9VUExPQURfSEFORExFUlMgPSBbJ2RqYW5nby5jb3JlLmZpbGVzLnVwbG9hZGhhbmRsZXIuTWVtb3J5RmlsZVVwbG9hZEhhbmRsZXInLCAnZGphbmdvLmNvcmUuZmlsZXMudXBsb2FkaGFuZGxlci5UZW1wb3JhcnlGaWxlVXBsb2FkSGFuZGxlciddCkZJTEVfVVBMT0FEX01BWF9NRU1PUllfU0laRSA9IDI2MjE0NDAKRklMRV9VUExPQURfUEVSTUlTU0lPTlMgPSBOb25lCkZJTEVfVVBMT0FEX1RFTVBfRElSID0gTm9uZQpGSVJTVF9EQVlfT0ZfV0VFSyA9IDAKRklYVFVSRV9ESVJTID0gW10KRk9SQ0VfU0NSSVBUX05BTUUgPSBOb25lCkZPUk1BVF9NT0RVTEVfUEFUSCA9IE5vbmUKR1pJUF9DT05URU5UX1RZUEVTID0gCklHTk9SQUJMRV80MDRfVVJMUyA9IFtdCklOU1RBTExFRF9BUFBTID0gWydkamFuZ28uY29udHJpYi5hZG1pbicsICdkamFuZ28uY29udHJpYi5hdXRoJywgJ2RqYW5nby5jb250cmliLmNvbnRlbnR0eXBlcycsICdkamFuZ28uY29udHJpYi5zZXNzaW9ucycsICdkamFuZ28uY29udHJpYi5tZXNzYWdlcycsICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcycsICd3ZWJwYWNrX2xvYWRlcicsICdjb3JlJywgJ3Jlc3RfZnJhbWV3b3JrJywgJ2RqYW5nb19ub3NlJywgJ3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXInLCAnc2lsayddCklOVEVSTkFMX0lQUyA9IFtdCkxBTkdVQUdFUyA9IFsoJ2FmJywgJ0FmcmlrYWFucycpLCAoJ2FyJywgJ0FyYWJpYycpLCAoJ2FzdCcsICdBc3R1cmlhbicpLCAoJ2F6JywgJ0F6ZXJiYWlqYW5pJyksICgnYmcnLCAnQnVsZ2FyaWFuJyksICgnYmUnLCAnQmVsYXJ1c2lhbicpLCAoJ2JuJywgJ0JlbmdhbGknKSwgKCdicicsICdCcmV0b24nKSwgKCdicycsICdCb3NuaWFuJyksICgnY2EnLCAnQ2F0YWxhbicpLCAoJ2NzJywgJ0N6ZWNoJyksICgnY3knLCAnV2Vsc2gnKSwgKCdkYScsICdEYW5pc2gnKSwgKCdkZScsICdHZXJtYW4nKSwgKCdkc2InLCAnTG93ZXIgU29yYmlhbicpLCAoJ2VsJywgJ0dyZWVrJyksICgnZW4nLCAnRW5nbGlzaCcpLCAoJ2VuLWF1JywgJ0F1c3RyYWxpYW4gRW5nbGlzaCcpLCAoJ2VuLWdiJywgJ0JyaXRpc2ggRW5nbGlzaCcpLCAoJ2VvJywgJ0VzcGVyYW50bycpLCAoJ2VzJywgJ1NwYW5pc2gnKSwgKCdlcy1hcicsICdBcmdlbnRpbmlhbiBTcGFuaXNoJyksICgnZXMtY28nLCAnQ29sb21iaWFuIFNwYW5pc2gnKSwgKCdlcy1teCcsICdNZXhpY2FuIFNwYW5pc2gnKSwgKCdlcy1uaScsICdOaWNhcmFndWFuIFNwYW5pc2gnKSwgKCdlcy12ZScsICdWZW5lenVlbGFuIFNwYW5pc2gnKSwgKCdldCcsICdFc3RvbmlhbicpLCAoJ2V1JywgJ0Jhc3F1ZScpLCAoJ2ZhJywgJ1BlcnNpYW4nKSwgKCdmaScsICdGaW5uaXNoJyksICgnZnInLCAnRnJlbmNoJyksICgnZnknLCAnRnJpc2lhbicpLCAoJ2dhJywgJ0lyaXNoJyksICgnZ2QnLCAnU2NvdHRpc2ggR2FlbGljJyksICgnZ2wnLCAnR2FsaWNpYW4nKSwgKCdoZScsICdIZWJyZXcnKSwgKCdoaScsICdIaW5kaScpLCAoJ2hyJywgJ0Nyb2F0aWFuJyksICgnaHNiJywgJ1VwcGVyIFNvcmJpYW4nKSwgKCdodScsICdIdW5nYXJpYW4nKSwgKCdpYScsICdJbnRlcmxpbmd1YScpLCAoJ2lkJywgJ0luZG9uZXNpYW4nKSwgKCdpbycsICdJZG8nKSwgKCdpcycsICdJY2VsYW5kaWMnKSwgKCdpdCcsICdJdGFsaWFuJyksICgnamEnLCAnSmFwYW5lc2UnKSwgKCdrYScsICdHZW9yZ2lhbicpLCAoJ2trJywgJ0themFraCcpLCAoJ2ttJywgJ0tobWVyJyksICgna24nLCAnS2FubmFkYScpLCAoJ2tvJywgJ0tvcmVhbicpLCAoJ2xiJywgJ0x1eGVtYm91cmdpc2gnKSwgKCdsdCcsICdMaXRodWFuaWFuJyksICgnbHYnLCAnTGF0dmlhbicpLCAoJ21rJywgJ01hY2Vkb25pYW4nKSwgKCdtbCcsICdNYWxheWFsYW0nKSwgKCdtbicsICdNb25nb2xpYW4nKSwgKCdtcicsICdNYXJhdGhpJyksICgnbXknLCAnQnVybWVzZScpLCAoJ25iJywgJ05vcndlZ2lhbiBCb2ttw6VsJyksICgnbmUnLCAnTmVwYWxpJyksICgnbmwnLCAnRHV0Y2gnKSwgKCdubicsICdOb3J3ZWdpYW4gTnlub3JzaycpLCAoJ29zJywgJ09zc2V0aWMnKSwgKCdwYScsICdQdW5qYWJpJyksICgncGwnLCAnUG9saXNoJyksICgncHQnLCAnUG9ydHVndWVzZScpLCAoJ3B0LWJyJywgJ0JyYXppbGlhbiBQb3J0dWd1ZXNlJyksICgncm8nLCAnUm9tYW5pYW4nKSwgKCdydScsICdSdXNzaWFuJyksICgnc2snLCAnU2xvdmFrJyksICgnc2wnLCAnU2xvdmVuaWFuJyksICgnc3EnLCAnQWxiYW5pYW4nKSwgKCdzcicsICdTZXJiaWFuJyksICgnc3ItbGF0bicsICdTZXJiaWFuIExhdGluJyksICgnc3YnLCAnU3dlZGlzaCcpLCAoJ3N3JywgJ1N3YWhpbGknKSwgKCd0YScsICdUYW1pbCcpLCAoJ3RlJywgJ1RlbHVndScpLCAoJ3RoJywgJ1RoYWknKSwgKCd0cicsICdUdXJraXNoJyksICgndHQnLCAnVGF0YXInKSwgKCd1ZG0nLCAnVWRtdXJ0JyksICgndWsnLCAnVWtyYWluaWFuJyksICgndXInLCAnVXJkdScpLCAoJ3ZpJywgJ1ZpZXRuYW1lc2UnKSwgKCd6aC1oYW5zJywgJ1NpbXBsaWZpZWQgQ2hpbmVzZScpLCAoJ3poLWhhbnQnLCAnVHJhZGl0aW9uYWwgQ2hpbmVzZScpXQpMQU5HVUFHRVNfQklESSA9IFsnaGUnLCAnYXInLCAnZmEnLCAndXInXQpMQU5HVUFHRV9DT0RFID0gJ2VuLXVzJwpMQU5HVUFHRV9DT09LSUVfQUdFID0gTm9uZQpMQU5HVUFHRV9DT09LSUVfRE9NQUlOID0gTm9uZQpMQU5HVUFHRV9DT09LSUVfTkFNRSA9ICdkamFuZ29fbGFuZ3VhZ2UnCkxBTkdVQUdFX0NPT0tJRV9QQVRIID0gJy8nCkxPQ0FMRV9QQVRIUyA9IFtdCkxPR0dJTkcgPSB7fQpMT0dHSU5HX0NPTkZJRyA9ICdsb2dnaW5nLmNvbmZpZy5kaWN0Q29uZmlnJwpMT0dJTl9SRURJUkVDVF9VUkwgPSAnL2FjY291bnRzL3Byb2ZpbGUvJwpMT0dJTl9VUkwgPSAnL2FjY291bnRzL2xvZ2luLycKTE9HT1VUX1JFRElSRUNUX1VSTCA9IE5vbmUKTUFOQUdFUlMgPSBbXQpNRURJQV9ST09UID0gJy9ob21lL2ZpbGVzJwpNRURJQV9VUkwgPSAnL2ZpbGVzLycKTUVTU0FHRV9TVE9SQUdFID0gJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzLnN0b3JhZ2UuZmFsbGJhY2suRmFsbGJhY2tTdG9yYWdlJwpNSURETEVXQVJFID0gWydkamFuZ28ubWlkZGxld2FyZS5zZWN1cml0eS5TZWN1cml0eU1pZGRsZXdhcmUnLCAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMubWlkZGxld2FyZS5TZXNzaW9uTWlkZGxld2FyZScsICdkamFuZ28ubWlkZGxld2FyZS5jb21tb24uQ29tbW9uTWlkZGxld2FyZScsICdkamFuZ28ubWlkZGxld2FyZS5jc3JmLkNzcmZWaWV3TWlkZGxld2FyZScsICdkamFuZ28uY29udHJpYi5hdXRoLm1pZGRsZXdhcmUuQXV0aGVudGljYXRpb25NaWRkbGV3YXJlJywgJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzLm1pZGRsZXdhcmUuTWVzc2FnZU1pZGRsZXdhcmUnLCAnZGphbmdvLm1pZGRsZXdhcmUuY2xpY2tqYWNraW5nLlhGcmFtZU9wdGlvbnNNaWRkbGV3YXJlJywgJ3NpbGsubWlkZGxld2FyZS5TaWxreU1pZGRsZXdhcmUnXQpNSURETEVXQVJFX0NMQVNTRVMgPSBbJ2RqYW5nby5taWRkbGV3YXJlLmNvbW1vbi5Db21tb25NaWRkbGV3YXJlJywgJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJ10KTUlHUkFUSU9OX01PRFVMRVMgPSB7fQpNT05USF9EQVlfRk9STUFUID0gJ0YgaicKTk9TRV9BUkdTID0gWyctLXdpdGgtY292ZXJhZ2UnLCAnLS1jb3Zlci1wYWNrYWdlPWNvcmUudmlld3MnLCAnLS1jb3Zlci1odG1sLWRpcj10ZXN0L2JhY2tlbmQnLCAnLS1jb3Zlci1odG1sJ10KTlVNQkVSX0dST1VQSU5HID0gMApQQVNTV09SRF9IQVNIRVJTID0gJyoqKioqKioqKioqKioqKioqKioqJwpQQVNTV09SRF9SRVNFVF9USU1FT1VUX0RBWVMgPSAnKioqKioqKioqKioqKioqKioqKionClBSRVBFTkRfV1dXID0gRmFsc2UKUkVTVF9GUkFNRVdPUksgPSB7J0RFRkFVTFRfUEVSTUlTU0lPTl9DTEFTU0VTJzogWydyZXN0X2ZyYW1ld29yay5wZXJtaXNzaW9ucy5EamFuZ29Nb2RlbFBlcm1pc3Npb25zT3JBbm9uUmVhZE9ubHknXX0KUk9PVF9VUkxDT05GID0gJ2thcGUudXJscycKUlVOTklOR19ERVZTRVJWRVIgPSBUcnVlClNFQ1JFVF9LRVkgPSAnKioqKioqKioqKioqKioqKioqKionClNFQ1VSRV9CUk9XU0VSX1hTU19GSUxURVIgPSBGYWxzZQpTRUNVUkVfQ09OVEVOVF9UWVBFX05PU05JRkYgPSBGYWxzZQpTRUNVUkVfSFNUU19JTkNMVURFX1NVQkRPTUFJTlMgPSBGYWxzZQpTRUNVUkVfSFNUU19TRUNPTkRTID0gMApTRUNVUkVfUFJPWFlfU1NMX0hFQURFUiA9IE5vbmUKU0VDVVJFX1JFRElSRUNUX0VYRU1QVCA9IFtdClNFQ1VSRV9TU0xfSE9TVCA9IE5vbmUKU0VDVVJFX1NTTF9SRURJUkVDVCA9IEZhbHNlClNFUlZFUl9FTUFJTCA9ICdyb290QGxvY2FsaG9zdCcKU0VTU0lPTl9DQUNIRV9BTElBUyA9ICdkZWZhdWx0JwpTRVNTSU9OX0NPT0tJRV9BR0UgPSAxMjA5NjAwClNFU1NJT05fQ09PS0lFX0RPTUFJTiA9IE5vbmUKU0VTU0lPTl9DT09LSUVfSFRUUE9OTFkgPSBGYWxzZQpTRVNTSU9OX0NPT0tJRV9OQU1FID0gJ3Nlc3Npb25pZCcKU0VTU0lPTl9DT09LSUVfUEFUSCA9ICcvJwpTRVNTSU9OX0NPT0tJRV9TRUNVUkUgPSBGYWxzZQpTRVNTSU9OX0VOR0lORSA9ICdkamFuZ28uY29udHJpYi5zZXNzaW9ucy5iYWNrZW5kcy5kYicKU0VTU0lPTl9FWFBJUkVfQVRfQlJPV1NFUl9DTE9TRSA9IEZhbHNlClNFU1NJT05fRklMRV9QQVRIID0gTm9uZQpTRVNTSU9OX1NBVkVfRVZFUllfUkVRVUVTVCA9IEZhbHNlClNFU1NJT05fU0VSSUFMSVpFUiA9ICdkamFuZ28uY29udHJpYi5zZXNzaW9ucy5zZXJpYWxpemVycy5KU09OU2VyaWFsaXplcicKU0VUVElOR1NfTU9EVUxFID0gJ2thcGUuc2V0dGluZ3MnClNIT1JUX0RBVEVUSU1FX0ZPUk1BVCA9ICdtL2QvWSBQJwpTSE9SVF9EQVRFX0ZPUk1BVCA9ICdtL2QvWScKU0lHTklOR19CQUNLRU5EID0gJ2RqYW5nby5jb3JlLnNpZ25pbmcuVGltZXN0YW1wU2lnbmVyJwpTSUxFTkNFRF9TWVNURU1fQ0hFQ0tTID0gW10KU1RBVElDRklMRVNfRElSUyA9ICdEOlxcUFBMQVxcYXNzZXRzJwpTVEFUSUNGSUxFU19GSU5ERVJTID0gWydkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcy5maW5kZXJzLkZpbGVTeXN0ZW1GaW5kZXInLCAnZGphbmdvLmNvbnRyaWIuc3RhdGljZmlsZXMuZmluZGVycy5BcHBEaXJlY3Rvcmllc0ZpbmRlciddClNUQVRJQ0ZJTEVTX1NUT1JBR0UgPSAnZGphbmdvLmNvbnRyaWIuc3RhdGljZmlsZXMuc3RvcmFnZS5TdGF0aWNGaWxlc1N0b3JhZ2UnClNUQVRJQ19ST09UID0gJy9ob21lL2Fzc2V0cycKU1RBVElDX1VSTCA9ICcvYXNzZXRzLycKVEVNUExBVEVTID0gW3snQkFDS0VORCc6ICdkamFuZ28udGVtcGxhdGUuYmFja2VuZHMuZGphbmdvLkRqYW5nb1RlbXBsYXRlcycsICdESVJTJzogW10sICdBUFBfRElSUyc6IFRydWUsICdPUFRJT05TJzogeydjb250ZXh0X3Byb2Nlc3NvcnMnOiBbJ2RqYW5nby50ZW1wbGF0ZS5jb250ZXh0X3Byb2Nlc3NvcnMuZGVidWcnLCAnZGphbmdvLnRlbXBsYXRlLmNvbnRleHRfcHJvY2Vzc29ycy5yZXF1ZXN0JywgJ2RqYW5nby5jb250cmliLmF1dGguY29udGV4dF9wcm9jZXNzb3JzLmF1dGgnLCAnZGphbmdvLmNvbnRyaWIubWVzc2FnZXMuY29udGV4dF9wcm9jZXNzb3JzLm1lc3NhZ2VzJ119fV0KVEVTVF9OT05fU0VSSUFMSVpFRF9BUFBTID0gW10KVEVTVF9SVU5ORVIgPSAnZGphbmdvX25vc2UuTm9zZVRlc3RTdWl0ZVJ1bm5lcicKVEhPVVNBTkRfU0VQQVJBVE9SID0gJywnClRJTUVfRk9STUFUID0gJ1AnClRJTUVfSU5QVVRfRk9STUFUUyA9IFsnJUg6JU06JVMnLCAnJUg6JU06JVMuJWYnLCAnJUg6JU0nXQpUSU1FX1pPTkUgPSAnVVRDJwpVU0VfRVRBR1MgPSBGYWxzZQpVU0VfSTE4TiA9IFRydWUKVVNFX0wxME4gPSBUcnVlClVTRV9USE9VU0FORF9TRVBBUkFUT1IgPSBGYWxzZQpVU0VfVFogPSBUcnVlClVTRV9YX0ZPUldBUkRFRF9IT1NUID0gRmFsc2UKVVNFX1hfRk9SV0FSREVEX1BPUlQgPSBGYWxzZQpXRUJQQUNLX0xPQURFUiA9IHsnREVGQVVMVCc6IHsnQlVORExFX0RJUl9OQU1FJzogJ2J1bmRsZXMvJywgJ1NUQVRTX0ZJTEUnOiAnRDpcXFBQTEFcXHdlYnBhY2stc3RhdHMuanNvbid9fQpXU0dJX0FQUExJQ0FUSU9OID0gJ2thcGUud3NnaS5hcHBsaWNhdGlvbicKWF9GUkFNRV9PUFRJT05TID0gJ1NBTUVPUklHSU4nCllFQVJfTU9OVEhfRk9STUFUID0gJ0YgWScKCgpZb3UncmUgc2VlaW5nIHRoaXMgZXJyb3IgYmVjYXVzZSB5b3UgaGF2ZSBERUJVRyA9IFRydWUgaW4geW91cgpEamFuZ28gc2V0dGluZ3MgZmlsZS4gQ2hhbmdlIHRoYXQgdG8gRmFsc2UsIGFuZCBEamFuZ28gd2lsbApkaXNwbGF5IGEgc3RhbmRhcmQgcGFnZSBnZW5lcmF0ZWQgYnkgdGhlIGhhbmRsZXIgZm9yIHRoaXMgc3RhdHVzIGNvZGUuCgo=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/plain\"}" - } -}, -{ - "model": "silk.response", - "pk": "5de4155e-a71f-4aa5-9805-8e3dd5258e67", - "fields": { - "request": "474965a4-6b40-4743-ba55-7583d3f1c013", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "5df170c3-9aee-438d-9a4d-e7931fa89703", - "fields": { - "request": "d166bd14-5890-44cb-85a2-72d2a3fb7a6b", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "607568e4-8057-48d2-9789-4064cc02b5e7", - "fields": { - "request": "19fc08d5-5883-43a0-ac89-e3b50a03573d", - "status_code": 200, - "raw_body": "eyJzd2FnZ2VyIjogIjIuMCIsICJpbmZvIjogeyJ0aXRsZSI6ICIiLCAidmVyc2lvbiI6ICIifSwgInBhdGhzIjogeyIvYXBpL2FwcGxpY2F0aW9ucy8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAiYXBwbGljYXRpb25zX2xpc3QiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogInBhZ2UiLCAicmVxdWlyZWQiOiBmYWxzZSwgImluIjogInF1ZXJ5IiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbImFwcGxpY2F0aW9ucyJdfSwgInBvc3QiOiB7Im9wZXJhdGlvbklkIjogImFwcGxpY2F0aW9uc19jcmVhdGUiLCAicmVzcG9uc2VzIjogeyIyMDEiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InN0dWRlbnRfbnBtIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgInZhY2FuY3lfaWQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9fSwgInJlcXVpcmVkIjogWyJzdHVkZW50X25wbSIsICJ2YWNhbmN5X2lkIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsiYXBwbGljYXRpb25zIl19fSwgIi9hcGkvYXBwbGljYXRpb25zL3tpZH0vIjogeyJnZXQiOiB7Im9wZXJhdGlvbklkIjogImFwcGxpY2F0aW9uc19yZWFkIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbImFwcGxpY2F0aW9ucyJdfSwgInB1dCI6IHsib3BlcmF0aW9uSWQiOiAiYXBwbGljYXRpb25zX3VwZGF0ZSIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InN0dWRlbnRfbnBtIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgInZhY2FuY3lfaWQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9fSwgInJlcXVpcmVkIjogWyJzdHVkZW50X25wbSIsICJ2YWNhbmN5X2lkIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsiYXBwbGljYXRpb25zIl19LCAicGF0Y2giOiB7Im9wZXJhdGlvbklkIjogImFwcGxpY2F0aW9uc19wYXJ0aWFsX3VwZGF0ZSIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InN0dWRlbnRfbnBtIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgInZhY2FuY3lfaWQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9fX19XSwgImNvbnN1bWVzIjogWyJhcHBsaWNhdGlvbi9qc29uIl0sICJ0YWdzIjogWyJhcHBsaWNhdGlvbnMiXX0sICJkZWxldGUiOiB7Im9wZXJhdGlvbklkIjogImFwcGxpY2F0aW9uc19kZWxldGUiLCAicmVzcG9uc2VzIjogeyIyMDQiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsiYXBwbGljYXRpb25zIl19fSwgIi9hcGkvY29tcGFuaWVzLyI6IHsiZ2V0IjogeyJvcGVyYXRpb25JZCI6ICJjb21wYW5pZXNfbGlzdCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAicGFnZSIsICJyZXF1aXJlZCI6IGZhbHNlLCAiaW4iOiAicXVlcnkiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsiY29tcGFuaWVzIl19LCAicG9zdCI6IHsib3BlcmF0aW9uSWQiOiAiY29tcGFuaWVzX2NyZWF0ZSIsICJyZXNwb25zZXMiOiB7IjIwMSI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidXNlciI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAib2JqZWN0In0sICJkZXNjcmlwdGlvbiI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sICJ2ZXJpZmllZCI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiYm9vbGVhbiJ9LCAibG9nbyI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sICJhbGFtYXQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9fSwgInJlcXVpcmVkIjogWyJ1c2VyIiwgImRlc2NyaXB0aW9uIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsiY29tcGFuaWVzIl19fSwgIi9hcGkvY29tcGFuaWVzL3tpZH0vIjogeyJnZXQiOiB7Im9wZXJhdGlvbklkIjogImNvbXBhbmllc19yZWFkIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbImNvbXBhbmllcyJdfSwgInB1dCI6IHsib3BlcmF0aW9uSWQiOiAiY29tcGFuaWVzX3VwZGF0ZSIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InVzZXIiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogIm9iamVjdCJ9LCAiZGVzY3JpcHRpb24iOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAidmVyaWZpZWQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImJvb2xlYW4ifSwgImxvZ28iOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiYWxhbWF0IjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifX0sICJyZXF1aXJlZCI6IFsidXNlciIsICJkZXNjcmlwdGlvbiJdfX1dLCAiY29uc3VtZXMiOiBbImFwcGxpY2F0aW9uL2pzb24iXSwgInRhZ3MiOiBbImNvbXBhbmllcyJdfSwgInBhdGNoIjogeyJvcGVyYXRpb25JZCI6ICJjb21wYW5pZXNfcGFydGlhbF91cGRhdGUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ1c2VyIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJvYmplY3QifSwgImRlc2NyaXB0aW9uIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgInZlcmlmaWVkIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJib29sZWFuIn0sICJsb2dvIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImFsYW1hdCI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn19fX1dLCAiY29uc3VtZXMiOiBbImFwcGxpY2F0aW9uL2pzb24iXSwgInRhZ3MiOiBbImNvbXBhbmllcyJdfSwgImRlbGV0ZSI6IHsib3BlcmF0aW9uSWQiOiAiY29tcGFuaWVzX2RlbGV0ZSIsICJyZXNwb25zZXMiOiB7IjIwNCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJjb21wYW5pZXMiXX19LCAiL2FwaS9zdHVkZW50cy8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAic3R1ZGVudHNfbGlzdCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAicGFnZSIsICJyZXF1aXJlZCI6IGZhbHNlLCAiaW4iOiAicXVlcnkiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsic3R1ZGVudHMiXX0sICJwb3N0IjogeyJvcGVyYXRpb25JZCI6ICJzdHVkZW50c19jcmVhdGUiLCAicmVzcG9uc2VzIjogeyIyMDEiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InVzZXIiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogIm9iamVjdCJ9LCAibnBtIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJpbnRlZ2VyIn0sICJyZXN1bWUiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImZpbGUifSwgInBob25lX251bWJlciI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sICJib29rbWFya2VkX3ZhY2FuY2llcyI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiYXJyYXkiLCAiaXRlbXMiOiB7InR5cGUiOiAic3RyaW5nIn19fSwgInJlcXVpcmVkIjogWyJ1c2VyIiwgIm5wbSJdfX1dLCAiY29uc3VtZXMiOiBbImFwcGxpY2F0aW9uL2pzb24iXSwgInRhZ3MiOiBbInN0dWRlbnRzIl19fSwgIi9hcGkvc3R1ZGVudHMve2lkfS8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAic3R1ZGVudHNfcmVhZCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJzdHVkZW50cyJdfSwgInB1dCI6IHsib3BlcmF0aW9uSWQiOiAic3R1ZGVudHNfdXBkYXRlIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCB7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidXNlciI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAib2JqZWN0In0sICJucG0iOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImludGVnZXIifSwgInJlc3VtZSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiZmlsZSJ9LCAicGhvbmVfbnVtYmVyIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImJvb2ttYXJrZWRfdmFjYW5jaWVzIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJhcnJheSIsICJpdGVtcyI6IHsidHlwZSI6ICJzdHJpbmcifX19LCAicmVxdWlyZWQiOiBbInVzZXIiLCAibnBtIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsic3R1ZGVudHMiXX0sICJwYXRjaCI6IHsib3BlcmF0aW9uSWQiOiAic3R1ZGVudHNfcGFydGlhbF91cGRhdGUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ1c2VyIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJvYmplY3QifSwgIm5wbSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiaW50ZWdlciJ9LCAicmVzdW1lIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJmaWxlIn0sICJwaG9uZV9udW1iZXIiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiYm9va21hcmtlZF92YWNhbmNpZXMiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImFycmF5IiwgIml0ZW1zIjogeyJ0eXBlIjogInN0cmluZyJ9fX19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsic3R1ZGVudHMiXX0sICJkZWxldGUiOiB7Im9wZXJhdGlvbklkIjogInN0dWRlbnRzX2RlbGV0ZSIsICJyZXNwb25zZXMiOiB7IjIwNCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJzdHVkZW50cyJdfX0sICIvYXBpL3N0dWRlbnRzL3tpZH0vYm9va21hcmtlZC12YWNhbmNpZXMvIjogeyJwb3N0IjogeyJvcGVyYXRpb25JZCI6ICJzdHVkZW50c19ib29rbWFya192YWNhbmNpZXMiLCAicmVzcG9uc2VzIjogeyIyMDEiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ1c2VyIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJvYmplY3QifSwgIm5wbSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiaW50ZWdlciJ9LCAicmVzdW1lIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJmaWxlIn0sICJwaG9uZV9udW1iZXIiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiYm9va21hcmtlZF92YWNhbmNpZXMiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImFycmF5IiwgIml0ZW1zIjogeyJ0eXBlIjogInN0cmluZyJ9fX0sICJyZXF1aXJlZCI6IFsidXNlciIsICJucG0iXX19XSwgImNvbnN1bWVzIjogWyJhcHBsaWNhdGlvbi9qc29uIl0sICJ0YWdzIjogWyJzdHVkZW50cyJdfSwgImRlbGV0ZSI6IHsib3BlcmF0aW9uSWQiOiAic3R1ZGVudHNfdW5ib29rbWFya192YWNhbmNpZXMiLCAicmVzcG9uc2VzIjogeyIyMDQiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsic3R1ZGVudHMiXX19LCAiL2FwaS9zdXBlcnZpc29ycy8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAic3VwZXJ2aXNvcnNfbGlzdCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAicGFnZSIsICJyZXF1aXJlZCI6IGZhbHNlLCAiaW4iOiAicXVlcnkiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsic3VwZXJ2aXNvcnMiXX0sICJwb3N0IjogeyJvcGVyYXRpb25JZCI6ICJzdXBlcnZpc29yc19jcmVhdGUiLCAicmVzcG9uc2VzIjogeyIyMDEiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InVzZXIiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogIm9iamVjdCJ9LCAibmlwIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJpbnRlZ2VyIn19LCAicmVxdWlyZWQiOiBbInVzZXIiLCAibmlwIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsic3VwZXJ2aXNvcnMiXX19LCAiL2FwaS9zdXBlcnZpc29ycy97aWR9LyI6IHsiZ2V0IjogeyJvcGVyYXRpb25JZCI6ICJzdXBlcnZpc29yc19yZWFkIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbInN1cGVydmlzb3JzIl19LCAicHV0IjogeyJvcGVyYXRpb25JZCI6ICJzdXBlcnZpc29yc191cGRhdGUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ1c2VyIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJvYmplY3QifSwgIm5pcCI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiaW50ZWdlciJ9fSwgInJlcXVpcmVkIjogWyJ1c2VyIiwgIm5pcCJdfX1dLCAiY29uc3VtZXMiOiBbImFwcGxpY2F0aW9uL2pzb24iXSwgInRhZ3MiOiBbInN1cGVydmlzb3JzIl19LCAicGF0Y2giOiB7Im9wZXJhdGlvbklkIjogInN1cGVydmlzb3JzX3BhcnRpYWxfdXBkYXRlIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCB7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidXNlciI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAib2JqZWN0In0sICJuaXAiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImludGVnZXIifX19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsic3VwZXJ2aXNvcnMiXX0sICJkZWxldGUiOiB7Im9wZXJhdGlvbklkIjogInN1cGVydmlzb3JzX2RlbGV0ZSIsICJyZXNwb25zZXMiOiB7IjIwNCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJzdXBlcnZpc29ycyJdfX0sICIvYXBpL3VzZXJzLyI6IHsiZ2V0IjogeyJvcGVyYXRpb25JZCI6ICJ1c2Vyc19saXN0IiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJwYWdlIiwgInJlcXVpcmVkIjogZmFsc2UsICJpbiI6ICJxdWVyeSIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJ1c2VycyJdfSwgInBvc3QiOiB7Im9wZXJhdGlvbklkIjogInVzZXJzX2NyZWF0ZSIsICJyZXNwb25zZXMiOiB7IjIwMSI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidXNlcm5hbWUiOiB7ImRlc2NyaXB0aW9uIjogIlJlcXVpcmVkLiAxNTAgY2hhcmFjdGVycyBvciBmZXdlci4gTGV0dGVycywgZGlnaXRzIGFuZCBALy4vKy8tL18gb25seS4iLCAidHlwZSI6ICJzdHJpbmcifSwgImVtYWlsIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImlzX3N0YWZmIjogeyJkZXNjcmlwdGlvbiI6ICJEZXNpZ25hdGVzIHdoZXRoZXIgdGhlIHVzZXIgY2FuIGxvZyBpbnRvIHRoaXMgYWRtaW4gc2l0ZS4iLCAidHlwZSI6ICJib29sZWFuIn19LCAicmVxdWlyZWQiOiBbInVzZXJuYW1lIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsidXNlcnMiXX19LCAiL2FwaS91c2Vycy9tZS8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAidXNlcnNfbWUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbXSwgInRhZ3MiOiBbInVzZXJzIl19fSwgIi9hcGkvdXNlcnMve2lkfS8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAidXNlcnNfcmVhZCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJ1c2VycyJdfSwgInB1dCI6IHsib3BlcmF0aW9uSWQiOiAidXNlcnNfdXBkYXRlIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCB7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidXNlcm5hbWUiOiB7ImRlc2NyaXB0aW9uIjogIlJlcXVpcmVkLiAxNTAgY2hhcmFjdGVycyBvciBmZXdlci4gTGV0dGVycywgZGlnaXRzIGFuZCBALy4vKy8tL18gb25seS4iLCAidHlwZSI6ICJzdHJpbmcifSwgImVtYWlsIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImlzX3N0YWZmIjogeyJkZXNjcmlwdGlvbiI6ICJEZXNpZ25hdGVzIHdoZXRoZXIgdGhlIHVzZXIgY2FuIGxvZyBpbnRvIHRoaXMgYWRtaW4gc2l0ZS4iLCAidHlwZSI6ICJib29sZWFuIn19LCAicmVxdWlyZWQiOiBbInVzZXJuYW1lIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsidXNlcnMiXX0sICJwYXRjaCI6IHsib3BlcmF0aW9uSWQiOiAidXNlcnNfcGFydGlhbF91cGRhdGUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ1c2VybmFtZSI6IHsiZGVzY3JpcHRpb24iOiAiUmVxdWlyZWQuIDE1MCBjaGFyYWN0ZXJzIG9yIGZld2VyLiBMZXR0ZXJzLCBkaWdpdHMgYW5kIEAvLi8rLy0vXyBvbmx5LiIsICJ0eXBlIjogInN0cmluZyJ9LCAiZW1haWwiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiaXNfc3RhZmYiOiB7ImRlc2NyaXB0aW9uIjogIkRlc2lnbmF0ZXMgd2hldGhlciB0aGUgdXNlciBjYW4gbG9nIGludG8gdGhpcyBhZG1pbiBzaXRlLiIsICJ0eXBlIjogImJvb2xlYW4ifX19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsidXNlcnMiXX0sICJkZWxldGUiOiB7Im9wZXJhdGlvbklkIjogInVzZXJzX2RlbGV0ZSIsICJyZXNwb25zZXMiOiB7IjIwNCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJ1c2VycyJdfX0sICIvYXBpL3ZhY2FuY2llcy8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAidmFjYW5jaWVzX2xpc3QiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogInBhZ2UiLCAicmVxdWlyZWQiOiBmYWxzZSwgImluIjogInF1ZXJ5IiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbInZhY2FuY2llcyJdfSwgInBvc3QiOiB7Im9wZXJhdGlvbklkIjogInZhY2FuY2llc19jcmVhdGUiLCAicmVzcG9uc2VzIjogeyIyMDEiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7ImNvbXBhbnkiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogIm9iamVjdCJ9LCAidmVyaWZpZWQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImJvb2xlYW4ifSwgIm9wZW5fdGltZSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sICJkZXNjcmlwdGlvbiI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sICJjbG9zZV90aW1lIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifX0sICJyZXF1aXJlZCI6IFsiY29tcGFueSIsICJvcGVuX3RpbWUiLCAiY2xvc2VfdGltZSJdfX1dLCAiY29uc3VtZXMiOiBbImFwcGxpY2F0aW9uL2pzb24iXSwgInRhZ3MiOiBbInZhY2FuY2llcyJdfX0sICIvYXBpL3ZhY2FuY2llcy97aWR9LyI6IHsiZ2V0IjogeyJvcGVyYXRpb25JZCI6ICJ2YWNhbmNpZXNfcmVhZCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJ2YWNhbmNpZXMiXX0sICJwdXQiOiB7Im9wZXJhdGlvbklkIjogInZhY2FuY2llc191cGRhdGUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJjb21wYW55IjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJvYmplY3QifSwgInZlcmlmaWVkIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJib29sZWFuIn0sICJvcGVuX3RpbWUiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiZGVzY3JpcHRpb24iOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiY2xvc2VfdGltZSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn19LCAicmVxdWlyZWQiOiBbImNvbXBhbnkiLCAib3Blbl90aW1lIiwgImNsb3NlX3RpbWUiXX19XSwgImNvbnN1bWVzIjogWyJhcHBsaWNhdGlvbi9qc29uIl0sICJ0YWdzIjogWyJ2YWNhbmNpZXMiXX0sICJwYXRjaCI6IHsib3BlcmF0aW9uSWQiOiAidmFjYW5jaWVzX3BhcnRpYWxfdXBkYXRlIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCB7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsiY29tcGFueSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAib2JqZWN0In0sICJ2ZXJpZmllZCI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiYm9vbGVhbiJ9LCAib3Blbl90aW1lIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImRlc2NyaXB0aW9uIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImNsb3NlX3RpbWUiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9fX19XSwgImNvbnN1bWVzIjogWyJhcHBsaWNhdGlvbi9qc29uIl0sICJ0YWdzIjogWyJ2YWNhbmNpZXMiXX0sICJkZWxldGUiOiB7Im9wZXJhdGlvbklkIjogInZhY2FuY2llc19kZWxldGUiLCAicmVzcG9uc2VzIjogeyIyMDQiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsidmFjYW5jaWVzIl19fX0sICJzZWN1cml0eURlZmluaXRpb25zIjogeyJiYXNpYyI6IHsidHlwZSI6ICJiYXNpYyJ9fX0=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"application/openapi+json\", \"Allow\": \"GET, HEAD, OPTIONS\", \"Vary\": \"Accept\"}" - } -}, -{ - "model": "silk.response", - "pk": "607de267-614d-4739-94da-916de937f757", - "fields": { - "request": "e9cab203-cb12-4690-8714-a1a5cda0d3ca", - "status_code": 500, - "raw_body": "VHlwZUVycm9yIGF0IC9hcGkvc3R1ZGVudHMvMS9ib29rbWFya2VkLXZhY2FuY2llcy8KaW50KCkgYXJndW1lbnQgbXVzdCBiZSBhIHN0cmluZywgYSBieXRlcy1saWtlIG9iamVjdCBvciBhIG51bWJlciwgbm90ICdkaWN0JwoKUmVxdWVzdCBNZXRob2Q6IFBPU1QKUmVxdWVzdCBVUkw6IGh0dHA6Ly8xMjcuMC4wLjE6ODAwMC9hcGkvc3R1ZGVudHMvMS9ib29rbWFya2VkLXZhY2FuY2llcy8KRGphbmdvIFZlcnNpb246IDEuMTAuNQpQeXRob24gRXhlY3V0YWJsZTogQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXHB5dGhvbi5leGUKUHl0aG9uIFZlcnNpb246IDMuNi4wClB5dGhvbiBQYXRoOiBbJ0Q6XFxQUExBJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXHB5dGhvbjM2LnppcCcsICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyXFxETExzJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXGxpYicsICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXGxpYlxcc2l0ZS1wYWNrYWdlcyddClNlcnZlciB0aW1lOiBNb24sIDI3IE1hciAyMDE3IDE1OjQyOjAwICswMDAwCkluc3RhbGxlZCBBcHBsaWNhdGlvbnM6ClsnZGphbmdvLmNvbnRyaWIuYWRtaW4nLAogJ2RqYW5nby5jb250cmliLmF1dGgnLAogJ2RqYW5nby5jb250cmliLmNvbnRlbnR0eXBlcycsCiAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMnLAogJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzJywKICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcycsCiAnd2VicGFja19sb2FkZXInLAogJ2NvcmUnLAogJ3Jlc3RfZnJhbWV3b3JrJywKICdkamFuZ29fbm9zZScsCiAncmVzdF9mcmFtZXdvcmtfc3dhZ2dlcicsCiAnc2lsayddCkluc3RhbGxlZCBNaWRkbGV3YXJlOgpbJ2RqYW5nby5taWRkbGV3YXJlLnNlY3VyaXR5LlNlY3VyaXR5TWlkZGxld2FyZScsCiAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMubWlkZGxld2FyZS5TZXNzaW9uTWlkZGxld2FyZScsCiAnZGphbmdvLm1pZGRsZXdhcmUuY29tbW9uLkNvbW1vbk1pZGRsZXdhcmUnLAogJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5hdXRoLm1pZGRsZXdhcmUuQXV0aGVudGljYXRpb25NaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5tZXNzYWdlcy5taWRkbGV3YXJlLk1lc3NhZ2VNaWRkbGV3YXJlJywKICdkamFuZ28ubWlkZGxld2FyZS5jbGlja2phY2tpbmcuWEZyYW1lT3B0aW9uc01pZGRsZXdhcmUnLAogJ3NpbGsubWlkZGxld2FyZS5TaWxreU1pZGRsZXdhcmUnXQoKClRyYWNlYmFjazogIAoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXGRqYW5nb1xjb3JlXGhhbmRsZXJzXGV4Y2VwdGlvbi5weSIgaW4gaW5uZXIKICAzOS4gICAgICAgICAgICAgcmVzcG9uc2UgPSBnZXRfcmVzcG9uc2UocmVxdWVzdCkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cY29yZVxoYW5kbGVyc1xiYXNlLnB5IiBpbiBfZ2V0X3Jlc3BvbnNlCiAgMTg3LiAgICAgICAgICAgICAgICAgcmVzcG9uc2UgPSBzZWxmLnByb2Nlc3NfZXhjZXB0aW9uX2J5X21pZGRsZXdhcmUoZSwgcmVxdWVzdCkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cY29yZVxoYW5kbGVyc1xiYXNlLnB5IiBpbiBfZ2V0X3Jlc3BvbnNlCiAgMTg1LiAgICAgICAgICAgICAgICAgcmVzcG9uc2UgPSB3cmFwcGVkX2NhbGxiYWNrKHJlcXVlc3QsICpjYWxsYmFja19hcmdzLCAqKmNhbGxiYWNrX2t3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cdmlld3NcZGVjb3JhdG9yc1xjc3JmLnB5IiBpbiB3cmFwcGVkX3ZpZXcKICA1OC4gICAgICAgICByZXR1cm4gdmlld19mdW5jKCphcmdzLCAqKmt3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3c2V0cy5weSIgaW4gdmlldwogIDgzLiAgICAgICAgICAgICByZXR1cm4gc2VsZi5kaXNwYXRjaChyZXF1ZXN0LCAqYXJncywgKiprd2FyZ3MpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNccmVzdF9mcmFtZXdvcmtcdmlld3MucHkiIGluIGRpc3BhdGNoCiAgNDgzLiAgICAgICAgICAgICByZXNwb25zZSA9IHNlbGYuaGFuZGxlX2V4Y2VwdGlvbihleGMpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNccmVzdF9mcmFtZXdvcmtcdmlld3MucHkiIGluIGhhbmRsZV9leGNlcHRpb24KICA0NDMuICAgICAgICAgICAgIHNlbGYucmFpc2VfdW5jYXVnaHRfZXhjZXB0aW9uKGV4YykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3cy5weSIgaW4gZGlzcGF0Y2gKICA0ODAuICAgICAgICAgICAgIHJlc3BvbnNlID0gaGFuZGxlcihyZXF1ZXN0LCAqYXJncywgKiprd2FyZ3MpCgpGaWxlICJEOlxQUExBXGNvcmVcdmlld3NcYWNjb3VudHMucHkiIGluIGJvb2ttYXJrX3ZhY2FuY2llcwogIDMwLiAgICAgICAgIHZhY2FuY3kgPSBnZXRfb2JqZWN0X29yXzQwNChWYWNhbmN5Lm9iamVjdHMuYWxsKCksIHBrPXJlcXVlc3QuZGF0YSkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cc2hvcnRjdXRzLnB5IiBpbiBnZXRfb2JqZWN0X29yXzQwNAogIDg1LiAgICAgICAgIHJldHVybiBxdWVyeXNldC5nZXQoKmFyZ3MsICoqa3dhcmdzKQoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXGRqYW5nb1xkYlxtb2RlbHNccXVlcnkucHkiIGluIGdldAogIDM3Ni4gICAgICAgICBjbG9uZSA9IHNlbGYuZmlsdGVyKCphcmdzLCAqKmt3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cZGJcbW9kZWxzXHF1ZXJ5LnB5IiBpbiBmaWx0ZXIKICA3OTYuICAgICAgICAgcmV0dXJuIHNlbGYuX2ZpbHRlcl9vcl9leGNsdWRlKEZhbHNlLCAqYXJncywgKiprd2FyZ3MpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNcZGphbmdvXGRiXG1vZGVsc1xxdWVyeS5weSIgaW4gX2ZpbHRlcl9vcl9leGNsdWRlCiAgODE0LiAgICAgICAgICAgICBjbG9uZS5xdWVyeS5hZGRfcShRKCphcmdzLCAqKmt3YXJncykpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNcZGphbmdvXGRiXG1vZGVsc1xzcWxccXVlcnkucHkiIGluIGFkZF9xCiAgMTIyNy4gICAgICAgICBjbGF1c2UsIF8gPSBzZWxmLl9hZGRfcShxX29iamVjdCwgc2VsZi51c2VkX2FsaWFzZXMpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNcZGphbmdvXGRiXG1vZGVsc1xzcWxccXVlcnkucHkiIGluIF9hZGRfcQogIDEyNTMuICAgICAgICAgICAgICAgICAgICAgYWxsb3dfam9pbnM9YWxsb3dfam9pbnMsIHNwbGl0X3N1YnE9c3BsaXRfc3VicSwKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cZGJcbW9kZWxzXHNxbFxxdWVyeS5weSIgaW4gYnVpbGRfZmlsdGVyCiAgMTE4Ny4gICAgICAgICAgICAgY29uZGl0aW9uID0gc2VsZi5idWlsZF9sb29rdXAobG9va3VwcywgY29sLCB2YWx1ZSkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cZGJcbW9kZWxzXHNxbFxxdWVyeS5weSIgaW4gYnVpbGRfbG9va3VwCiAgMTA4My4gICAgICAgICAgICAgICAgIHJldHVybiBmaW5hbF9sb29rdXAobGhzLCByaHMpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNcZGphbmdvXGRiXG1vZGVsc1xsb29rdXBzLnB5IiBpbiBfX2luaXRfXwogIDE5LiAgICAgICAgIHNlbGYucmhzID0gc2VsZi5nZXRfcHJlcF9sb29rdXAoKQoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXGRqYW5nb1xkYlxtb2RlbHNcbG9va3Vwcy5weSIgaW4gZ2V0X3ByZXBfbG9va3VwCiAgNTkuICAgICAgICAgICAgIHJldHVybiBzZWxmLmxocy5vdXRwdXRfZmllbGQuZ2V0X3ByZXBfdmFsdWUoc2VsZi5yaHMpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNcZGphbmdvXGRiXG1vZGVsc1xmaWVsZHNcX19pbml0X18ucHkiIGluIGdldF9wcmVwX3ZhbHVlCiAgOTQ2LiAgICAgICAgIHJldHVybiBpbnQodmFsdWUpCgpFeGNlcHRpb24gVHlwZTogVHlwZUVycm9yIGF0IC9hcGkvc3R1ZGVudHMvMS9ib29rbWFya2VkLXZhY2FuY2llcy8KRXhjZXB0aW9uIFZhbHVlOiBpbnQoKSBhcmd1bWVudCBtdXN0IGJlIGEgc3RyaW5nLCBhIGJ5dGVzLWxpa2Ugb2JqZWN0IG9yIGEgbnVtYmVyLCBub3QgJ2RpY3QnClJlcXVlc3QgaW5mb3JtYXRpb246ClVTRVI6IGthcGUKCkdFVDogTm8gR0VUIGRhdGEKClBPU1Q6IE5vIFBPU1QgZGF0YQoKRklMRVM6IE5vIEZJTEVTIGRhdGEKCkNPT0tJRVM6CnNlc3Npb25pZCA9ICdibHQ4NzdnNWZqbXVjeHkzZGQ1dXhjaXphdmI5b3BvdicKY3NyZnRva2VuID0gJzFFRVAyU3dLdDFLOVFiV25GUFN5V1BJaWJ0TzdNQWFWcUtMRWVvb0ZnWVZ5ZGpZUG9nbjBPd3AyOW9VVzZBNksnCgpNRVRBOgpBTExVU0VSU1BST0ZJTEUgPSAnQzpcXFByb2dyYW1EYXRhJwpBUFBEQVRBID0gJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxSb2FtaW5nJwpDT01NT05QUk9HUkFNRklMRVMgPSAnQzpcXFByb2dyYW0gRmlsZXMgKHg4NilcXENvbW1vbiBGaWxlcycKQ09NTU9OUFJPR1JBTUZJTEVTKFg4NikgPSAnQzpcXFByb2dyYW0gRmlsZXMgKHg4NilcXENvbW1vbiBGaWxlcycKQ09NTU9OUFJPR1JBTVc2NDMyID0gJ0M6XFxQcm9ncmFtIEZpbGVzXFxDb21tb24gRmlsZXMnCkNPTVBVVEVSTkFNRSA9ICdGQVJIQU4nCkNPTVNQRUMgPSAnQzpcXFdJTkRPV1NcXHN5c3RlbTMyXFxjbWQuZXhlJwpDT05URU5UX0xFTkdUSCA9ICcyJwpDT05URU5UX1RZUEUgPSAnYXBwbGljYXRpb24vanNvbicKQ1NSRl9DT09LSUUgPSAnMUVFUDJTd0t0MUs5UWJXbkZQU3lXUElpYnRPN01BYVZxS0xFZW9vRmdZVnlkallQb2duME93cDI5b1VXNkE2SycKREpBTkdPX1NFVFRJTkdTX01PRFVMRSA9ICdrYXBlLnNldHRpbmdzJwpGUFNfQlJPV1NFUl9BUFBfUFJPRklMRV9TVFJJTkcgPSAnSW50ZXJuZXQgRXhwbG9yZXInCkZQU19CUk9XU0VSX1VTRVJfUFJPRklMRV9TVFJJTkcgPSAnRGVmYXVsdCcKRlBfTk9fSE9TVF9DSEVDSyA9ICdOTycKR0FURVdBWV9JTlRFUkZBQ0UgPSAnQ0dJLzEuMScKSE9NRURSSVZFID0gJ0M6JwpIT01FUEFUSCA9ICdcXFVzZXJzXFxmYXJoYV8wMDAnCkhUVFBfQUNDRVBUID0gJ2FwcGxpY2F0aW9uL2pzb24nCkhUVFBfQUNDRVBUX0VOQ09ESU5HID0gJ2d6aXAsIGRlZmxhdGUsIGJyJwpIVFRQX0FDQ0VQVF9MQU5HVUFHRSA9ICdpZC1JRCxpZDtxPTAuOCxlbi1VUztxPTAuNixlbjtxPTAuNCcKSFRUUF9DT05ORUNUSU9OID0gJ2tlZXAtYWxpdmUnCkhUVFBfQ09PS0lFID0gJ3Nlc3Npb25pZD1ibHQ4NzdnNWZqbXVjeHkzZGQ1dXhjaXphdmI5b3BvdjsgY3NyZnRva2VuPTFFRVAyU3dLdDFLOVFiV25GUFN5V1BJaWJ0TzdNQWFWcUtMRWVvb0ZnWVZ5ZGpZUG9nbjBPd3AyOW9VVzZBNksnCkhUVFBfSE9TVCA9ICcxMjcuMC4wLjE6ODAwMCcKSFRUUF9PUklHSU4gPSAnaHR0cDovLzEyNy4wLjAuMTo4MDAwJwpIVFRQX1JFRkVSRVIgPSAnaHR0cDovLzEyNy4wLjAuMTo4MDAwL2FwaScKSFRUUF9VU0VSX0FHRU5UID0gJ01vemlsbGEvNS4wIChXaW5kb3dzIE5UIDEwLjA7IFdPVzY0KSBBcHBsZVdlYktpdC81MzcuMzYgKEtIVE1MLCBsaWtlIEdlY2tvKSBDaHJvbWUvNTYuMC4yOTI0Ljg3IFNhZmFyaS81MzcuMzYnCkhUVFBfWF9DU1JGVE9LRU4gPSAnanE5MUJ1RjVlNVI3U2pNRlJjMlROZnZXVThsRE82d3lJd2dRTjB4MDEyMndmck83QUR4bEZXY0dTM3JzODZzbicKTE9DQUxBUFBEQVRBID0gJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbCcKTE9HT05TRVJWRVIgPSAnXFxcXEZBUkhBTicKTlVNQkVSX09GX1BST0NFU1NPUlMgPSAnMicKT05FRFJJVkUgPSAnQzpcXFVzZXJzXFxmYXJoYV8wMDBcXE9uZURyaXZlJwpPUyA9ICdXaW5kb3dzX05UJwpQQVRIID0gJ0M6XFxQcm9ncmFtRGF0YVxcT3JhY2xlXFxKYXZhXFxqYXZhcGF0aDtDOlxcUHJvZ3JhbSBGaWxlc1xcSGFza2VsbFxcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxIYXNrZWxsIFBsYXRmb3JtXFw3LjEwLjNcXGxpYlxcZXh0cmFsaWJzXFxiaW47QzpcXFByb2dyYW0gRmlsZXNcXEhhc2tlbGwgUGxhdGZvcm1cXDcuMTAuM1xcYmluO0M6XFxXSU5ET1dTXFxzeXN0ZW0zMjtDOlxcV0lORE9XUztDOlxcV0lORE9XU1xcU3lzdGVtMzJcXFdiZW07QzpcXFdJTkRPV1NcXFN5c3RlbTMyXFxXaW5kb3dzUG93ZXJTaGVsbFxcdjEuMFxcO0M6XFxQcm9ncmFtIEZpbGVzXFxIYXNrZWxsIFBsYXRmb3JtXFw3LjEwLjNcXG1pbmd3XFxiaW47QzpcXFByb2dyYW0gRmlsZXNcXEphdmFcXGpkazEuOC4wXzc3XFxiaW47QzpcXGN5Z3dpbjY0XFxiaW47JWxvY2FsYXBwZGF0YSVcXE1pY3Jvc29mdFxcV2luZG93c0FwcHM7RDpcXFhBTVBQXFxwaHA7QzpcXFByb2dyYW0gRmlsZXNcXEdpdFxcY21kO0M6XFx4YW1wcFxccGhwO0M6XFxQcm9ncmFtRGF0YVxcQ29tcG9zZXJTZXR1cFxcYmluO0M6XFxQcm9ncmFtIEZpbGVzICh4ODYpXFxub2RlanNcXDtDOlxcUHJvZ3JhbSBGaWxlc1xcUG9zdGdyZVNRTFxcOS42XFxiaW47QzpcXFByb2dyYW0gRmlsZXNcXE1BVExBQlxcUjIwMTdhXFxiaW47QzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXExvY2FsXFxQcm9ncmFtc1xcUHl0aG9uXFxQeXRob24zNi0zMlxcU2NyaXB0c1xcO0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXDtDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcUm9hbWluZ1xcY2FiYWxcXGJpbjtEOlxcWEFNUFBcXHBocDtDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcUm9hbWluZ1xcQ29tcG9zZXJcXHZlbmRvclxcYmluO0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcTWljcm9zb2Z0XFxXaW5kb3dzQXBwcztDOlxccHl0aG9uLTMuNi4wJwpQQVRIRVhUID0gJy5DT007LkVYRTsuQkFUOy5DTUQ7LlZCUzsuVkJFOy5KUzsuSlNFOy5XU0Y7LldTSDsuTVNDJwpQQVRIX0lORk8gPSAnL2FwaS9zdHVkZW50cy8xL2Jvb2ttYXJrZWQtdmFjYW5jaWVzLycKUFJPQ0VTU09SX0FSQ0hJVEVDVFVSRSA9ICd4ODYnClBST0NFU1NPUl9BUkNISVRFVzY0MzIgPSAnQU1ENjQnClBST0NFU1NPUl9JREVOVElGSUVSID0gJ0ludGVsNjQgRmFtaWx5IDYgTW9kZWwgNTggU3RlcHBpbmcgOSwgR2VudWluZUludGVsJwpQUk9DRVNTT1JfTEVWRUwgPSAnNicKUFJPQ0VTU09SX1JFVklTSU9OID0gJzNhMDknClBST0dSQU1EQVRBID0gJ0M6XFxQcm9ncmFtRGF0YScKUFJPR1JBTUZJTEVTID0gJ0M6XFxQcm9ncmFtIEZpbGVzICh4ODYpJwpQUk9HUkFNRklMRVMoWDg2KSA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KScKUFJPR1JBTVc2NDMyID0gJ0M6XFxQcm9ncmFtIEZpbGVzJwpQUk9NUFQgPSAnJFAkRycKUFNNT0RVTEVQQVRIID0gJ0M6XFxXSU5ET1dTXFxzeXN0ZW0zMlxcV2luZG93c1Bvd2VyU2hlbGxcXHYxLjBcXE1vZHVsZXNcXCcKUFVCTElDID0gJ0M6XFxVc2Vyc1xcUHVibGljJwpRVUVSWV9TVFJJTkcgPSAnJwpSRU1PVEVfQUREUiA9ICcxMjcuMC4wLjEnClJFTU9URV9IT1NUID0gJycKUkVRVUVTVF9NRVRIT0QgPSAnUE9TVCcKUlVOX01BSU4gPSAndHJ1ZScKU0NSSVBUX05BTUUgPSAnJwpTRVJWRVJfTkFNRSA9ICdGYXJoYW4nClNFUlZFUl9QT1JUID0gJzgwMDAnClNFUlZFUl9QUk9UT0NPTCA9ICdIVFRQLzEuMScKU0VSVkVSX1NPRlRXQVJFID0gJ1dTR0lTZXJ2ZXIvMC4yJwpTRVNTSU9OTkFNRSA9ICdDb25zb2xlJwpTWVNURU1EUklWRSA9ICdDOicKU1lTVEVNUk9PVCA9ICdDOlxcV0lORE9XUycKVEVNUCA9ICdDOlxcVXNlcnNcXEZBUkhBX34xXFxBcHBEYXRhXFxMb2NhbFxcVGVtcCcKVE1QID0gJ0M6XFxVc2Vyc1xcRkFSSEFffjFcXEFwcERhdGFcXExvY2FsXFxUZW1wJwpVU0VSRE9NQUlOID0gJ0ZhcmhhbicKVVNFUkRPTUFJTl9ST0FNSU5HUFJPRklMRSA9ICdGYXJoYW4nClVTRVJOQU1FID0gJ0ZhcmhhbiBGYXJhc2RhaycKVVNFUlBST0ZJTEUgPSAnQzpcXFVzZXJzXFxmYXJoYV8wMDAnClZCT1hfTVNJX0lOU1RBTExfUEFUSCA9ICdDOlxcUHJvZ3JhbSBGaWxlc1xcT3JhY2xlXFxWaXJ0dWFsQm94XFwnCldJTkRJUiA9ICdDOlxcV0lORE9XUycKd3NnaS5lcnJvcnMgPSA8X2lvLlRleHRJT1dyYXBwZXIgbmFtZT0nPHN0ZGVycj4nIG1vZGU9J3cnIGVuY29kaW5nPSd1dGYtOCc+CndzZ2kuZmlsZV93cmFwcGVyID0gJycKd3NnaS5pbnB1dCA9IDxfaW8uQnVmZmVyZWRSZWFkZXIgbmFtZT0xMjE2Pgp3c2dpLm11bHRpcHJvY2VzcyA9IEZhbHNlCndzZ2kubXVsdGl0aHJlYWQgPSBUcnVlCndzZ2kucnVuX29uY2UgPSBGYWxzZQp3c2dpLnVybF9zY2hlbWUgPSAnaHR0cCcKd3NnaS52ZXJzaW9uID0gCgpTZXR0aW5nczoKVXNpbmcgc2V0dGluZ3MgbW9kdWxlIGthcGUuc2V0dGluZ3MKQUJTT0xVVEVfVVJMX09WRVJSSURFUyA9IHt9CkFETUlOUyA9IFtdCkFMTE9XRURfSE9TVFMgPSBbJ2JvdC5yZWNydWl0LmlkJywgJzEwNC4yMzYuNzYuMTYxJywgJ2xvY2FsaG9zdCcsICcxMjcuMC4wLjEnXQpBUFBFTkRfU0xBU0ggPSBUcnVlCkFVVEhFTlRJQ0FUSU9OX0JBQ0tFTkRTID0gWydkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCddCkFVVEhfUEFTU1dPUkRfVkFMSURBVE9SUyA9ICcqKioqKioqKioqKioqKioqKioqKicKQVVUSF9VU0VSX01PREVMID0gJ2F1dGguVXNlcicKQkFTRV9ESVIgPSAnRDpcXFBQTEEnCkNBQ0hFUyA9IHsnZGVmYXVsdCc6IHsnQkFDS0VORCc6ICdkamFuZ28uY29yZS5jYWNoZS5iYWNrZW5kcy5sb2NtZW0uTG9jTWVtQ2FjaGUnfX0KQ0FDSEVfTUlERExFV0FSRV9BTElBUyA9ICdkZWZhdWx0JwpDQUNIRV9NSURETEVXQVJFX0tFWV9QUkVGSVggPSAnKioqKioqKioqKioqKioqKioqKionCkNBQ0hFX01JRERMRVdBUkVfU0VDT05EUyA9IDYwMApDU1JGX0NPT0tJRV9BR0UgPSAzMTQ0OTYwMApDU1JGX0NPT0tJRV9ET01BSU4gPSBOb25lCkNTUkZfQ09PS0lFX0hUVFBPTkxZID0gRmFsc2UKQ1NSRl9DT09LSUVfTkFNRSA9ICdjc3JmdG9rZW4nCkNTUkZfQ09PS0lFX1BBVEggPSAnLycKQ1NSRl9DT09LSUVfU0VDVVJFID0gRmFsc2UKQ1NSRl9GQUlMVVJFX1ZJRVcgPSAnZGphbmdvLnZpZXdzLmNzcmYuY3NyZl9mYWlsdXJlJwpDU1JGX0hFQURFUl9OQU1FID0gJ0hUVFBfWF9DU1JGVE9LRU4nCkNTUkZfVFJVU1RFRF9PUklHSU5TID0gW10KREFUQUJBU0VTID0geydkZWZhdWx0JzogeydFTkdJTkUnOiAnZGphbmdvLmRiLmJhY2tlbmRzLnBvc3RncmVzcWxfcHN5Y29wZzInLCAnTkFNRSc6ICdrYXBlJywgJ1VTRVInOiAna2FwZScsICdQQVNTV09SRCc6ICcqKioqKioqKioqKioqKioqKioqKicsICdIT1NUJzogJ2xvY2FsaG9zdCcsICdQT1JUJzogJycsICdBVE9NSUNfUkVRVUVTVFMnOiBGYWxzZSwgJ0FVVE9DT01NSVQnOiBUcnVlLCAnQ09OTl9NQVhfQUdFJzogMCwgJ09QVElPTlMnOiB7fSwgJ1RJTUVfWk9ORSc6IE5vbmUsICdURVNUJzogeydDSEFSU0VUJzogTm9uZSwgJ0NPTExBVElPTic6IE5vbmUsICdOQU1FJzogTm9uZSwgJ01JUlJPUic6IE5vbmV9fX0KREFUQUJBU0VfUk9VVEVSUyA9IFtdCkRBVEFfVVBMT0FEX01BWF9NRU1PUllfU0laRSA9IDI2MjE0NDAKREFUQV9VUExPQURfTUFYX05VTUJFUl9GSUVMRFMgPSAxMDAwCkRBVEVUSU1FX0ZPUk1BVCA9ICdOIGosIFksIFAnCkRBVEVUSU1FX0lOUFVUX0ZPUk1BVFMgPSBbJyVZLSVtLSVkICVIOiVNOiVTJywgJyVZLSVtLSVkICVIOiVNOiVTLiVmJywgJyVZLSVtLSVkICVIOiVNJywgJyVZLSVtLSVkJywgJyVtLyVkLyVZICVIOiVNOiVTJywgJyVtLyVkLyVZICVIOiVNOiVTLiVmJywgJyVtLyVkLyVZICVIOiVNJywgJyVtLyVkLyVZJywgJyVtLyVkLyV5ICVIOiVNOiVTJywgJyVtLyVkLyV5ICVIOiVNOiVTLiVmJywgJyVtLyVkLyV5ICVIOiVNJywgJyVtLyVkLyV5J10KREFURV9GT1JNQVQgPSAnTiBqLCBZJwpEQVRFX0lOUFVUX0ZPUk1BVFMgPSBbJyVZLSVtLSVkJywgJyVtLyVkLyVZJywgJyVtLyVkLyV5JywgJyViICVkICVZJywgJyViICVkLCAlWScsICclZCAlYiAlWScsICclZCAlYiwgJVknLCAnJUIgJWQgJVknLCAnJUIgJWQsICVZJywgJyVkICVCICVZJywgJyVkICVCLCAlWSddCkRFQlVHID0gVHJ1ZQpERUJVR19QUk9QQUdBVEVfRVhDRVBUSU9OUyA9IEZhbHNlCkRFQ0lNQUxfU0VQQVJBVE9SID0gJy4nCkRFRkFVTFRfQ0hBUlNFVCA9ICd1dGYtOCcKREVGQVVMVF9DT05URU5UX1RZUEUgPSAndGV4dC9odG1sJwpERUZBVUxUX0VYQ0VQVElPTl9SRVBPUlRFUl9GSUxURVIgPSAnZGphbmdvLnZpZXdzLmRlYnVnLlNhZmVFeGNlcHRpb25SZXBvcnRlckZpbHRlcicKREVGQVVMVF9GSUxFX1NUT1JBR0UgPSAnZGphbmdvLmNvcmUuZmlsZXMuc3RvcmFnZS5GaWxlU3lzdGVtU3RvcmFnZScKREVGQVVMVF9GUk9NX0VNQUlMID0gJ3dlYm1hc3RlckBsb2NhbGhvc3QnCkRFRkFVTFRfSU5ERVhfVEFCTEVTUEFDRSA9ICcnCkRFRkFVTFRfVEFCTEVTUEFDRSA9ICcnCkRJU0FMTE9XRURfVVNFUl9BR0VOVFMgPSBbXQpFTUFJTF9CQUNLRU5EID0gJ2RqYW5nby5jb3JlLm1haWwuYmFja2VuZHMuc210cC5FbWFpbEJhY2tlbmQnCkVNQUlMX0hPU1QgPSAnbG9jYWxob3N0JwpFTUFJTF9IT1NUX1BBU1NXT1JEID0gJyoqKioqKioqKioqKioqKioqKioqJwpFTUFJTF9IT1NUX1VTRVIgPSAnJwpFTUFJTF9QT1JUID0gMjUKRU1BSUxfU1NMX0NFUlRGSUxFID0gTm9uZQpFTUFJTF9TU0xfS0VZRklMRSA9ICcqKioqKioqKioqKioqKioqKioqKicKRU1BSUxfU1VCSkVDVF9QUkVGSVggPSAnW0RqYW5nb10gJwpFTUFJTF9USU1FT1VUID0gTm9uZQpFTUFJTF9VU0VfU1NMID0gRmFsc2UKRU1BSUxfVVNFX1RMUyA9IEZhbHNlCkZJTEVfQ0hBUlNFVCA9ICd1dGYtOCcKRklMRV9VUExPQURfRElSRUNUT1JZX1BFUk1JU1NJT05TID0gTm9uZQpGSUxFX1VQTE9BRF9IQU5ETEVSUyA9IFsnZGphbmdvLmNvcmUuZmlsZXMudXBsb2FkaGFuZGxlci5NZW1vcnlGaWxlVXBsb2FkSGFuZGxlcicsICdkamFuZ28uY29yZS5maWxlcy51cGxvYWRoYW5kbGVyLlRlbXBvcmFyeUZpbGVVcGxvYWRIYW5kbGVyJ10KRklMRV9VUExPQURfTUFYX01FTU9SWV9TSVpFID0gMjYyMTQ0MApGSUxFX1VQTE9BRF9QRVJNSVNTSU9OUyA9IE5vbmUKRklMRV9VUExPQURfVEVNUF9ESVIgPSBOb25lCkZJUlNUX0RBWV9PRl9XRUVLID0gMApGSVhUVVJFX0RJUlMgPSBbXQpGT1JDRV9TQ1JJUFRfTkFNRSA9IE5vbmUKRk9STUFUX01PRFVMRV9QQVRIID0gTm9uZQpHWklQX0NPTlRFTlRfVFlQRVMgPSAKSUdOT1JBQkxFXzQwNF9VUkxTID0gW10KSU5TVEFMTEVEX0FQUFMgPSBbJ2RqYW5nby5jb250cmliLmFkbWluJywgJ2RqYW5nby5jb250cmliLmF1dGgnLCAnZGphbmdvLmNvbnRyaWIuY29udGVudHR5cGVzJywgJ2RqYW5nby5jb250cmliLnNlc3Npb25zJywgJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzJywgJ2RqYW5nby5jb250cmliLnN0YXRpY2ZpbGVzJywgJ3dlYnBhY2tfbG9hZGVyJywgJ2NvcmUnLCAncmVzdF9mcmFtZXdvcmsnLCAnZGphbmdvX25vc2UnLCAncmVzdF9mcmFtZXdvcmtfc3dhZ2dlcicsICdzaWxrJ10KSU5URVJOQUxfSVBTID0gW10KTEFOR1VBR0VTID0gWygnYWYnLCAnQWZyaWthYW5zJyksICgnYXInLCAnQXJhYmljJyksICgnYXN0JywgJ0FzdHVyaWFuJyksICgnYXonLCAnQXplcmJhaWphbmknKSwgKCdiZycsICdCdWxnYXJpYW4nKSwgKCdiZScsICdCZWxhcnVzaWFuJyksICgnYm4nLCAnQmVuZ2FsaScpLCAoJ2JyJywgJ0JyZXRvbicpLCAoJ2JzJywgJ0Jvc25pYW4nKSwgKCdjYScsICdDYXRhbGFuJyksICgnY3MnLCAnQ3plY2gnKSwgKCdjeScsICdXZWxzaCcpLCAoJ2RhJywgJ0RhbmlzaCcpLCAoJ2RlJywgJ0dlcm1hbicpLCAoJ2RzYicsICdMb3dlciBTb3JiaWFuJyksICgnZWwnLCAnR3JlZWsnKSwgKCdlbicsICdFbmdsaXNoJyksICgnZW4tYXUnLCAnQXVzdHJhbGlhbiBFbmdsaXNoJyksICgnZW4tZ2InLCAnQnJpdGlzaCBFbmdsaXNoJyksICgnZW8nLCAnRXNwZXJhbnRvJyksICgnZXMnLCAnU3BhbmlzaCcpLCAoJ2VzLWFyJywgJ0FyZ2VudGluaWFuIFNwYW5pc2gnKSwgKCdlcy1jbycsICdDb2xvbWJpYW4gU3BhbmlzaCcpLCAoJ2VzLW14JywgJ01leGljYW4gU3BhbmlzaCcpLCAoJ2VzLW5pJywgJ05pY2FyYWd1YW4gU3BhbmlzaCcpLCAoJ2VzLXZlJywgJ1ZlbmV6dWVsYW4gU3BhbmlzaCcpLCAoJ2V0JywgJ0VzdG9uaWFuJyksICgnZXUnLCAnQmFzcXVlJyksICgnZmEnLCAnUGVyc2lhbicpLCAoJ2ZpJywgJ0Zpbm5pc2gnKSwgKCdmcicsICdGcmVuY2gnKSwgKCdmeScsICdGcmlzaWFuJyksICgnZ2EnLCAnSXJpc2gnKSwgKCdnZCcsICdTY290dGlzaCBHYWVsaWMnKSwgKCdnbCcsICdHYWxpY2lhbicpLCAoJ2hlJywgJ0hlYnJldycpLCAoJ2hpJywgJ0hpbmRpJyksICgnaHInLCAnQ3JvYXRpYW4nKSwgKCdoc2InLCAnVXBwZXIgU29yYmlhbicpLCAoJ2h1JywgJ0h1bmdhcmlhbicpLCAoJ2lhJywgJ0ludGVybGluZ3VhJyksICgnaWQnLCAnSW5kb25lc2lhbicpLCAoJ2lvJywgJ0lkbycpLCAoJ2lzJywgJ0ljZWxhbmRpYycpLCAoJ2l0JywgJ0l0YWxpYW4nKSwgKCdqYScsICdKYXBhbmVzZScpLCAoJ2thJywgJ0dlb3JnaWFuJyksICgna2snLCAnS2F6YWtoJyksICgna20nLCAnS2htZXInKSwgKCdrbicsICdLYW5uYWRhJyksICgna28nLCAnS29yZWFuJyksICgnbGInLCAnTHV4ZW1ib3VyZ2lzaCcpLCAoJ2x0JywgJ0xpdGh1YW5pYW4nKSwgKCdsdicsICdMYXR2aWFuJyksICgnbWsnLCAnTWFjZWRvbmlhbicpLCAoJ21sJywgJ01hbGF5YWxhbScpLCAoJ21uJywgJ01vbmdvbGlhbicpLCAoJ21yJywgJ01hcmF0aGknKSwgKCdteScsICdCdXJtZXNlJyksICgnbmInLCAnTm9yd2VnaWFuIEJva23DpWwnKSwgKCduZScsICdOZXBhbGknKSwgKCdubCcsICdEdXRjaCcpLCAoJ25uJywgJ05vcndlZ2lhbiBOeW5vcnNrJyksICgnb3MnLCAnT3NzZXRpYycpLCAoJ3BhJywgJ1B1bmphYmknKSwgKCdwbCcsICdQb2xpc2gnKSwgKCdwdCcsICdQb3J0dWd1ZXNlJyksICgncHQtYnInLCAnQnJhemlsaWFuIFBvcnR1Z3Vlc2UnKSwgKCdybycsICdSb21hbmlhbicpLCAoJ3J1JywgJ1J1c3NpYW4nKSwgKCdzaycsICdTbG92YWsnKSwgKCdzbCcsICdTbG92ZW5pYW4nKSwgKCdzcScsICdBbGJhbmlhbicpLCAoJ3NyJywgJ1NlcmJpYW4nKSwgKCdzci1sYXRuJywgJ1NlcmJpYW4gTGF0aW4nKSwgKCdzdicsICdTd2VkaXNoJyksICgnc3cnLCAnU3dhaGlsaScpLCAoJ3RhJywgJ1RhbWlsJyksICgndGUnLCAnVGVsdWd1JyksICgndGgnLCAnVGhhaScpLCAoJ3RyJywgJ1R1cmtpc2gnKSwgKCd0dCcsICdUYXRhcicpLCAoJ3VkbScsICdVZG11cnQnKSwgKCd1aycsICdVa3JhaW5pYW4nKSwgKCd1cicsICdVcmR1JyksICgndmknLCAnVmlldG5hbWVzZScpLCAoJ3poLWhhbnMnLCAnU2ltcGxpZmllZCBDaGluZXNlJyksICgnemgtaGFudCcsICdUcmFkaXRpb25hbCBDaGluZXNlJyldCkxBTkdVQUdFU19CSURJID0gWydoZScsICdhcicsICdmYScsICd1ciddCkxBTkdVQUdFX0NPREUgPSAnZW4tdXMnCkxBTkdVQUdFX0NPT0tJRV9BR0UgPSBOb25lCkxBTkdVQUdFX0NPT0tJRV9ET01BSU4gPSBOb25lCkxBTkdVQUdFX0NPT0tJRV9OQU1FID0gJ2RqYW5nb19sYW5ndWFnZScKTEFOR1VBR0VfQ09PS0lFX1BBVEggPSAnLycKTE9DQUxFX1BBVEhTID0gW10KTE9HR0lORyA9IHt9CkxPR0dJTkdfQ09ORklHID0gJ2xvZ2dpbmcuY29uZmlnLmRpY3RDb25maWcnCkxPR0lOX1JFRElSRUNUX1VSTCA9ICcvYWNjb3VudHMvcHJvZmlsZS8nCkxPR0lOX1VSTCA9ICcvYWNjb3VudHMvbG9naW4vJwpMT0dPVVRfUkVESVJFQ1RfVVJMID0gTm9uZQpNQU5BR0VSUyA9IFtdCk1FRElBX1JPT1QgPSAnL2hvbWUvZmlsZXMnCk1FRElBX1VSTCA9ICcvZmlsZXMvJwpNRVNTQUdFX1NUT1JBR0UgPSAnZGphbmdvLmNvbnRyaWIubWVzc2FnZXMuc3RvcmFnZS5mYWxsYmFjay5GYWxsYmFja1N0b3JhZ2UnCk1JRERMRVdBUkUgPSBbJ2RqYW5nby5taWRkbGV3YXJlLnNlY3VyaXR5LlNlY3VyaXR5TWlkZGxld2FyZScsICdkamFuZ28uY29udHJpYi5zZXNzaW9ucy5taWRkbGV3YXJlLlNlc3Npb25NaWRkbGV3YXJlJywgJ2RqYW5nby5taWRkbGV3YXJlLmNvbW1vbi5Db21tb25NaWRkbGV3YXJlJywgJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJywgJ2RqYW5nby5jb250cmliLmF1dGgubWlkZGxld2FyZS5BdXRoZW50aWNhdGlvbk1pZGRsZXdhcmUnLCAnZGphbmdvLmNvbnRyaWIubWVzc2FnZXMubWlkZGxld2FyZS5NZXNzYWdlTWlkZGxld2FyZScsICdkamFuZ28ubWlkZGxld2FyZS5jbGlja2phY2tpbmcuWEZyYW1lT3B0aW9uc01pZGRsZXdhcmUnLCAnc2lsay5taWRkbGV3YXJlLlNpbGt5TWlkZGxld2FyZSddCk1JRERMRVdBUkVfQ0xBU1NFUyA9IFsnZGphbmdvLm1pZGRsZXdhcmUuY29tbW9uLkNvbW1vbk1pZGRsZXdhcmUnLCAnZGphbmdvLm1pZGRsZXdhcmUuY3NyZi5Dc3JmVmlld01pZGRsZXdhcmUnXQpNSUdSQVRJT05fTU9EVUxFUyA9IHt9Ck1PTlRIX0RBWV9GT1JNQVQgPSAnRiBqJwpOT1NFX0FSR1MgPSBbJy0td2l0aC1jb3ZlcmFnZScsICctLWNvdmVyLXBhY2thZ2U9Y29yZS52aWV3cycsICctLWNvdmVyLWh0bWwtZGlyPXRlc3QvYmFja2VuZCcsICctLWNvdmVyLWh0bWwnXQpOVU1CRVJfR1JPVVBJTkcgPSAwClBBU1NXT1JEX0hBU0hFUlMgPSAnKioqKioqKioqKioqKioqKioqKionClBBU1NXT1JEX1JFU0VUX1RJTUVPVVRfREFZUyA9ICcqKioqKioqKioqKioqKioqKioqKicKUFJFUEVORF9XV1cgPSBGYWxzZQpSRVNUX0ZSQU1FV09SSyA9IHsnREVGQVVMVF9QRVJNSVNTSU9OX0NMQVNTRVMnOiBbJ3Jlc3RfZnJhbWV3b3JrLnBlcm1pc3Npb25zLkRqYW5nb01vZGVsUGVybWlzc2lvbnNPckFub25SZWFkT25seSddfQpST09UX1VSTENPTkYgPSAna2FwZS51cmxzJwpSVU5OSU5HX0RFVlNFUlZFUiA9IFRydWUKU0VDUkVUX0tFWSA9ICcqKioqKioqKioqKioqKioqKioqKicKU0VDVVJFX0JST1dTRVJfWFNTX0ZJTFRFUiA9IEZhbHNlClNFQ1VSRV9DT05URU5UX1RZUEVfTk9TTklGRiA9IEZhbHNlClNFQ1VSRV9IU1RTX0lOQ0xVREVfU1VCRE9NQUlOUyA9IEZhbHNlClNFQ1VSRV9IU1RTX1NFQ09ORFMgPSAwClNFQ1VSRV9QUk9YWV9TU0xfSEVBREVSID0gTm9uZQpTRUNVUkVfUkVESVJFQ1RfRVhFTVBUID0gW10KU0VDVVJFX1NTTF9IT1NUID0gTm9uZQpTRUNVUkVfU1NMX1JFRElSRUNUID0gRmFsc2UKU0VSVkVSX0VNQUlMID0gJ3Jvb3RAbG9jYWxob3N0JwpTRVNTSU9OX0NBQ0hFX0FMSUFTID0gJ2RlZmF1bHQnClNFU1NJT05fQ09PS0lFX0FHRSA9IDEyMDk2MDAKU0VTU0lPTl9DT09LSUVfRE9NQUlOID0gTm9uZQpTRVNTSU9OX0NPT0tJRV9IVFRQT05MWSA9IEZhbHNlClNFU1NJT05fQ09PS0lFX05BTUUgPSAnc2Vzc2lvbmlkJwpTRVNTSU9OX0NPT0tJRV9QQVRIID0gJy8nClNFU1NJT05fQ09PS0lFX1NFQ1VSRSA9IEZhbHNlClNFU1NJT05fRU5HSU5FID0gJ2RqYW5nby5jb250cmliLnNlc3Npb25zLmJhY2tlbmRzLmRiJwpTRVNTSU9OX0VYUElSRV9BVF9CUk9XU0VSX0NMT1NFID0gRmFsc2UKU0VTU0lPTl9GSUxFX1BBVEggPSBOb25lClNFU1NJT05fU0FWRV9FVkVSWV9SRVFVRVNUID0gRmFsc2UKU0VTU0lPTl9TRVJJQUxJWkVSID0gJ2RqYW5nby5jb250cmliLnNlc3Npb25zLnNlcmlhbGl6ZXJzLkpTT05TZXJpYWxpemVyJwpTRVRUSU5HU19NT0RVTEUgPSAna2FwZS5zZXR0aW5ncycKU0hPUlRfREFURVRJTUVfRk9STUFUID0gJ20vZC9ZIFAnClNIT1JUX0RBVEVfRk9STUFUID0gJ20vZC9ZJwpTSUdOSU5HX0JBQ0tFTkQgPSAnZGphbmdvLmNvcmUuc2lnbmluZy5UaW1lc3RhbXBTaWduZXInClNJTEVOQ0VEX1NZU1RFTV9DSEVDS1MgPSBbXQpTVEFUSUNGSUxFU19ESVJTID0gJ0Q6XFxQUExBXFxhc3NldHMnClNUQVRJQ0ZJTEVTX0ZJTkRFUlMgPSBbJ2RqYW5nby5jb250cmliLnN0YXRpY2ZpbGVzLmZpbmRlcnMuRmlsZVN5c3RlbUZpbmRlcicsICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcy5maW5kZXJzLkFwcERpcmVjdG9yaWVzRmluZGVyJ10KU1RBVElDRklMRVNfU1RPUkFHRSA9ICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcy5zdG9yYWdlLlN0YXRpY0ZpbGVzU3RvcmFnZScKU1RBVElDX1JPT1QgPSAnL2hvbWUvYXNzZXRzJwpTVEFUSUNfVVJMID0gJy9hc3NldHMvJwpURU1QTEFURVMgPSBbeydCQUNLRU5EJzogJ2RqYW5nby50ZW1wbGF0ZS5iYWNrZW5kcy5kamFuZ28uRGphbmdvVGVtcGxhdGVzJywgJ0RJUlMnOiBbXSwgJ0FQUF9ESVJTJzogVHJ1ZSwgJ09QVElPTlMnOiB7J2NvbnRleHRfcHJvY2Vzc29ycyc6IFsnZGphbmdvLnRlbXBsYXRlLmNvbnRleHRfcHJvY2Vzc29ycy5kZWJ1ZycsICdkamFuZ28udGVtcGxhdGUuY29udGV4dF9wcm9jZXNzb3JzLnJlcXVlc3QnLCAnZGphbmdvLmNvbnRyaWIuYXV0aC5jb250ZXh0X3Byb2Nlc3NvcnMuYXV0aCcsICdkamFuZ28uY29udHJpYi5tZXNzYWdlcy5jb250ZXh0X3Byb2Nlc3NvcnMubWVzc2FnZXMnXX19XQpURVNUX05PTl9TRVJJQUxJWkVEX0FQUFMgPSBbXQpURVNUX1JVTk5FUiA9ICdkamFuZ29fbm9zZS5Ob3NlVGVzdFN1aXRlUnVubmVyJwpUSE9VU0FORF9TRVBBUkFUT1IgPSAnLCcKVElNRV9GT1JNQVQgPSAnUCcKVElNRV9JTlBVVF9GT1JNQVRTID0gWyclSDolTTolUycsICclSDolTTolUy4lZicsICclSDolTSddClRJTUVfWk9ORSA9ICdVVEMnClVTRV9FVEFHUyA9IEZhbHNlClVTRV9JMThOID0gVHJ1ZQpVU0VfTDEwTiA9IFRydWUKVVNFX1RIT1VTQU5EX1NFUEFSQVRPUiA9IEZhbHNlClVTRV9UWiA9IFRydWUKVVNFX1hfRk9SV0FSREVEX0hPU1QgPSBGYWxzZQpVU0VfWF9GT1JXQVJERURfUE9SVCA9IEZhbHNlCldFQlBBQ0tfTE9BREVSID0geydERUZBVUxUJzogeydCVU5ETEVfRElSX05BTUUnOiAnYnVuZGxlcy8nLCAnU1RBVFNfRklMRSc6ICdEOlxcUFBMQVxcd2VicGFjay1zdGF0cy5qc29uJ319CldTR0lfQVBQTElDQVRJT04gPSAna2FwZS53c2dpLmFwcGxpY2F0aW9uJwpYX0ZSQU1FX09QVElPTlMgPSAnU0FNRU9SSUdJTicKWUVBUl9NT05USF9GT1JNQVQgPSAnRiBZJwoKCllvdSdyZSBzZWVpbmcgdGhpcyBlcnJvciBiZWNhdXNlIHlvdSBoYXZlIERFQlVHID0gVHJ1ZSBpbiB5b3VyCkRqYW5nbyBzZXR0aW5ncyBmaWxlLiBDaGFuZ2UgdGhhdCB0byBGYWxzZSwgYW5kIERqYW5nbyB3aWxsCmRpc3BsYXkgYSBzdGFuZGFyZCBwYWdlIGdlbmVyYXRlZCBieSB0aGUgaGFuZGxlciBmb3IgdGhpcyBzdGF0dXMgY29kZS4KCg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/plain\"}" - } -}, -{ - "model": "silk.response", - "pk": "60bebf1f-3c49-4983-8ffb-94e142d0ef07", - "fields": { - "request": "f984e7a0-4d1a-4ebc-9e24-b250f2664a8a", - "status_code": 302, - "raw_body": "", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Location\": \"/admin/auth/user/3/change/\", \"Last-Modified\": \"Mon, 27 Mar 2017 14:53:39 GMT\", \"Expires\": \"Mon, 27 Mar 2017 14:53:39 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\"}" - } -}, -{ - "model": "silk.response", - "pk": "61810488-3101-46c2-83ad-585b10cb982f", - "fields": { - "request": "78f2203a-2bfb-4777-94c4-a7af0d987f49", - "status_code": 404, - "raw_body": "eyJkZXRhaWwiOiJOb3QgZm91bmQuIn0=", - "body": "{\n \"detail\": \"Not found.\"\n}", - "encoded_headers": "{\"Content-Type\": \"application/json\", \"Allow\": \"POST, OPTIONS\", \"Vary\": \"Accept\"}" - } -}, -{ - "model": "silk.response", - "pk": "61e09f0f-13b0-47ed-9d74-59c5cd26e4ff", - "fields": { - "request": "c7fee591-a04a-4265-89aa-cf4a1d699ed5", - "status_code": 200, - "raw_body": "eyJzd2FnZ2VyIjogIjIuMCIsICJpbmZvIjogeyJ0aXRsZSI6ICIiLCAidmVyc2lvbiI6ICIifSwgInBhdGhzIjogeyIvYXBpL2FwcGxpY2F0aW9ucy8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAiYXBwbGljYXRpb25zX2xpc3QiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogInBhZ2UiLCAicmVxdWlyZWQiOiBmYWxzZSwgImluIjogInF1ZXJ5IiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbImFwcGxpY2F0aW9ucyJdfSwgInBvc3QiOiB7Im9wZXJhdGlvbklkIjogImFwcGxpY2F0aW9uc19jcmVhdGUiLCAicmVzcG9uc2VzIjogeyIyMDEiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InN0dWRlbnRfbnBtIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgInZhY2FuY3lfaWQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9fSwgInJlcXVpcmVkIjogWyJzdHVkZW50X25wbSIsICJ2YWNhbmN5X2lkIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsiYXBwbGljYXRpb25zIl19fSwgIi9hcGkvYXBwbGljYXRpb25zL3tpZH0vIjogeyJnZXQiOiB7Im9wZXJhdGlvbklkIjogImFwcGxpY2F0aW9uc19yZWFkIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbImFwcGxpY2F0aW9ucyJdfSwgInB1dCI6IHsib3BlcmF0aW9uSWQiOiAiYXBwbGljYXRpb25zX3VwZGF0ZSIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InN0dWRlbnRfbnBtIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgInZhY2FuY3lfaWQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9fSwgInJlcXVpcmVkIjogWyJzdHVkZW50X25wbSIsICJ2YWNhbmN5X2lkIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsiYXBwbGljYXRpb25zIl19LCAicGF0Y2giOiB7Im9wZXJhdGlvbklkIjogImFwcGxpY2F0aW9uc19wYXJ0aWFsX3VwZGF0ZSIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InN0dWRlbnRfbnBtIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgInZhY2FuY3lfaWQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9fX19XSwgImNvbnN1bWVzIjogWyJhcHBsaWNhdGlvbi9qc29uIl0sICJ0YWdzIjogWyJhcHBsaWNhdGlvbnMiXX0sICJkZWxldGUiOiB7Im9wZXJhdGlvbklkIjogImFwcGxpY2F0aW9uc19kZWxldGUiLCAicmVzcG9uc2VzIjogeyIyMDQiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsiYXBwbGljYXRpb25zIl19fSwgIi9hcGkvY29tcGFuaWVzLyI6IHsiZ2V0IjogeyJvcGVyYXRpb25JZCI6ICJjb21wYW5pZXNfbGlzdCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAicGFnZSIsICJyZXF1aXJlZCI6IGZhbHNlLCAiaW4iOiAicXVlcnkiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsiY29tcGFuaWVzIl19LCAicG9zdCI6IHsib3BlcmF0aW9uSWQiOiAiY29tcGFuaWVzX2NyZWF0ZSIsICJyZXNwb25zZXMiOiB7IjIwMSI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidXNlciI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAib2JqZWN0In0sICJkZXNjcmlwdGlvbiI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sICJ2ZXJpZmllZCI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiYm9vbGVhbiJ9fSwgInJlcXVpcmVkIjogWyJ1c2VyIiwgImRlc2NyaXB0aW9uIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsiY29tcGFuaWVzIl19fSwgIi9hcGkvY29tcGFuaWVzL3tpZH0vIjogeyJnZXQiOiB7Im9wZXJhdGlvbklkIjogImNvbXBhbmllc19yZWFkIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbImNvbXBhbmllcyJdfSwgInB1dCI6IHsib3BlcmF0aW9uSWQiOiAiY29tcGFuaWVzX3VwZGF0ZSIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InVzZXIiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogIm9iamVjdCJ9LCAiZGVzY3JpcHRpb24iOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAidmVyaWZpZWQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImJvb2xlYW4ifX0sICJyZXF1aXJlZCI6IFsidXNlciIsICJkZXNjcmlwdGlvbiJdfX1dLCAiY29uc3VtZXMiOiBbImFwcGxpY2F0aW9uL2pzb24iXSwgInRhZ3MiOiBbImNvbXBhbmllcyJdfSwgInBhdGNoIjogeyJvcGVyYXRpb25JZCI6ICJjb21wYW5pZXNfcGFydGlhbF91cGRhdGUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ1c2VyIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJvYmplY3QifSwgImRlc2NyaXB0aW9uIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgInZlcmlmaWVkIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJib29sZWFuIn19fX1dLCAiY29uc3VtZXMiOiBbImFwcGxpY2F0aW9uL2pzb24iXSwgInRhZ3MiOiBbImNvbXBhbmllcyJdfSwgImRlbGV0ZSI6IHsib3BlcmF0aW9uSWQiOiAiY29tcGFuaWVzX2RlbGV0ZSIsICJyZXNwb25zZXMiOiB7IjIwNCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJjb21wYW5pZXMiXX19LCAiL2FwaS9zdHVkZW50cy8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAic3R1ZGVudHNfbGlzdCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAicGFnZSIsICJyZXF1aXJlZCI6IGZhbHNlLCAiaW4iOiAicXVlcnkiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsic3R1ZGVudHMiXX0sICJwb3N0IjogeyJvcGVyYXRpb25JZCI6ICJzdHVkZW50c19jcmVhdGUiLCAicmVzcG9uc2VzIjogeyIyMDEiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InVzZXIiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogIm9iamVjdCJ9LCAibnBtIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJpbnRlZ2VyIn0sICJyZXN1bWUiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImZpbGUifSwgInBob25lX251bWJlciI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sICJib29rbWFya2VkX3ZhY2FuY2llcyI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiYXJyYXkiLCAiaXRlbXMiOiB7InR5cGUiOiAic3RyaW5nIn19fSwgInJlcXVpcmVkIjogWyJ1c2VyIiwgIm5wbSJdfX1dLCAiY29uc3VtZXMiOiBbImFwcGxpY2F0aW9uL2pzb24iXSwgInRhZ3MiOiBbInN0dWRlbnRzIl19fSwgIi9hcGkvc3R1ZGVudHMve2lkfS8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAic3R1ZGVudHNfcmVhZCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJzdHVkZW50cyJdfSwgInB1dCI6IHsib3BlcmF0aW9uSWQiOiAic3R1ZGVudHNfdXBkYXRlIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCB7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidXNlciI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAib2JqZWN0In0sICJucG0iOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImludGVnZXIifSwgInJlc3VtZSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiZmlsZSJ9LCAicGhvbmVfbnVtYmVyIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImJvb2ttYXJrZWRfdmFjYW5jaWVzIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJhcnJheSIsICJpdGVtcyI6IHsidHlwZSI6ICJzdHJpbmcifX19LCAicmVxdWlyZWQiOiBbInVzZXIiLCAibnBtIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsic3R1ZGVudHMiXX0sICJwYXRjaCI6IHsib3BlcmF0aW9uSWQiOiAic3R1ZGVudHNfcGFydGlhbF91cGRhdGUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ1c2VyIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJvYmplY3QifSwgIm5wbSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiaW50ZWdlciJ9LCAicmVzdW1lIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJmaWxlIn0sICJwaG9uZV9udW1iZXIiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiYm9va21hcmtlZF92YWNhbmNpZXMiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImFycmF5IiwgIml0ZW1zIjogeyJ0eXBlIjogInN0cmluZyJ9fX19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsic3R1ZGVudHMiXX0sICJkZWxldGUiOiB7Im9wZXJhdGlvbklkIjogInN0dWRlbnRzX2RlbGV0ZSIsICJyZXNwb25zZXMiOiB7IjIwNCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJzdHVkZW50cyJdfX0sICIvYXBpL3N0dWRlbnRzL3tpZH0vYm9va21hcmtlZC12YWNhbmNpZXMvIjogeyJwb3N0IjogeyJvcGVyYXRpb25JZCI6ICJzdHVkZW50c19ib29rbWFya192YWNhbmNpZXMiLCAicmVzcG9uc2VzIjogeyIyMDEiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ1c2VyIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJvYmplY3QifSwgIm5wbSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiaW50ZWdlciJ9LCAicmVzdW1lIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJmaWxlIn0sICJwaG9uZV9udW1iZXIiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiYm9va21hcmtlZF92YWNhbmNpZXMiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImFycmF5IiwgIml0ZW1zIjogeyJ0eXBlIjogInN0cmluZyJ9fX0sICJyZXF1aXJlZCI6IFsidXNlciIsICJucG0iXX19XSwgImNvbnN1bWVzIjogWyJhcHBsaWNhdGlvbi9qc29uIl0sICJ0YWdzIjogWyJzdHVkZW50cyJdfSwgImRlbGV0ZSI6IHsib3BlcmF0aW9uSWQiOiAic3R1ZGVudHNfdW5ib29rbWFya192YWNhbmNpZXMiLCAicmVzcG9uc2VzIjogeyIyMDQiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsic3R1ZGVudHMiXX19LCAiL2FwaS9zdXBlcnZpc29ycy8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAic3VwZXJ2aXNvcnNfbGlzdCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAicGFnZSIsICJyZXF1aXJlZCI6IGZhbHNlLCAiaW4iOiAicXVlcnkiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsic3VwZXJ2aXNvcnMiXX0sICJwb3N0IjogeyJvcGVyYXRpb25JZCI6ICJzdXBlcnZpc29yc19jcmVhdGUiLCAicmVzcG9uc2VzIjogeyIyMDEiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InVzZXIiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogIm9iamVjdCJ9LCAibmlwIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJpbnRlZ2VyIn19LCAicmVxdWlyZWQiOiBbInVzZXIiLCAibmlwIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsic3VwZXJ2aXNvcnMiXX19LCAiL2FwaS9zdXBlcnZpc29ycy97aWR9LyI6IHsiZ2V0IjogeyJvcGVyYXRpb25JZCI6ICJzdXBlcnZpc29yc19yZWFkIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbInN1cGVydmlzb3JzIl19LCAicHV0IjogeyJvcGVyYXRpb25JZCI6ICJzdXBlcnZpc29yc191cGRhdGUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ1c2VyIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJvYmplY3QifSwgIm5pcCI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiaW50ZWdlciJ9fSwgInJlcXVpcmVkIjogWyJ1c2VyIiwgIm5pcCJdfX1dLCAiY29uc3VtZXMiOiBbImFwcGxpY2F0aW9uL2pzb24iXSwgInRhZ3MiOiBbInN1cGVydmlzb3JzIl19LCAicGF0Y2giOiB7Im9wZXJhdGlvbklkIjogInN1cGVydmlzb3JzX3BhcnRpYWxfdXBkYXRlIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCB7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidXNlciI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAib2JqZWN0In0sICJuaXAiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImludGVnZXIifX19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsic3VwZXJ2aXNvcnMiXX0sICJkZWxldGUiOiB7Im9wZXJhdGlvbklkIjogInN1cGVydmlzb3JzX2RlbGV0ZSIsICJyZXNwb25zZXMiOiB7IjIwNCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJzdXBlcnZpc29ycyJdfX0sICIvYXBpL3VzZXJzLyI6IHsiZ2V0IjogeyJvcGVyYXRpb25JZCI6ICJ1c2Vyc19saXN0IiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJwYWdlIiwgInJlcXVpcmVkIjogZmFsc2UsICJpbiI6ICJxdWVyeSIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJ1c2VycyJdfSwgInBvc3QiOiB7Im9wZXJhdGlvbklkIjogInVzZXJzX2NyZWF0ZSIsICJyZXNwb25zZXMiOiB7IjIwMSI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidXNlcm5hbWUiOiB7ImRlc2NyaXB0aW9uIjogIlJlcXVpcmVkLiAxNTAgY2hhcmFjdGVycyBvciBmZXdlci4gTGV0dGVycywgZGlnaXRzIGFuZCBALy4vKy8tL18gb25seS4iLCAidHlwZSI6ICJzdHJpbmcifSwgImVtYWlsIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImlzX3N0YWZmIjogeyJkZXNjcmlwdGlvbiI6ICJEZXNpZ25hdGVzIHdoZXRoZXIgdGhlIHVzZXIgY2FuIGxvZyBpbnRvIHRoaXMgYWRtaW4gc2l0ZS4iLCAidHlwZSI6ICJib29sZWFuIn19LCAicmVxdWlyZWQiOiBbInVzZXJuYW1lIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsidXNlcnMiXX19LCAiL2FwaS91c2Vycy9tZS8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAidXNlcnNfbWUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbXSwgInRhZ3MiOiBbInVzZXJzIl19fSwgIi9hcGkvdXNlcnMve2lkfS8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAidXNlcnNfcmVhZCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJ1c2VycyJdfSwgInB1dCI6IHsib3BlcmF0aW9uSWQiOiAidXNlcnNfdXBkYXRlIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCB7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidXNlcm5hbWUiOiB7ImRlc2NyaXB0aW9uIjogIlJlcXVpcmVkLiAxNTAgY2hhcmFjdGVycyBvciBmZXdlci4gTGV0dGVycywgZGlnaXRzIGFuZCBALy4vKy8tL18gb25seS4iLCAidHlwZSI6ICJzdHJpbmcifSwgImVtYWlsIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImlzX3N0YWZmIjogeyJkZXNjcmlwdGlvbiI6ICJEZXNpZ25hdGVzIHdoZXRoZXIgdGhlIHVzZXIgY2FuIGxvZyBpbnRvIHRoaXMgYWRtaW4gc2l0ZS4iLCAidHlwZSI6ICJib29sZWFuIn19LCAicmVxdWlyZWQiOiBbInVzZXJuYW1lIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsidXNlcnMiXX0sICJwYXRjaCI6IHsib3BlcmF0aW9uSWQiOiAidXNlcnNfcGFydGlhbF91cGRhdGUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ1c2VybmFtZSI6IHsiZGVzY3JpcHRpb24iOiAiUmVxdWlyZWQuIDE1MCBjaGFyYWN0ZXJzIG9yIGZld2VyLiBMZXR0ZXJzLCBkaWdpdHMgYW5kIEAvLi8rLy0vXyBvbmx5LiIsICJ0eXBlIjogInN0cmluZyJ9LCAiZW1haWwiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiaXNfc3RhZmYiOiB7ImRlc2NyaXB0aW9uIjogIkRlc2lnbmF0ZXMgd2hldGhlciB0aGUgdXNlciBjYW4gbG9nIGludG8gdGhpcyBhZG1pbiBzaXRlLiIsICJ0eXBlIjogImJvb2xlYW4ifX19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsidXNlcnMiXX0sICJkZWxldGUiOiB7Im9wZXJhdGlvbklkIjogInVzZXJzX2RlbGV0ZSIsICJyZXNwb25zZXMiOiB7IjIwNCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJ1c2VycyJdfX0sICIvYXBpL3ZhY2FuY2llcy8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAidmFjYW5jaWVzX2xpc3QiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogInBhZ2UiLCAicmVxdWlyZWQiOiBmYWxzZSwgImluIjogInF1ZXJ5IiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbInZhY2FuY2llcyJdfSwgInBvc3QiOiB7Im9wZXJhdGlvbklkIjogInZhY2FuY2llc19jcmVhdGUiLCAicmVzcG9uc2VzIjogeyIyMDEiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InZlcmlmaWVkIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJib29sZWFuIn0sICJvcGVuX3RpbWUiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiY2xvc2VfdGltZSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sICJjb21wYW55IjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifX0sICJyZXF1aXJlZCI6IFsib3Blbl90aW1lIiwgImNsb3NlX3RpbWUiLCAiY29tcGFueSJdfX1dLCAiY29uc3VtZXMiOiBbImFwcGxpY2F0aW9uL2pzb24iXSwgInRhZ3MiOiBbInZhY2FuY2llcyJdfX0sICIvYXBpL3ZhY2FuY2llcy97aWR9LyI6IHsiZ2V0IjogeyJvcGVyYXRpb25JZCI6ICJ2YWNhbmNpZXNfcmVhZCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJ2YWNhbmNpZXMiXX0sICJwdXQiOiB7Im9wZXJhdGlvbklkIjogInZhY2FuY2llc191cGRhdGUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ2ZXJpZmllZCI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiYm9vbGVhbiJ9LCAib3Blbl90aW1lIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImNsb3NlX3RpbWUiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiY29tcGFueSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn19LCAicmVxdWlyZWQiOiBbIm9wZW5fdGltZSIsICJjbG9zZV90aW1lIiwgImNvbXBhbnkiXX19XSwgImNvbnN1bWVzIjogWyJhcHBsaWNhdGlvbi9qc29uIl0sICJ0YWdzIjogWyJ2YWNhbmNpZXMiXX0sICJwYXRjaCI6IHsib3BlcmF0aW9uSWQiOiAidmFjYW5jaWVzX3BhcnRpYWxfdXBkYXRlIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCB7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidmVyaWZpZWQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImJvb2xlYW4ifSwgIm9wZW5fdGltZSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sICJjbG9zZV90aW1lIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImNvbXBhbnkiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9fX19XSwgImNvbnN1bWVzIjogWyJhcHBsaWNhdGlvbi9qc29uIl0sICJ0YWdzIjogWyJ2YWNhbmNpZXMiXX0sICJkZWxldGUiOiB7Im9wZXJhdGlvbklkIjogInZhY2FuY2llc19kZWxldGUiLCAicmVzcG9uc2VzIjogeyIyMDQiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsidmFjYW5jaWVzIl19fX0sICJzZWN1cml0eURlZmluaXRpb25zIjogeyJiYXNpYyI6IHsidHlwZSI6ICJiYXNpYyJ9fX0=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"application/openapi+json\", \"Allow\": \"GET, HEAD, OPTIONS\", \"Vary\": \"Accept\"}" - } -}, -{ - "model": "silk.response", - "pk": "61ed5488-fb87-4e5a-9d12-7c3fb19c0e6b", - "fields": { - "request": "25d5da77-88d4-4c4e-b86e-dac8da6337c0", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "62044b9e-a8b9-424e-ae85-48f46d3ea600", - "fields": { - "request": "20ebe021-9d8e-4eb1-8711-65c590fa3a1e", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "6442b9ef-53f7-46a5-a6dc-ad6cdf742e99", - "fields": { - "request": "8b7e9e33-870b-4ac4-a335-13bca671fb3c", - "status_code": 200, - "raw_body": "CjwhRE9DVFlQRSBodG1sPgo8aHRtbD4KPGhlYWQ+CiAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogIDx0aXRsZT5Td2FnZ2VyIFVJPC90aXRsZT4KICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2ltYWdlcy9mYXZpY29uLTMyeDMyLnBuZyIgc2l6ZXM9IjMyeDMyIiAvPgogIDxsaW5rIHJlbD0iaWNvbiIgdHlwZT0iaW1hZ2UvcG5nIiBocmVmPSIvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvaW1hZ2VzL2Zhdmljb24tMTZ4MTYucG5nIiBzaXplcz0iMTZ4MTYiIC8+CiAgPGxpbmsgaHJlZj0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2Nzcy90eXBvZ3JhcGh5LmNzcycgbWVkaWE9J3NjcmVlbicgcmVsPSdzdHlsZXNoZWV0JyB0eXBlPSd0ZXh0L2NzcycvPgogIDxsaW5rIGhyZWY9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9jc3MvcmVzZXQuY3NzJyBtZWRpYT0nc2NyZWVuJyByZWw9J3N0eWxlc2hlZXQnIHR5cGU9J3RleHQvY3NzJy8+CiAgPGxpbmsgaHJlZj0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2Nzcy9zY3JlZW4uY3NzJyBtZWRpYT0nc2NyZWVuJyByZWw9J3N0eWxlc2hlZXQnIHR5cGU9J3RleHQvY3NzJy8+CiAgPGxpbmsgaHJlZj0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2Nzcy9yZXNldC5jc3MnIG1lZGlhPSdwcmludCcgcmVsPSdzdHlsZXNoZWV0JyB0eXBlPSd0ZXh0L2NzcycvPgogIDxsaW5rIGhyZWY9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9jc3MvcHJpbnQuY3NzJyBtZWRpYT0ncHJpbnQnIHJlbD0nc3R5bGVzaGVldCcgdHlwZT0ndGV4dC9jc3MnLz4KICAKICAKICAKCiAgPHNjcmlwdCBzcmM9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9saWIvb2JqZWN0LWFzc2lnbi1wb2xseWZpbGwuanMnIHR5cGU9J3RleHQvamF2YXNjcmlwdCc+PC9zY3JpcHQ+CiAgPHNjcmlwdCBzcmM9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9saWIvanF1ZXJ5LTEuOC4wLm1pbi5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4KICA8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2xpYi9qcXVlcnkuc2xpZGV0by5taW4uanMnIHR5cGU9J3RleHQvamF2YXNjcmlwdCc+PC9zY3JpcHQ+CiAgPHNjcmlwdCBzcmM9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9saWIvanF1ZXJ5LndpZ2dsZS5taW4uanMnIHR5cGU9J3RleHQvamF2YXNjcmlwdCc+PC9zY3JpcHQ+CiAgPHNjcmlwdCBzcmM9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9saWIvanF1ZXJ5LmJhLWJicS5taW4uanMnIHR5cGU9J3RleHQvamF2YXNjcmlwdCc+PC9zY3JpcHQ+CiAgPHNjcmlwdCBzcmM9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9saWIvaGFuZGxlYmFycy0yLjAuMC5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4KICA8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2xpYi9qcy15YW1sLm1pbi5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4KICA8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2xpYi9sb2Rhc2gubWluLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgogIDxzY3JpcHQgc3JjPScvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvbGliL2JhY2tib25lLW1pbi5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4KICA8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL3N3YWdnZXItdWkubWluLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgogIDxzY3JpcHQgc3JjPScvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvbGliL2hpZ2hsaWdodC45LjEuMC5wYWNrLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgogIDxzY3JpcHQgc3JjPScvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvbGliL2hpZ2hsaWdodC45LjEuMC5wYWNrX2V4dGVuZGVkLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgogIDxzY3JpcHQgc3JjPScvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvbGliL2pzb25lZGl0b3IubWluLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgogIDxzY3JpcHQgc3JjPScvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvbGliL21hcmtlZC5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4KICA8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2xpYi9zd2FnZ2VyLW9hdXRoLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgoKICA8IS0tIFNvbWUgYmFzaWMgdHJhbnNsYXRpb25zIC0tPgogIDwhLS0gPHNjcmlwdCBzcmM9J2xhbmcvdHJhbnNsYXRvci5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4gLS0+CiAgPCEtLSA8c2NyaXB0IHNyYz0nbGFuZy9ydS5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4gLS0+CiAgPCEtLSA8c2NyaXB0IHNyYz0nbGFuZy9lbi5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4gLS0+Cgo8L2hlYWQ+Cgo8Ym9keSBjbGFzcz0ic3dhZ2dlci1zZWN0aW9uIj4KCjxkaXYgaWQ9J2hlYWRlcic+CiAgPGRpdiBjbGFzcz0ic3dhZ2dlci11aS13cmFwIj4KICAgIAogICAgICA8YSBpZD0ibG9nbyIgaHJlZj0iaHR0cDovL3N3YWdnZXIuaW8iPjxpbWcgY2xhc3M9ImxvZ29fX2ltZyIgYWx0PSJzd2FnZ2VyIiBoZWlnaHQ9IjMwIiB3aWR0aD0iMzAiIHNyYz0iL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2ltYWdlcy9sb2dvX3NtYWxsLnBuZyIgLz48c3BhbiBjbGFzcz0ibG9nb19fdGl0bGUiPnN3YWdnZXI8L3NwYW4+PC9hPgogICAgCiAgICA8Zm9ybSBpZD0nYXBpX3NlbGVjdG9yJz4KICAgICAgPGlucHV0IGlkPSJpbnB1dF9iYXNlVXJsIiBuYW1lPSJiYXNlVXJsIiB0eXBlPSJoaWRkZW4iLz4KICAgICAgCiAgICAgICAgPGlucHV0IHR5cGU9J2hpZGRlbicgbmFtZT0nY3NyZm1pZGRsZXdhcmV0b2tlbicgdmFsdWU9J21xSkpKYW5FelJWYzd5Vk1hdnBsZUp1VDVvdG5LTjhPTHdReVZHZnptTzZCdUdYZVRXVU42cWJEM2p6YzRONEQnIC8+CiAgICAgICAgCiAgICAgICAgICA8ZGl2IGNsYXNzPSJpbnB1dCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgIAogICAgICAgICAgICAgIEhlbGxvLCBrYXBlCiAgICAgICAgICAgIAogICAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgICAKICAgICAgICAKICAgICAgCgogICAgICAKICAgICAgICAKICAgICAgICAgIDxkaXYgY2xhc3M9J2lucHV0Jz48YSBpZD0iYXV0aCIgY2xhc3M9ImhlYWRlcl9fYnRuIiBocmVmPSI/bmV4dD0vYXBpIiBkYXRhLXN3LXRyYW5zbGF0ZT5EamFuZ28gTG9nb3V0PC9hPjwvZGl2PgogICAgICAgIAogICAgICAKICAgICAgPGRpdiBpZD0nYXV0aF9jb250YWluZXInPjwvZGl2PgogICAgPC9mb3JtPgogIDwvZGl2Pgo8L2Rpdj4KCgo8ZGl2IGlkPSJtZXNzYWdlLWJhciIgY2xhc3M9InN3YWdnZXItdWktd3JhcCIgZGF0YS1zdy10cmFuc2xhdGU+Jm5ic3A7PC9kaXY+CjxkaXYgaWQ9InN3YWdnZXItdWktY29udGFpbmVyIiBjbGFzcz0ic3dhZ2dlci11aS13cmFwIj48L2Rpdj4KCjxzY3JpcHQgaWQ9ImRycy1zZXR0aW5ncyIgdHlwZT0iYXBwbGljYXRpb24vanNvbiI+CnsiYXBpc1NvcnRlciI6IG51bGwsICJkb2NFeHBhbnNpb24iOiBudWxsLCAianNvbkVkaXRvciI6IGZhbHNlLCAib3BlcmF0aW9uc1NvcnRlciI6IG51bGwsICJzaG93UmVxdWVzdEhlYWRlcnMiOiBmYWxzZSwgInN1cHBvcnRlZFN1Ym1pdE1ldGhvZHMiOiBbImdldCIsICJwb3N0IiwgInB1dCIsICJkZWxldGUiLCAicGF0Y2giXX0KPC9zY3JpcHQ+Cgo8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2luaXQuanMnIHR5cGU9J3RleHQvamF2YXNjcmlwdCc+PC9zY3JpcHQ+CgoKCjwvYm9keT4KPC9odG1sPgo=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Allow\": \"GET, HEAD, OPTIONS\", \"Vary\": \"Accept\"}" - } -}, -{ - "model": "silk.response", - "pk": "65ea1b81-7b75-4261-bdd4-7d9583c5a283", - "fields": { - "request": "56db7b1d-e0ab-483a-a84b-fa50dae761b7", - "status_code": 200, - "raw_body": "eyJzd2FnZ2VyIjogIjIuMCIsICJpbmZvIjogeyJ0aXRsZSI6ICIiLCAidmVyc2lvbiI6ICIifSwgInBhdGhzIjogeyIvYXBpL2FwcGxpY2F0aW9ucy8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAiYXBwbGljYXRpb25zX2xpc3QiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogInBhZ2UiLCAicmVxdWlyZWQiOiBmYWxzZSwgImluIjogInF1ZXJ5IiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbImFwcGxpY2F0aW9ucyJdfSwgInBvc3QiOiB7Im9wZXJhdGlvbklkIjogImFwcGxpY2F0aW9uc19jcmVhdGUiLCAicmVzcG9uc2VzIjogeyIyMDEiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InN0dWRlbnRfbnBtIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgInZhY2FuY3lfaWQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9fSwgInJlcXVpcmVkIjogWyJzdHVkZW50X25wbSIsICJ2YWNhbmN5X2lkIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsiYXBwbGljYXRpb25zIl19fSwgIi9hcGkvYXBwbGljYXRpb25zL3tpZH0vIjogeyJnZXQiOiB7Im9wZXJhdGlvbklkIjogImFwcGxpY2F0aW9uc19yZWFkIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbImFwcGxpY2F0aW9ucyJdfSwgInB1dCI6IHsib3BlcmF0aW9uSWQiOiAiYXBwbGljYXRpb25zX3VwZGF0ZSIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InN0dWRlbnRfbnBtIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgInZhY2FuY3lfaWQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9fSwgInJlcXVpcmVkIjogWyJzdHVkZW50X25wbSIsICJ2YWNhbmN5X2lkIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsiYXBwbGljYXRpb25zIl19LCAicGF0Y2giOiB7Im9wZXJhdGlvbklkIjogImFwcGxpY2F0aW9uc19wYXJ0aWFsX3VwZGF0ZSIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InN0dWRlbnRfbnBtIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgInZhY2FuY3lfaWQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9fX19XSwgImNvbnN1bWVzIjogWyJhcHBsaWNhdGlvbi9qc29uIl0sICJ0YWdzIjogWyJhcHBsaWNhdGlvbnMiXX0sICJkZWxldGUiOiB7Im9wZXJhdGlvbklkIjogImFwcGxpY2F0aW9uc19kZWxldGUiLCAicmVzcG9uc2VzIjogeyIyMDQiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsiYXBwbGljYXRpb25zIl19fSwgIi9hcGkvY29tcGFuaWVzLyI6IHsiZ2V0IjogeyJvcGVyYXRpb25JZCI6ICJjb21wYW5pZXNfbGlzdCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAicGFnZSIsICJyZXF1aXJlZCI6IGZhbHNlLCAiaW4iOiAicXVlcnkiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsiY29tcGFuaWVzIl19LCAicG9zdCI6IHsib3BlcmF0aW9uSWQiOiAiY29tcGFuaWVzX2NyZWF0ZSIsICJyZXNwb25zZXMiOiB7IjIwMSI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidXNlciI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAib2JqZWN0In0sICJkZXNjcmlwdGlvbiI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sICJ2ZXJpZmllZCI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiYm9vbGVhbiJ9fSwgInJlcXVpcmVkIjogWyJ1c2VyIiwgImRlc2NyaXB0aW9uIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsiY29tcGFuaWVzIl19fSwgIi9hcGkvY29tcGFuaWVzL3tpZH0vIjogeyJnZXQiOiB7Im9wZXJhdGlvbklkIjogImNvbXBhbmllc19yZWFkIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbImNvbXBhbmllcyJdfSwgInB1dCI6IHsib3BlcmF0aW9uSWQiOiAiY29tcGFuaWVzX3VwZGF0ZSIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InVzZXIiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogIm9iamVjdCJ9LCAiZGVzY3JpcHRpb24iOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAidmVyaWZpZWQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImJvb2xlYW4ifX0sICJyZXF1aXJlZCI6IFsidXNlciIsICJkZXNjcmlwdGlvbiJdfX1dLCAiY29uc3VtZXMiOiBbImFwcGxpY2F0aW9uL2pzb24iXSwgInRhZ3MiOiBbImNvbXBhbmllcyJdfSwgInBhdGNoIjogeyJvcGVyYXRpb25JZCI6ICJjb21wYW5pZXNfcGFydGlhbF91cGRhdGUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ1c2VyIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJvYmplY3QifSwgImRlc2NyaXB0aW9uIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgInZlcmlmaWVkIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJib29sZWFuIn19fX1dLCAiY29uc3VtZXMiOiBbImFwcGxpY2F0aW9uL2pzb24iXSwgInRhZ3MiOiBbImNvbXBhbmllcyJdfSwgImRlbGV0ZSI6IHsib3BlcmF0aW9uSWQiOiAiY29tcGFuaWVzX2RlbGV0ZSIsICJyZXNwb25zZXMiOiB7IjIwNCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJjb21wYW5pZXMiXX19LCAiL2FwaS9zdHVkZW50cy8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAic3R1ZGVudHNfbGlzdCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAicGFnZSIsICJyZXF1aXJlZCI6IGZhbHNlLCAiaW4iOiAicXVlcnkiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsic3R1ZGVudHMiXX0sICJwb3N0IjogeyJvcGVyYXRpb25JZCI6ICJzdHVkZW50c19jcmVhdGUiLCAicmVzcG9uc2VzIjogeyIyMDEiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InVzZXIiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogIm9iamVjdCJ9LCAibnBtIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJpbnRlZ2VyIn0sICJyZXN1bWUiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImZpbGUifSwgInBob25lX251bWJlciI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sICJib29rbWFya2VkX3ZhY2FuY2llcyI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiYXJyYXkiLCAiaXRlbXMiOiB7InR5cGUiOiAic3RyaW5nIn19fSwgInJlcXVpcmVkIjogWyJ1c2VyIiwgIm5wbSJdfX1dLCAiY29uc3VtZXMiOiBbImFwcGxpY2F0aW9uL2pzb24iXSwgInRhZ3MiOiBbInN0dWRlbnRzIl19fSwgIi9hcGkvc3R1ZGVudHMve2lkfS8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAic3R1ZGVudHNfcmVhZCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJzdHVkZW50cyJdfSwgInB1dCI6IHsib3BlcmF0aW9uSWQiOiAic3R1ZGVudHNfdXBkYXRlIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCB7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidXNlciI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAib2JqZWN0In0sICJucG0iOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImludGVnZXIifSwgInJlc3VtZSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiZmlsZSJ9LCAicGhvbmVfbnVtYmVyIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImJvb2ttYXJrZWRfdmFjYW5jaWVzIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJhcnJheSIsICJpdGVtcyI6IHsidHlwZSI6ICJzdHJpbmcifX19LCAicmVxdWlyZWQiOiBbInVzZXIiLCAibnBtIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsic3R1ZGVudHMiXX0sICJwYXRjaCI6IHsib3BlcmF0aW9uSWQiOiAic3R1ZGVudHNfcGFydGlhbF91cGRhdGUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ1c2VyIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJvYmplY3QifSwgIm5wbSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiaW50ZWdlciJ9LCAicmVzdW1lIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJmaWxlIn0sICJwaG9uZV9udW1iZXIiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiYm9va21hcmtlZF92YWNhbmNpZXMiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImFycmF5IiwgIml0ZW1zIjogeyJ0eXBlIjogInN0cmluZyJ9fX19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsic3R1ZGVudHMiXX0sICJkZWxldGUiOiB7Im9wZXJhdGlvbklkIjogInN0dWRlbnRzX2RlbGV0ZSIsICJyZXNwb25zZXMiOiB7IjIwNCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJzdHVkZW50cyJdfX0sICIvYXBpL3N0dWRlbnRzL3tpZH0vYm9va21hcmtlZC12YWNhbmNpZXMvIjogeyJwb3N0IjogeyJvcGVyYXRpb25JZCI6ICJzdHVkZW50c19ib29rbWFya192YWNhbmNpZXMiLCAicmVzcG9uc2VzIjogeyIyMDEiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ1c2VyIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJvYmplY3QifSwgIm5wbSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiaW50ZWdlciJ9LCAicmVzdW1lIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJmaWxlIn0sICJwaG9uZV9udW1iZXIiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiYm9va21hcmtlZF92YWNhbmNpZXMiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImFycmF5IiwgIml0ZW1zIjogeyJ0eXBlIjogInN0cmluZyJ9fX0sICJyZXF1aXJlZCI6IFsidXNlciIsICJucG0iXX19XSwgImNvbnN1bWVzIjogWyJhcHBsaWNhdGlvbi9qc29uIl0sICJ0YWdzIjogWyJzdHVkZW50cyJdfSwgImRlbGV0ZSI6IHsib3BlcmF0aW9uSWQiOiAic3R1ZGVudHNfdW5ib29rbWFya192YWNhbmNpZXMiLCAicmVzcG9uc2VzIjogeyIyMDQiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsic3R1ZGVudHMiXX19LCAiL2FwaS9zdXBlcnZpc29ycy8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAic3VwZXJ2aXNvcnNfbGlzdCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAicGFnZSIsICJyZXF1aXJlZCI6IGZhbHNlLCAiaW4iOiAicXVlcnkiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsic3VwZXJ2aXNvcnMiXX0sICJwb3N0IjogeyJvcGVyYXRpb25JZCI6ICJzdXBlcnZpc29yc19jcmVhdGUiLCAicmVzcG9uc2VzIjogeyIyMDEiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InVzZXIiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogIm9iamVjdCJ9LCAibmlwIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJpbnRlZ2VyIn19LCAicmVxdWlyZWQiOiBbInVzZXIiLCAibmlwIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsic3VwZXJ2aXNvcnMiXX19LCAiL2FwaS9zdXBlcnZpc29ycy97aWR9LyI6IHsiZ2V0IjogeyJvcGVyYXRpb25JZCI6ICJzdXBlcnZpc29yc19yZWFkIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbInN1cGVydmlzb3JzIl19LCAicHV0IjogeyJvcGVyYXRpb25JZCI6ICJzdXBlcnZpc29yc191cGRhdGUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ1c2VyIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJvYmplY3QifSwgIm5pcCI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiaW50ZWdlciJ9fSwgInJlcXVpcmVkIjogWyJ1c2VyIiwgIm5pcCJdfX1dLCAiY29uc3VtZXMiOiBbImFwcGxpY2F0aW9uL2pzb24iXSwgInRhZ3MiOiBbInN1cGVydmlzb3JzIl19LCAicGF0Y2giOiB7Im9wZXJhdGlvbklkIjogInN1cGVydmlzb3JzX3BhcnRpYWxfdXBkYXRlIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCB7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidXNlciI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAib2JqZWN0In0sICJuaXAiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImludGVnZXIifX19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsic3VwZXJ2aXNvcnMiXX0sICJkZWxldGUiOiB7Im9wZXJhdGlvbklkIjogInN1cGVydmlzb3JzX2RlbGV0ZSIsICJyZXNwb25zZXMiOiB7IjIwNCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJzdXBlcnZpc29ycyJdfX0sICIvYXBpL3VzZXJzLyI6IHsiZ2V0IjogeyJvcGVyYXRpb25JZCI6ICJ1c2Vyc19saXN0IiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJwYWdlIiwgInJlcXVpcmVkIjogZmFsc2UsICJpbiI6ICJxdWVyeSIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJ1c2VycyJdfSwgInBvc3QiOiB7Im9wZXJhdGlvbklkIjogInVzZXJzX2NyZWF0ZSIsICJyZXNwb25zZXMiOiB7IjIwMSI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidXNlcm5hbWUiOiB7ImRlc2NyaXB0aW9uIjogIlJlcXVpcmVkLiAxNTAgY2hhcmFjdGVycyBvciBmZXdlci4gTGV0dGVycywgZGlnaXRzIGFuZCBALy4vKy8tL18gb25seS4iLCAidHlwZSI6ICJzdHJpbmcifSwgImVtYWlsIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImlzX3N0YWZmIjogeyJkZXNjcmlwdGlvbiI6ICJEZXNpZ25hdGVzIHdoZXRoZXIgdGhlIHVzZXIgY2FuIGxvZyBpbnRvIHRoaXMgYWRtaW4gc2l0ZS4iLCAidHlwZSI6ICJib29sZWFuIn19LCAicmVxdWlyZWQiOiBbInVzZXJuYW1lIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsidXNlcnMiXX19LCAiL2FwaS91c2Vycy9tZS8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAidXNlcnNfbWUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbXSwgInRhZ3MiOiBbInVzZXJzIl19fSwgIi9hcGkvdXNlcnMve2lkfS8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAidXNlcnNfcmVhZCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJ1c2VycyJdfSwgInB1dCI6IHsib3BlcmF0aW9uSWQiOiAidXNlcnNfdXBkYXRlIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCB7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidXNlcm5hbWUiOiB7ImRlc2NyaXB0aW9uIjogIlJlcXVpcmVkLiAxNTAgY2hhcmFjdGVycyBvciBmZXdlci4gTGV0dGVycywgZGlnaXRzIGFuZCBALy4vKy8tL18gb25seS4iLCAidHlwZSI6ICJzdHJpbmcifSwgImVtYWlsIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImlzX3N0YWZmIjogeyJkZXNjcmlwdGlvbiI6ICJEZXNpZ25hdGVzIHdoZXRoZXIgdGhlIHVzZXIgY2FuIGxvZyBpbnRvIHRoaXMgYWRtaW4gc2l0ZS4iLCAidHlwZSI6ICJib29sZWFuIn19LCAicmVxdWlyZWQiOiBbInVzZXJuYW1lIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsidXNlcnMiXX0sICJwYXRjaCI6IHsib3BlcmF0aW9uSWQiOiAidXNlcnNfcGFydGlhbF91cGRhdGUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ1c2VybmFtZSI6IHsiZGVzY3JpcHRpb24iOiAiUmVxdWlyZWQuIDE1MCBjaGFyYWN0ZXJzIG9yIGZld2VyLiBMZXR0ZXJzLCBkaWdpdHMgYW5kIEAvLi8rLy0vXyBvbmx5LiIsICJ0eXBlIjogInN0cmluZyJ9LCAiZW1haWwiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiaXNfc3RhZmYiOiB7ImRlc2NyaXB0aW9uIjogIkRlc2lnbmF0ZXMgd2hldGhlciB0aGUgdXNlciBjYW4gbG9nIGludG8gdGhpcyBhZG1pbiBzaXRlLiIsICJ0eXBlIjogImJvb2xlYW4ifX19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsidXNlcnMiXX0sICJkZWxldGUiOiB7Im9wZXJhdGlvbklkIjogInVzZXJzX2RlbGV0ZSIsICJyZXNwb25zZXMiOiB7IjIwNCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJ1c2VycyJdfX0sICIvYXBpL3ZhY2FuY2llcy8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAidmFjYW5jaWVzX2xpc3QiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogInBhZ2UiLCAicmVxdWlyZWQiOiBmYWxzZSwgImluIjogInF1ZXJ5IiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbInZhY2FuY2llcyJdfSwgInBvc3QiOiB7Im9wZXJhdGlvbklkIjogInZhY2FuY2llc19jcmVhdGUiLCAicmVzcG9uc2VzIjogeyIyMDEiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InZlcmlmaWVkIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJib29sZWFuIn0sICJvcGVuX3RpbWUiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiY2xvc2VfdGltZSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sICJjb21wYW55IjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifX0sICJyZXF1aXJlZCI6IFsib3Blbl90aW1lIiwgImNsb3NlX3RpbWUiLCAiY29tcGFueSJdfX1dLCAiY29uc3VtZXMiOiBbImFwcGxpY2F0aW9uL2pzb24iXSwgInRhZ3MiOiBbInZhY2FuY2llcyJdfX0sICIvYXBpL3ZhY2FuY2llcy97aWR9LyI6IHsiZ2V0IjogeyJvcGVyYXRpb25JZCI6ICJ2YWNhbmNpZXNfcmVhZCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJ2YWNhbmNpZXMiXX0sICJwdXQiOiB7Im9wZXJhdGlvbklkIjogInZhY2FuY2llc191cGRhdGUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ2ZXJpZmllZCI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiYm9vbGVhbiJ9LCAib3Blbl90aW1lIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImNsb3NlX3RpbWUiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiY29tcGFueSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn19LCAicmVxdWlyZWQiOiBbIm9wZW5fdGltZSIsICJjbG9zZV90aW1lIiwgImNvbXBhbnkiXX19XSwgImNvbnN1bWVzIjogWyJhcHBsaWNhdGlvbi9qc29uIl0sICJ0YWdzIjogWyJ2YWNhbmNpZXMiXX0sICJwYXRjaCI6IHsib3BlcmF0aW9uSWQiOiAidmFjYW5jaWVzX3BhcnRpYWxfdXBkYXRlIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCB7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidmVyaWZpZWQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImJvb2xlYW4ifSwgIm9wZW5fdGltZSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sICJjbG9zZV90aW1lIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImNvbXBhbnkiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9fX19XSwgImNvbnN1bWVzIjogWyJhcHBsaWNhdGlvbi9qc29uIl0sICJ0YWdzIjogWyJ2YWNhbmNpZXMiXX0sICJkZWxldGUiOiB7Im9wZXJhdGlvbklkIjogInZhY2FuY2llc19kZWxldGUiLCAicmVzcG9uc2VzIjogeyIyMDQiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsidmFjYW5jaWVzIl19fX0sICJzZWN1cml0eURlZmluaXRpb25zIjogeyJiYXNpYyI6IHsidHlwZSI6ICJiYXNpYyJ9fX0=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"application/openapi+json\", \"Allow\": \"GET, HEAD, OPTIONS\", \"Vary\": \"Accept\"}" - } -}, -{ - "model": "silk.response", - "pk": "660ff741-55bd-4330-be5b-ae105e853d9d", - "fields": { - "request": "d8c7162f-a56d-4b18-8979-b8faf05797df", - "status_code": 302, - "raw_body": "", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Location\": \"/admin/login/?next=/admin/\", \"Last-Modified\": \"Mon, 27 Mar 2017 14:32:32 GMT\", \"Expires\": \"Mon, 27 Mar 2017 14:32:32 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\"}" - } -}, -{ - "model": "silk.response", - "pk": "668a11d2-35bc-4d91-9e7a-52d44d029cee", - "fields": { - "request": "61cad02f-8c36-4c74-a8a5-a0b3a8cbc903", - "status_code": 200, - "raw_body": "W10=", - "body": "[]", - "encoded_headers": "{\"Content-Type\": \"application/json\", \"Allow\": \"GET, POST, OPTIONS\", \"Vary\": \"Accept\"}" - } -}, -{ - "model": "silk.response", - "pk": "66c3bbff-08f4-464d-9b86-ac163ab1b932", - "fields": { - "request": "538476ed-792a-40ef-ab8a-59383d47a8af", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPkNoYW5nZSBjb21wYW55IHwgRGphbmdvIHNpdGUgYWRtaW48L3RpdGxlPgo8bGluayByZWw9InN0eWxlc2hlZXQiIHR5cGU9InRleHQvY3NzIiBocmVmPSIvYXNzZXRzL2FkbWluL2Nzcy9iYXNlLmNzcyIgLz4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvZm9ybXMuY3NzIiAvPgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9jb3JlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IvanF1ZXJ5L2pxdWVyeS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvanF1ZXJ5LmluaXQuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2FkbWluL1JlbGF0ZWRPYmplY3RMb29rdXBzLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hY3Rpb25zLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy91cmxpZnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL3ByZXBvcHVsYXRlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IveHJlZ2V4cC94cmVnZXhwLmpzIj48L3NjcmlwdD4KCjxtZXRhIG5hbWU9InJvYm90cyIgY29udGVudD0iTk9ORSxOT0FSQ0hJVkUiIC8+CjwvaGVhZD4KCgo8Ym9keSBjbGFzcz0iIGFwcC1jb3JlIG1vZGVsLWNvbXBhbnkgY2hhbmdlLWZvcm0iCiAgZGF0YS1hZG1pbi11dGMtb2Zmc2V0PSIwIj4KCjwhLS0gQ29udGFpbmVyIC0tPgo8ZGl2IGlkPSJjb250YWluZXIiPgoKICAgIAogICAgPCEtLSBIZWFkZXIgLS0+CiAgICA8ZGl2IGlkPSJoZWFkZXIiPgogICAgICAgIDxkaXYgaWQ9ImJyYW5kaW5nIj4KICAgICAgICAKPGgxIGlkPSJzaXRlLW5hbWUiPjxhIGhyZWY9Ii9hZG1pbi8iPkRqYW5nbyBhZG1pbmlzdHJhdGlvbjwvYT48L2gxPgoKICAgICAgICA8L2Rpdj4KICAgICAgICAKICAgICAgICAKICAgICAgICA8ZGl2IGlkPSJ1c2VyLXRvb2xzIj4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICBXZWxjb21lLAogICAgICAgICAgICAgICAgPHN0cm9uZz5rYXBlPC9zdHJvbmc+LgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvIj5WaWV3IHNpdGU8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL3Bhc3N3b3JkX2NoYW5nZS8iPkNoYW5nZSBwYXNzd29yZDwvYT4gLwogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vbG9nb3V0LyI+TG9nIG91dDwvYT4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgCiAgICA8L2Rpdj4KICAgIDwhLS0gRU5EIEhlYWRlciAtLT4KICAgIAo8ZGl2IGNsYXNzPSJicmVhZGNydW1icyI+CjxhIGhyZWY9Ii9hZG1pbi8iPkhvbWU8L2E+CiZyc2FxdW87IDxhIGhyZWY9Ii9hZG1pbi9jb3JlLyI+Q29yZTwvYT4KJnJzYXF1bzsgPGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8iPkNvbXBhbnlzPC9hPgomcnNhcXVvOyBDb21wYW55IG9iamVjdAo8L2Rpdj4KCiAgICAKCiAgICAKICAgICAgICAKICAgIAoKICAgIDwhLS0gQ29udGVudCAtLT4KICAgIDxkaXYgaWQ9ImNvbnRlbnQiIGNsYXNzPSJjb2xNIj4KICAgICAgICAKICAgICAgICA8aDE+Q2hhbmdlIGNvbXBhbnk8L2gxPgogICAgICAgIDxkaXYgaWQ9ImNvbnRlbnQtbWFpbiI+CgoKICA8dWwgY2xhc3M9Im9iamVjdC10b29scyI+CiAgICAKICAgIDxsaT4KICAgICAgICAKICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS9jb21wYW55LzEvaGlzdG9yeS8iIGNsYXNzPSJoaXN0b3J5bGluayI+SGlzdG9yeTwvYT4KICAgIDwvbGk+CiAgICAKICAgIAogIDwvdWw+CgoKPGZvcm0gZW5jdHlwZT0ibXVsdGlwYXJ0L2Zvcm0tZGF0YSIgYWN0aW9uPSIiIG1ldGhvZD0icG9zdCIgaWQ9ImNvbXBhbnlfZm9ybSIgbm92YWxpZGF0ZT48aW5wdXQgdHlwZT0naGlkZGVuJyBuYW1lPSdjc3JmbWlkZGxld2FyZXRva2VuJyB2YWx1ZT0nWUc0ZFJISUV5d1RURVVlMXJaeFp1REdQalpPdXFreHUxRm5Oc29ndFFFNkxGM0swWkhJQ1hPYm55VUQ0Uk5sTicgLz4KPGRpdj4KCgoKCgoKCiAgPGZpZWxkc2V0IGNsYXNzPSJtb2R1bGUgYWxpZ25lZCAiPgogICAgCiAgICAKICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImZvcm0tcm93IGZpZWxkLXVzZXIiPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgY2xhc3M9InJlcXVpcmVkIiBmb3I9ImlkX3VzZXIiPlVzZXI6PC9sYWJlbD4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAKPGRpdiBjbGFzcz0icmVsYXRlZC13aWRnZXQtd3JhcHBlciI+CiAgICA8c2VsZWN0IGlkPSJpZF91c2VyIiBuYW1lPSJ1c2VyIiByZXF1aXJlZD4KPG9wdGlvbiB2YWx1ZT0iIj4tLS0tLS0tLS08L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMSIgc2VsZWN0ZWQ9InNlbGVjdGVkIj5rYXBlPC9vcHRpb24+Cjwvc2VsZWN0PgogICAgCiAgICAgICAgCiAgICAgICAgPGEgY2xhc3M9InJlbGF0ZWQtd2lkZ2V0LXdyYXBwZXItbGluayBjaGFuZ2UtcmVsYXRlZCIgaWQ9ImNoYW5nZV9pZF91c2VyIgogICAgICAgICAgICBkYXRhLWhyZWYtdGVtcGxhdGU9Ii9hZG1pbi9hdXRoL3VzZXIvX19ma19fL2NoYW5nZS8/X3RvX2ZpZWxkPWlkJmFtcDtfcG9wdXA9MSIKICAgICAgICAgICAgdGl0bGU9IkNoYW5nZSBzZWxlY3RlZCB1c2VyIj4KICAgICAgICAgICAgPGltZyBzcmM9Ii9hc3NldHMvYWRtaW4vaW1nL2ljb24tY2hhbmdlbGluay5zdmciIGFsdD0iQ2hhbmdlIi8+CiAgICAgICAgPC9hPgogICAgICAgIAogICAgICAgIAogICAgICAgIDxhIGNsYXNzPSJyZWxhdGVkLXdpZGdldC13cmFwcGVyLWxpbmsgYWRkLXJlbGF0ZWQiIGlkPSJhZGRfaWRfdXNlciIKICAgICAgICAgICAgaHJlZj0iL2FkbWluL2F1dGgvdXNlci9hZGQvP190b19maWVsZD1pZCZhbXA7X3BvcHVwPTEiCiAgICAgICAgICAgIHRpdGxlPSJBZGQgYW5vdGhlciB1c2VyIj4KICAgICAgICAgICAgPGltZyBzcmM9Ii9hc3NldHMvYWRtaW4vaW1nL2ljb24tYWRkbGluay5zdmciIGFsdD0iQWRkIi8+CiAgICAgICAgPC9hPgogICAgICAgIAogICAgICAgIAogICAgCjwvZGl2PgoKICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC1kZXNjcmlwdGlvbiI+CiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXY+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxsYWJlbCBjbGFzcz0icmVxdWlyZWQiIGZvcj0iaWRfZGVzY3JpcHRpb24iPkRlc2NyaXB0aW9uOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRleHRhcmVhIGNsYXNzPSJ2TGFyZ2VUZXh0RmllbGQiIGNvbHM9IjQwIiBpZD0iaWRfZGVzY3JpcHRpb24iIG5hbWU9ImRlc2NyaXB0aW9uIiByb3dzPSIxMCIgcmVxdWlyZWQ+DQphc2Rhc2Rhc2Q8L3RleHRhcmVhPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDwvZGl2PgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImZvcm0tcm93IGZpZWxkLXZlcmlmaWVkIj4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGRpdiBjbGFzcz0iY2hlY2tib3gtcm93Ij4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPGlucHV0IGlkPSJpZF92ZXJpZmllZCIgbmFtZT0idmVyaWZpZWQiIHR5cGU9ImNoZWNrYm94IiAvPjxsYWJlbCBjbGFzcz0idkNoZWNrYm94TGFiZWwiIGZvcj0iaWRfdmVyaWZpZWQiPlZlcmlmaWVkPC9sYWJlbD4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDwvZGl2PgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgIAo8L2ZpZWxkc2V0PgoKCgoKCgoKCgoKCgoKPGRpdiBjbGFzcz0ic3VibWl0LXJvdyI+CjxpbnB1dCB0eXBlPSJzdWJtaXQiIHZhbHVlPSJTYXZlIiBjbGFzcz0iZGVmYXVsdCIgbmFtZT0iX3NhdmUiIC8+CgogICAgCiAgICA8cCBjbGFzcz0iZGVsZXRlbGluay1ib3giPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL2NvbXBhbnkvMS9kZWxldGUvIiBjbGFzcz0iZGVsZXRlbGluayI+RGVsZXRlPC9hPjwvcD4KCgo8aW5wdXQgdHlwZT0ic3VibWl0IiB2YWx1ZT0iU2F2ZSBhbmQgYWRkIGFub3RoZXIiIG5hbWU9Il9hZGRhbm90aGVyIiAvPgo8aW5wdXQgdHlwZT0ic3VibWl0IiB2YWx1ZT0iU2F2ZSBhbmQgY29udGludWUgZWRpdGluZyIgbmFtZT0iX2NvbnRpbnVlIiAvPgo8L2Rpdj4KCgoKICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IgogICAgICAgICAgICBpZD0iZGphbmdvLWFkbWluLWZvcm0tYWRkLWNvbnN0YW50cyIKICAgICAgICAgICAgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2NoYW5nZV9mb3JtLmpzIgogICAgICAgICAgICA+CiAgICA8L3NjcmlwdD4KCgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IgogICAgICAgIGlkPSJkamFuZ28tYWRtaW4tcHJlcG9wdWxhdGVkLWZpZWxkcy1jb25zdGFudHMiCiAgICAgICAgc3JjPSIvYXNzZXRzL2FkbWluL2pzL3ByZXBvcHVsYXRlX2luaXQuanMiCiAgICAgICAgZGF0YS1wcmVwb3B1bGF0ZWQtZmllbGRzPSJbXSI+Cjwvc2NyaXB0PgoKCjwvZGl2Pgo8L2Zvcm0+PC9kaXY+CgogICAgICAgIAogICAgICAgIDxiciBjbGFzcz0iY2xlYXIiIC8+CiAgICA8L2Rpdj4KICAgIDwhLS0gRU5EIENvbnRlbnQgLS0+CgogICAgPGRpdiBpZD0iZm9vdGVyIj48L2Rpdj4KPC9kaXY+CjwhLS0gRU5EIENvbnRhaW5lciAtLT4KCjwvYm9keT4KPC9odG1sPgo=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 14:33:54 GMT\", \"Expires\": \"Mon, 27 Mar 2017 14:33:54 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "67358b7f-7bb8-43e6-b432-00dd2119f6a4", - "fields": { - "request": "a4e12f7a-a416-41d5-b3ce-928301538f4b", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "686db858-ebe7-40ec-bf30-fe5317ed2448", - "fields": { - "request": "4db69323-ae4a-4b1a-9bf6-bf7cbe7d563f", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "68890aa5-c27f-4b53-a056-c5a8e805f513", - "fields": { - "request": "ba24d21c-d54b-4531-a70e-458041e270f7", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "6a1845bc-ae8e-4c7e-adb7-0614e13f0400", - "fields": { - "request": "d4d8cbff-0265-4701-b835-362bc61719d7", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPlNlbGVjdCB2YWNhbmN5IHRvIGNoYW5nZSB8IERqYW5nbyBzaXRlIGFkbWluPC90aXRsZT4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvYmFzZS5jc3MiIC8+CgogIAogIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvYWRtaW4vY3NzL2NoYW5nZWxpc3RzLmNzcyIgLz4KICAKICAKICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KICAKICAKICAKCgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvY29yZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL2pxdWVyeS9qcXVlcnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2pxdWVyeS5pbml0LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hZG1pbi9SZWxhdGVkT2JqZWN0TG9va3Vwcy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvYWN0aW9ucy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdXJsaWZ5LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9wcmVwb3B1bGF0ZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL3hyZWdleHAveHJlZ2V4cC5qcyI+PC9zY3JpcHQ+Cgo8bWV0YSBuYW1lPSJyb2JvdHMiIGNvbnRlbnQ9Ik5PTkUsTk9BUkNISVZFIiAvPgo8L2hlYWQ+CgoKPGJvZHkgY2xhc3M9IiBhcHAtY29yZSBtb2RlbC12YWNhbmN5IGNoYW5nZS1saXN0IgogIGRhdGEtYWRtaW4tdXRjLW9mZnNldD0iMCI+Cgo8IS0tIENvbnRhaW5lciAtLT4KPGRpdiBpZD0iY29udGFpbmVyIj4KCiAgICAKICAgIDwhLS0gSGVhZGVyIC0tPgogICAgPGRpdiBpZD0iaGVhZGVyIj4KICAgICAgICA8ZGl2IGlkPSJicmFuZGluZyI+CiAgICAgICAgCjxoMSBpZD0ic2l0ZS1uYW1lIj48YSBocmVmPSIvYWRtaW4vIj5EamFuZ28gYWRtaW5pc3RyYXRpb248L2E+PC9oMT4KCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgPGRpdiBpZD0idXNlci10b29scyI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgV2VsY29tZSwKICAgICAgICAgICAgICAgIDxzdHJvbmc+a2FwZTwvc3Ryb25nPi4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iLyI+VmlldyBzaXRlPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9wYXNzd29yZF9jaGFuZ2UvIj5DaGFuZ2UgcGFzc3dvcmQ8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2xvZ291dC8iPkxvZyBvdXQ8L2E+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIAogICAgPC9kaXY+CiAgICA8IS0tIEVORCBIZWFkZXIgLS0+CiAgICAKPGRpdiBjbGFzcz0iYnJlYWRjcnVtYnMiPgo8YSBocmVmPSIvYWRtaW4vIj5Ib21lPC9hPgomcnNhcXVvOyA8YSBocmVmPSIvYWRtaW4vY29yZS8iPkNvcmU8L2E+CiZyc2FxdW87IFZhY2FuY3lzCjwvZGl2PgoKICAgIAoKICAgIAogICAgICAgIAogICAgCgogICAgPCEtLSBDb250ZW50IC0tPgogICAgPGRpdiBpZD0iY29udGVudCIgY2xhc3M9ImZsZXgiPgogICAgICAgIAogICAgICAgIDxoMT5TZWxlY3QgdmFjYW5jeSB0byBjaGFuZ2U8L2gxPgogICAgICAgIAogIDxkaXYgaWQ9ImNvbnRlbnQtbWFpbiI+CiAgICAKICAgICAgICA8dWwgY2xhc3M9Im9iamVjdC10b29scyI+CiAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaT4KICAgICAgICAgICAgICAKICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS92YWNhbmN5L2FkZC8iIGNsYXNzPSJhZGRsaW5rIj4KICAgICAgICAgICAgICAgIEFkZCB2YWNhbmN5CiAgICAgICAgICAgICAgPC9hPgogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgIAogICAgICAgIDwvdWw+CiAgICAKICAgIAogICAgPGRpdiBjbGFzcz0ibW9kdWxlIiBpZD0iY2hhbmdlbGlzdCI+CiAgICAgIAoKCiAgICAgIAoKCiAgICAgIAogICAgICAgIAogICAgICAKCiAgICAgIDxmb3JtIGlkPSJjaGFuZ2VsaXN0LWZvcm0iIG1ldGhvZD0icG9zdCIgbm92YWxpZGF0ZT48aW5wdXQgdHlwZT0naGlkZGVuJyBuYW1lPSdjc3JmbWlkZGxld2FyZXRva2VuJyB2YWx1ZT0ndk1Hc2RsQngyblJvakoxVnBtRWRFcEZzaFpSMVdmNjVVU05ocFJ0c1BrMk5HUjNuOE45Rnc2bWNmVVhRZ2YyVScgLz4KICAgICAgCgogICAgICAKICAgICAgICAgIAo8ZGl2IGNsYXNzPSJhY3Rpb25zIj4KICAgIDxsYWJlbD5BY3Rpb246IDxzZWxlY3QgbmFtZT0iYWN0aW9uIiByZXF1aXJlZD4KPG9wdGlvbiB2YWx1ZT0iIiBzZWxlY3RlZD0ic2VsZWN0ZWQiPi0tLS0tLS0tLTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSJkZWxldGVfc2VsZWN0ZWQiPkRlbGV0ZSBzZWxlY3RlZCB2YWNhbmN5czwvb3B0aW9uPgo8L3NlbGVjdD48L2xhYmVsPjxpbnB1dCBjbGFzcz0ic2VsZWN0LWFjcm9zcyIgbmFtZT0ic2VsZWN0X2Fjcm9zcyIgdHlwZT0iaGlkZGVuIiB2YWx1ZT0iMCIgLz4KICAgIDxidXR0b24gdHlwZT0ic3VibWl0IiBjbGFzcz0iYnV0dG9uIiB0aXRsZT0iUnVuIHRoZSBzZWxlY3RlZCBhY3Rpb24iIG5hbWU9ImluZGV4IiB2YWx1ZT0iMCI+R288L2J1dHRvbj4KICAgIAogICAgICAgIDxzcGFuIGNsYXNzPSJhY3Rpb24tY291bnRlciIgZGF0YS1hY3Rpb25zLWljbnQ9IjEiPjAgb2YgMSBzZWxlY3RlZDwvc3Bhbj4KICAgICAgICAKICAgIAo8L2Rpdj4KCiAgICAgICAgICAKCgo8ZGl2IGNsYXNzPSJyZXN1bHRzIj4KPHRhYmxlIGlkPSJyZXN1bHRfbGlzdCI+Cjx0aGVhZD4KPHRyPgoKPHRoIHNjb3BlPSJjb2wiICBjbGFzcz0iYWN0aW9uLWNoZWNrYm94LWNvbHVtbiI+CiAgIAogICA8ZGl2IGNsYXNzPSJ0ZXh0Ij48c3Bhbj48aW5wdXQgdHlwZT0iY2hlY2tib3giIGlkPSJhY3Rpb24tdG9nZ2xlIiAvPjwvc3Bhbj48L2Rpdj4KICAgPGRpdiBjbGFzcz0iY2xlYXIiPjwvZGl2Pgo8L3RoPgo8dGggc2NvcGU9ImNvbCIgIGNsYXNzPSJjb2x1bW4tX19zdHJfXyI+CiAgIAogICA8ZGl2IGNsYXNzPSJ0ZXh0Ij48c3Bhbj5WYWNhbmN5PC9zcGFuPjwvZGl2PgogICA8ZGl2IGNsYXNzPSJjbGVhciI+PC9kaXY+CjwvdGg+CjwvdHI+CjwvdGhlYWQ+Cjx0Ym9keT4KCgo8dHIgY2xhc3M9InJvdzEiPjx0ZCBjbGFzcz0iYWN0aW9uLWNoZWNrYm94Ij48aW5wdXQgY2xhc3M9ImFjdGlvbi1zZWxlY3QiIG5hbWU9Il9zZWxlY3RlZF9hY3Rpb24iIHR5cGU9ImNoZWNrYm94IiB2YWx1ZT0iMSIgLz48L3RkPjx0aCBjbGFzcz0iZmllbGQtX19zdHJfXyI+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS8xL2NoYW5nZS8iPlZhY2FuY3kgb2JqZWN0PC9hPjwvdGg+PC90cj4KCjwvdGJvZHk+CjwvdGFibGU+CjwvZGl2PgoKCiAgICAgICAgICAKICAgICAgCiAgICAgIAoKPHAgY2xhc3M9InBhZ2luYXRvciI+CgoxIHZhY2FuY3kKCgo8L3A+CgogICAgICA8L2Zvcm0+CiAgICA8L2Rpdj4KICA8L2Rpdj4KCiAgICAgICAgCiAgICAgICAgPGJyIGNsYXNzPSJjbGVhciIgLz4KICAgIDwvZGl2PgogICAgPCEtLSBFTkQgQ29udGVudCAtLT4KCiAgICA8ZGl2IGlkPSJmb290ZXIiPjwvZGl2Pgo8L2Rpdj4KPCEtLSBFTkQgQ29udGFpbmVyIC0tPgoKPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 17:17:45 GMT\", \"Expires\": \"Mon, 27 Mar 2017 17:17:45 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "6a80b313-51ab-417a-8ccd-4a43f0cf4026", - "fields": { - "request": "aac92f61-33fc-4851-963d-c5bbd1db85fa", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPlNpdGUgYWRtaW5pc3RyYXRpb24gfCBEamFuZ28gc2l0ZSBhZG1pbjwvdGl0bGU+CjxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvYWRtaW4vY3NzL2Jhc2UuY3NzIiAvPgo8bGluayByZWw9InN0eWxlc2hlZXQiIHR5cGU9InRleHQvY3NzIiBocmVmPSIvYXNzZXRzL2FkbWluL2Nzcy9kYXNoYm9hcmQuY3NzIiAvPgoKCjxtZXRhIG5hbWU9InJvYm90cyIgY29udGVudD0iTk9ORSxOT0FSQ0hJVkUiIC8+CjwvaGVhZD4KCgo8Ym9keSBjbGFzcz0iIGRhc2hib2FyZCIKICBkYXRhLWFkbWluLXV0Yy1vZmZzZXQ9IjAiPgoKPCEtLSBDb250YWluZXIgLS0+CjxkaXYgaWQ9ImNvbnRhaW5lciI+CgogICAgCiAgICA8IS0tIEhlYWRlciAtLT4KICAgIDxkaXYgaWQ9ImhlYWRlciI+CiAgICAgICAgPGRpdiBpZD0iYnJhbmRpbmciPgogICAgICAgIAo8aDEgaWQ9InNpdGUtbmFtZSI+PGEgaHJlZj0iL2FkbWluLyI+RGphbmdvIGFkbWluaXN0cmF0aW9uPC9hPjwvaDE+CgogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIDxkaXYgaWQ9InVzZXItdG9vbHMiPgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIFdlbGNvbWUsCiAgICAgICAgICAgICAgICA8c3Ryb25nPmthcGU8L3N0cm9uZz4uCiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii8iPlZpZXcgc2l0ZTwvYT4gLwogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vcGFzc3dvcmRfY2hhbmdlLyI+Q2hhbmdlIHBhc3N3b3JkPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9sb2dvdXQvIj5Mb2cgb3V0PC9hPgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgICAgICAKICAgICAgICAKICAgICAgICAKICAgIDwvZGl2PgogICAgPCEtLSBFTkQgSGVhZGVyIC0tPgogICAgCiAgICAKCiAgICAKICAgICAgICAKICAgIAoKICAgIDwhLS0gQ29udGVudCAtLT4KICAgIDxkaXYgaWQ9ImNvbnRlbnQiIGNsYXNzPSJjb2xNUyI+CiAgICAgICAgCiAgICAgICAgPGgxPlNpdGUgYWRtaW5pc3RyYXRpb248L2gxPgogICAgICAgIAo8ZGl2IGlkPSJjb250ZW50LW1haW4iPgoKCiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJhcHAtYXV0aCBtb2R1bGUiPgogICAgICAgIDx0YWJsZT4KICAgICAgICA8Y2FwdGlvbj4KICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2F1dGgvIiBjbGFzcz0ic2VjdGlvbiIgdGl0bGU9Ik1vZGVscyBpbiB0aGUgQXV0aGVudGljYXRpb24gYW5kIEF1dGhvcml6YXRpb24gYXBwbGljYXRpb24iPkF1dGhlbnRpY2F0aW9uIGFuZCBBdXRob3JpemF0aW9uPC9hPgogICAgICAgIDwvY2FwdGlvbj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1ncm91cCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL2dyb3VwLyI+R3JvdXBzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvZ3JvdXAvYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL2dyb3VwLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC11c2VyIj4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8iPlVzZXJzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgPC90YWJsZT4KICAgICAgICA8L2Rpdj4KICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImFwcC1jb3JlIG1vZHVsZSI+CiAgICAgICAgPHRhYmxlPgogICAgICAgIDxjYXB0aW9uPgogICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS8iIGNsYXNzPSJzZWN0aW9uIiB0aXRsZT0iTW9kZWxzIGluIHRoZSBDb3JlIGFwcGxpY2F0aW9uIj5Db3JlPC9hPgogICAgICAgIDwvY2FwdGlvbj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1hcHBsaWNhdGlvbiI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL2FwcGxpY2F0aW9uLyI+QXBwbGljYXRpb25zPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvYXBwbGljYXRpb24vYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL2FwcGxpY2F0aW9uLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1jb21wYW55Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8iPkNvbXBhbnlzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgICAgIDx0ciBjbGFzcz0ibW9kZWwtc3R1ZGVudCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvIj5TdHVkZW50czwvYT48L3RoPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvIiBjbGFzcz0iY2hhbmdlbGluayI+Q2hhbmdlPC9hPjwvdGQ+CiAgICAgICAgICAgIAogICAgICAgICAgICA8L3RyPgogICAgICAgIAogICAgICAgICAgICA8dHIgY2xhc3M9Im1vZGVsLXN1cGVydmlzb3IiPgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0aCBzY29wZT0icm93Ij48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yLyI+U3VwZXJ2aXNvcnM8L2E+PC90aD4KICAgICAgICAgICAgCgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0ZD48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yL2FkZC8iIGNsYXNzPSJhZGRsaW5rIj5BZGQ8L2E+PC90ZD4KICAgICAgICAgICAgCgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0ZD48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC12YWNhbmN5Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS8iPlZhY2FuY3lzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgPC90YWJsZT4KICAgICAgICA8L2Rpdj4KICAgIAoKPC9kaXY+CgogICAgICAgIAo8ZGl2IGlkPSJjb250ZW50LXJlbGF0ZWQiPgogICAgPGRpdiBjbGFzcz0ibW9kdWxlIiBpZD0icmVjZW50LWFjdGlvbnMtbW9kdWxlIj4KICAgICAgICA8aDI+UmVjZW50IGFjdGlvbnM8L2gyPgogICAgICAgIDxoMz5NeSBhY3Rpb25zPC9oMz4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgPHVsIGNsYXNzPSJhY3Rpb25saXN0Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaSBjbGFzcz0iYWRkbGluayI+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS9zdHVkZW50LzEvY2hhbmdlLyI+U3R1ZGVudCBvYmplY3Q8L2E+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxici8+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz0ibWluaSBxdWlldCI+U3R1ZGVudDwvc3Bhbj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgICAgPGxpIGNsYXNzPSJhZGRsaW5rIj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9jb3JlL2NvbXBhbnkvMi9jaGFuZ2UvIj5Db21wYW55IG9iamVjdDwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5Db21wYW55PC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8bGkgY2xhc3M9ImRlbGV0ZWxpbmsiPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgQ29tcGFueSBvYmplY3QKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5Db21wYW55PC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8bGkgY2xhc3M9ImFkZGxpbmsiPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci80L2NoYW5nZS8iPmZhcmhhbnN1cGVyPC9hPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YnIvPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9Im1pbmkgcXVpZXQiPlVzZXI8L3NwYW4+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgPC9saT4KICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaSBjbGFzcz0iYWRkbGluayI+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vYXV0aC91c2VyLzMvY2hhbmdlLyI+ZmFyaGFuY29ycDwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5Vc2VyPC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8bGkgY2xhc3M9ImFkZGxpbmsiPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8yL2NoYW5nZS8iPmZhcmhhbjwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5Vc2VyPC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8bGkgY2xhc3M9ImFkZGxpbmsiPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8xL2NoYW5nZS8iPkNvbXBhbnkgb2JqZWN0PC9hPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YnIvPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9Im1pbmkgcXVpZXQiPkNvbXBhbnk8L3NwYW4+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgPC9saT4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdWw+CiAgICAgICAgICAgIAogICAgPC9kaXY+CjwvZGl2PgoKICAgICAgICA8YnIgY2xhc3M9ImNsZWFyIiAvPgogICAgPC9kaXY+CiAgICA8IS0tIEVORCBDb250ZW50IC0tPgoKICAgIDxkaXYgaWQ9ImZvb3RlciI+PC9kaXY+CjwvZGl2Pgo8IS0tIEVORCBDb250YWluZXIgLS0+Cgo8L2JvZHk+CjwvaHRtbD4K", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 15:22:03 GMT\", \"Expires\": \"Mon, 27 Mar 2017 15:22:03 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\"}" - } -}, -{ - "model": "silk.response", - "pk": "6adf86db-7323-49ce-848a-eebc9e05b266", - "fields": { - "request": "947da821-8bc6-461d-bf6a-28f59345d45d", - "status_code": 500, - "raw_body": "QXR0cmlidXRlRXJyb3IgYXQgL2FwaS9zdHVkZW50cy8zL2Jvb2ttYXJrZWQtdmFjYW5jaWVzLwonZGljdCcgb2JqZWN0IGhhcyBubyBhdHRyaWJ1dGUgJ2lkJwoKUmVxdWVzdCBNZXRob2Q6IFBPU1QKUmVxdWVzdCBVUkw6IGh0dHA6Ly8xMjcuMC4wLjE6ODAwMC9hcGkvc3R1ZGVudHMvMy9ib29rbWFya2VkLXZhY2FuY2llcy8KRGphbmdvIFZlcnNpb246IDEuMTAuNQpQeXRob24gRXhlY3V0YWJsZTogQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXHB5dGhvbi5leGUKUHl0aG9uIFZlcnNpb246IDMuNi4wClB5dGhvbiBQYXRoOiBbJ0Q6XFxQUExBJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXHB5dGhvbjM2LnppcCcsICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyXFxETExzJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXGxpYicsICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXGxpYlxcc2l0ZS1wYWNrYWdlcyddClNlcnZlciB0aW1lOiBNb24sIDI3IE1hciAyMDE3IDE1OjQ2OjIyICswMDAwCkluc3RhbGxlZCBBcHBsaWNhdGlvbnM6ClsnZGphbmdvLmNvbnRyaWIuYWRtaW4nLAogJ2RqYW5nby5jb250cmliLmF1dGgnLAogJ2RqYW5nby5jb250cmliLmNvbnRlbnR0eXBlcycsCiAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMnLAogJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzJywKICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcycsCiAnd2VicGFja19sb2FkZXInLAogJ2NvcmUnLAogJ3Jlc3RfZnJhbWV3b3JrJywKICdkamFuZ29fbm9zZScsCiAncmVzdF9mcmFtZXdvcmtfc3dhZ2dlcicsCiAnc2lsayddCkluc3RhbGxlZCBNaWRkbGV3YXJlOgpbJ2RqYW5nby5taWRkbGV3YXJlLnNlY3VyaXR5LlNlY3VyaXR5TWlkZGxld2FyZScsCiAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMubWlkZGxld2FyZS5TZXNzaW9uTWlkZGxld2FyZScsCiAnZGphbmdvLm1pZGRsZXdhcmUuY29tbW9uLkNvbW1vbk1pZGRsZXdhcmUnLAogJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5hdXRoLm1pZGRsZXdhcmUuQXV0aGVudGljYXRpb25NaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5tZXNzYWdlcy5taWRkbGV3YXJlLk1lc3NhZ2VNaWRkbGV3YXJlJywKICdkamFuZ28ubWlkZGxld2FyZS5jbGlja2phY2tpbmcuWEZyYW1lT3B0aW9uc01pZGRsZXdhcmUnLAogJ3NpbGsubWlkZGxld2FyZS5TaWxreU1pZGRsZXdhcmUnXQoKClRyYWNlYmFjazogIAoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXGRqYW5nb1xjb3JlXGhhbmRsZXJzXGV4Y2VwdGlvbi5weSIgaW4gaW5uZXIKICAzOS4gICAgICAgICAgICAgcmVzcG9uc2UgPSBnZXRfcmVzcG9uc2UocmVxdWVzdCkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cY29yZVxoYW5kbGVyc1xiYXNlLnB5IiBpbiBfZ2V0X3Jlc3BvbnNlCiAgMTg3LiAgICAgICAgICAgICAgICAgcmVzcG9uc2UgPSBzZWxmLnByb2Nlc3NfZXhjZXB0aW9uX2J5X21pZGRsZXdhcmUoZSwgcmVxdWVzdCkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cY29yZVxoYW5kbGVyc1xiYXNlLnB5IiBpbiBfZ2V0X3Jlc3BvbnNlCiAgMTg1LiAgICAgICAgICAgICAgICAgcmVzcG9uc2UgPSB3cmFwcGVkX2NhbGxiYWNrKHJlcXVlc3QsICpjYWxsYmFja19hcmdzLCAqKmNhbGxiYWNrX2t3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cdmlld3NcZGVjb3JhdG9yc1xjc3JmLnB5IiBpbiB3cmFwcGVkX3ZpZXcKICA1OC4gICAgICAgICByZXR1cm4gdmlld19mdW5jKCphcmdzLCAqKmt3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3c2V0cy5weSIgaW4gdmlldwogIDgzLiAgICAgICAgICAgICByZXR1cm4gc2VsZi5kaXNwYXRjaChyZXF1ZXN0LCAqYXJncywgKiprd2FyZ3MpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNccmVzdF9mcmFtZXdvcmtcdmlld3MucHkiIGluIGRpc3BhdGNoCiAgNDgzLiAgICAgICAgICAgICByZXNwb25zZSA9IHNlbGYuaGFuZGxlX2V4Y2VwdGlvbihleGMpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNccmVzdF9mcmFtZXdvcmtcdmlld3MucHkiIGluIGhhbmRsZV9leGNlcHRpb24KICA0NDMuICAgICAgICAgICAgIHNlbGYucmFpc2VfdW5jYXVnaHRfZXhjZXB0aW9uKGV4YykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3cy5weSIgaW4gZGlzcGF0Y2gKICA0ODAuICAgICAgICAgICAgIHJlc3BvbnNlID0gaGFuZGxlcihyZXF1ZXN0LCAqYXJncywgKiprd2FyZ3MpCgpGaWxlICJEOlxQUExBXGNvcmVcdmlld3NcYWNjb3VudHMucHkiIGluIGJvb2ttYXJrX3ZhY2FuY2llcwogIDMwLiAgICAgICAgIHZhY2FuY3kgPSBnZXRfb2JqZWN0X29yXzQwNChWYWNhbmN5Lm9iamVjdHMuYWxsKCksIHBrPXJlcXVlc3QuZGF0YS5pZCkKCkV4Y2VwdGlvbiBUeXBlOiBBdHRyaWJ1dGVFcnJvciBhdCAvYXBpL3N0dWRlbnRzLzMvYm9va21hcmtlZC12YWNhbmNpZXMvCkV4Y2VwdGlvbiBWYWx1ZTogJ2RpY3QnIG9iamVjdCBoYXMgbm8gYXR0cmlidXRlICdpZCcKUmVxdWVzdCBpbmZvcm1hdGlvbjoKVVNFUjoga2FwZQoKR0VUOiBObyBHRVQgZGF0YQoKUE9TVDogTm8gUE9TVCBkYXRhCgpGSUxFUzogTm8gRklMRVMgZGF0YQoKQ09PS0lFUzoKc2Vzc2lvbmlkID0gJ2JsdDg3N2c1ZmptdWN4eTNkZDV1eGNpemF2YjlvcG92Jwpjc3JmdG9rZW4gPSAnMUVFUDJTd0t0MUs5UWJXbkZQU3lXUElpYnRPN01BYVZxS0xFZW9vRmdZVnlkallQb2duME93cDI5b1VXNkE2SycKCk1FVEE6CkFMTFVTRVJTUFJPRklMRSA9ICdDOlxcUHJvZ3JhbURhdGEnCkFQUERBVEEgPSAnQzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmcnCkNPTU1PTlBST0dSQU1GSUxFUyA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcQ29tbW9uIEZpbGVzJwpDT01NT05QUk9HUkFNRklMRVMoWDg2KSA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcQ29tbW9uIEZpbGVzJwpDT01NT05QUk9HUkFNVzY0MzIgPSAnQzpcXFByb2dyYW0gRmlsZXNcXENvbW1vbiBGaWxlcycKQ09NUFVURVJOQU1FID0gJ0ZBUkhBTicKQ09NU1BFQyA9ICdDOlxcV0lORE9XU1xcc3lzdGVtMzJcXGNtZC5leGUnCkNPTlRFTlRfTEVOR1RIID0gJzEyOCcKQ09OVEVOVF9UWVBFID0gJ2FwcGxpY2F0aW9uL2pzb24nCkNTUkZfQ09PS0lFID0gJzFFRVAyU3dLdDFLOVFiV25GUFN5V1BJaWJ0TzdNQWFWcUtMRWVvb0ZnWVZ5ZGpZUG9nbjBPd3AyOW9VVzZBNksnCkRKQU5HT19TRVRUSU5HU19NT0RVTEUgPSAna2FwZS5zZXR0aW5ncycKRlBTX0JST1dTRVJfQVBQX1BST0ZJTEVfU1RSSU5HID0gJ0ludGVybmV0IEV4cGxvcmVyJwpGUFNfQlJPV1NFUl9VU0VSX1BST0ZJTEVfU1RSSU5HID0gJ0RlZmF1bHQnCkZQX05PX0hPU1RfQ0hFQ0sgPSAnTk8nCkdBVEVXQVlfSU5URVJGQUNFID0gJ0NHSS8xLjEnCkhPTUVEUklWRSA9ICdDOicKSE9NRVBBVEggPSAnXFxVc2Vyc1xcZmFyaGFfMDAwJwpIVFRQX0FDQ0VQVCA9ICdhcHBsaWNhdGlvbi9qc29uJwpIVFRQX0FDQ0VQVF9FTkNPRElORyA9ICdnemlwLCBkZWZsYXRlLCBicicKSFRUUF9BQ0NFUFRfTEFOR1VBR0UgPSAnaWQtSUQsaWQ7cT0wLjgsZW4tVVM7cT0wLjYsZW47cT0wLjQnCkhUVFBfQ09OTkVDVElPTiA9ICdrZWVwLWFsaXZlJwpIVFRQX0NPT0tJRSA9ICdzZXNzaW9uaWQ9Ymx0ODc3ZzVmam11Y3h5M2RkNXV4Y2l6YXZiOW9wb3Y7IGNzcmZ0b2tlbj0xRUVQMlN3S3QxSzlRYlduRlBTeVdQSWlidE83TUFhVnFLTEVlb29GZ1lWeWRqWVBvZ24wT3dwMjlvVVc2QTZLJwpIVFRQX0hPU1QgPSAnMTI3LjAuMC4xOjgwMDAnCkhUVFBfT1JJR0lOID0gJ2h0dHA6Ly8xMjcuMC4wLjE6ODAwMCcKSFRUUF9SRUZFUkVSID0gJ2h0dHA6Ly8xMjcuMC4wLjE6ODAwMC9hcGknCkhUVFBfVVNFUl9BR0VOVCA9ICdNb3ppbGxhLzUuMCAoV2luZG93cyBOVCAxMC4wOyBXT1c2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzU2LjAuMjkyNC44NyBTYWZhcmkvNTM3LjM2JwpIVFRQX1hfQ1NSRlRPS0VOID0gJ2pxOTFCdUY1ZTVSN1NqTUZSYzJUTmZ2V1U4bERPNnd5SXdnUU4weDAxMjJ3ZnJPN0FEeGxGV2NHUzNyczg2c24nCkxPQ0FMQVBQREFUQSA9ICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWwnCkxPR09OU0VSVkVSID0gJ1xcXFxGQVJIQU4nCk5VTUJFUl9PRl9QUk9DRVNTT1JTID0gJzInCk9ORURSSVZFID0gJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxPbmVEcml2ZScKT1MgPSAnV2luZG93c19OVCcKUEFUSCA9ICdDOlxcUHJvZ3JhbURhdGFcXE9yYWNsZVxcSmF2YVxcamF2YXBhdGg7QzpcXFByb2dyYW0gRmlsZXNcXEhhc2tlbGxcXGJpbjtDOlxcUHJvZ3JhbSBGaWxlc1xcSGFza2VsbCBQbGF0Zm9ybVxcNy4xMC4zXFxsaWJcXGV4dHJhbGlic1xcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxIYXNrZWxsIFBsYXRmb3JtXFw3LjEwLjNcXGJpbjtDOlxcV0lORE9XU1xcc3lzdGVtMzI7QzpcXFdJTkRPV1M7QzpcXFdJTkRPV1NcXFN5c3RlbTMyXFxXYmVtO0M6XFxXSU5ET1dTXFxTeXN0ZW0zMlxcV2luZG93c1Bvd2VyU2hlbGxcXHYxLjBcXDtDOlxcUHJvZ3JhbSBGaWxlc1xcSGFza2VsbCBQbGF0Zm9ybVxcNy4xMC4zXFxtaW5nd1xcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxKYXZhXFxqZGsxLjguMF83N1xcYmluO0M6XFxjeWd3aW42NFxcYmluOyVsb2NhbGFwcGRhdGElXFxNaWNyb3NvZnRcXFdpbmRvd3NBcHBzO0Q6XFxYQU1QUFxccGhwO0M6XFxQcm9ncmFtIEZpbGVzXFxHaXRcXGNtZDtDOlxceGFtcHBcXHBocDtDOlxcUHJvZ3JhbURhdGFcXENvbXBvc2VyU2V0dXBcXGJpbjtDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcbm9kZWpzXFw7QzpcXFByb2dyYW0gRmlsZXNcXFBvc3RncmVTUUxcXDkuNlxcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxNQVRMQUJcXFIyMDE3YVxcYmluO0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXFNjcmlwdHNcXDtDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyXFw7QzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmdcXGNhYmFsXFxiaW47RDpcXFhBTVBQXFxwaHA7QzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmdcXENvbXBvc2VyXFx2ZW5kb3JcXGJpbjtDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXE1pY3Jvc29mdFxcV2luZG93c0FwcHM7QzpcXHB5dGhvbi0zLjYuMCcKUEFUSEVYVCA9ICcuQ09NOy5FWEU7LkJBVDsuQ01EOy5WQlM7LlZCRTsuSlM7LkpTRTsuV1NGOy5XU0g7Lk1TQycKUEFUSF9JTkZPID0gJy9hcGkvc3R1ZGVudHMvMy9ib29rbWFya2VkLXZhY2FuY2llcy8nClBST0NFU1NPUl9BUkNISVRFQ1RVUkUgPSAneDg2JwpQUk9DRVNTT1JfQVJDSElURVc2NDMyID0gJ0FNRDY0JwpQUk9DRVNTT1JfSURFTlRJRklFUiA9ICdJbnRlbDY0IEZhbWlseSA2IE1vZGVsIDU4IFN0ZXBwaW5nIDksIEdlbnVpbmVJbnRlbCcKUFJPQ0VTU09SX0xFVkVMID0gJzYnClBST0NFU1NPUl9SRVZJU0lPTiA9ICczYTA5JwpQUk9HUkFNREFUQSA9ICdDOlxcUHJvZ3JhbURhdGEnClBST0dSQU1GSUxFUyA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KScKUFJPR1JBTUZJTEVTKFg4NikgPSAnQzpcXFByb2dyYW0gRmlsZXMgKHg4NiknClBST0dSQU1XNjQzMiA9ICdDOlxcUHJvZ3JhbSBGaWxlcycKUFJPTVBUID0gJyRQJEcnClBTTU9EVUxFUEFUSCA9ICdDOlxcV0lORE9XU1xcc3lzdGVtMzJcXFdpbmRvd3NQb3dlclNoZWxsXFx2MS4wXFxNb2R1bGVzXFwnClBVQkxJQyA9ICdDOlxcVXNlcnNcXFB1YmxpYycKUVVFUllfU1RSSU5HID0gJycKUkVNT1RFX0FERFIgPSAnMTI3LjAuMC4xJwpSRU1PVEVfSE9TVCA9ICcnClJFUVVFU1RfTUVUSE9EID0gJ1BPU1QnClJVTl9NQUlOID0gJ3RydWUnClNDUklQVF9OQU1FID0gJycKU0VSVkVSX05BTUUgPSAnRmFyaGFuJwpTRVJWRVJfUE9SVCA9ICc4MDAwJwpTRVJWRVJfUFJPVE9DT0wgPSAnSFRUUC8xLjEnClNFUlZFUl9TT0ZUV0FSRSA9ICdXU0dJU2VydmVyLzAuMicKU0VTU0lPTk5BTUUgPSAnQ29uc29sZScKU1lTVEVNRFJJVkUgPSAnQzonClNZU1RFTVJPT1QgPSAnQzpcXFdJTkRPV1MnClRFTVAgPSAnQzpcXFVzZXJzXFxGQVJIQV9+MVxcQXBwRGF0YVxcTG9jYWxcXFRlbXAnClRNUCA9ICdDOlxcVXNlcnNcXEZBUkhBX34xXFxBcHBEYXRhXFxMb2NhbFxcVGVtcCcKVVNFUkRPTUFJTiA9ICdGYXJoYW4nClVTRVJET01BSU5fUk9BTUlOR1BST0ZJTEUgPSAnRmFyaGFuJwpVU0VSTkFNRSA9ICdGYXJoYW4gRmFyYXNkYWsnClVTRVJQUk9GSUxFID0gJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwJwpWQk9YX01TSV9JTlNUQUxMX1BBVEggPSAnQzpcXFByb2dyYW0gRmlsZXNcXE9yYWNsZVxcVmlydHVhbEJveFxcJwpXSU5ESVIgPSAnQzpcXFdJTkRPV1MnCndzZ2kuZXJyb3JzID0gPF9pby5UZXh0SU9XcmFwcGVyIG5hbWU9JzxzdGRlcnI+JyBtb2RlPSd3JyBlbmNvZGluZz0ndXRmLTgnPgp3c2dpLmZpbGVfd3JhcHBlciA9ICcnCndzZ2kuaW5wdXQgPSA8X2lvLkJ1ZmZlcmVkUmVhZGVyIG5hbWU9MTA3Nj4Kd3NnaS5tdWx0aXByb2Nlc3MgPSBGYWxzZQp3c2dpLm11bHRpdGhyZWFkID0gVHJ1ZQp3c2dpLnJ1bl9vbmNlID0gRmFsc2UKd3NnaS51cmxfc2NoZW1lID0gJ2h0dHAnCndzZ2kudmVyc2lvbiA9IAoKU2V0dGluZ3M6ClVzaW5nIHNldHRpbmdzIG1vZHVsZSBrYXBlLnNldHRpbmdzCkFCU09MVVRFX1VSTF9PVkVSUklERVMgPSB7fQpBRE1JTlMgPSBbXQpBTExPV0VEX0hPU1RTID0gWydib3QucmVjcnVpdC5pZCcsICcxMDQuMjM2Ljc2LjE2MScsICdsb2NhbGhvc3QnLCAnMTI3LjAuMC4xJ10KQVBQRU5EX1NMQVNIID0gVHJ1ZQpBVVRIRU5USUNBVElPTl9CQUNLRU5EUyA9IFsnZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQnXQpBVVRIX1BBU1NXT1JEX1ZBTElEQVRPUlMgPSAnKioqKioqKioqKioqKioqKioqKionCkFVVEhfVVNFUl9NT0RFTCA9ICdhdXRoLlVzZXInCkJBU0VfRElSID0gJ0Q6XFxQUExBJwpDQUNIRVMgPSB7J2RlZmF1bHQnOiB7J0JBQ0tFTkQnOiAnZGphbmdvLmNvcmUuY2FjaGUuYmFja2VuZHMubG9jbWVtLkxvY01lbUNhY2hlJ319CkNBQ0hFX01JRERMRVdBUkVfQUxJQVMgPSAnZGVmYXVsdCcKQ0FDSEVfTUlERExFV0FSRV9LRVlfUFJFRklYID0gJyoqKioqKioqKioqKioqKioqKioqJwpDQUNIRV9NSURETEVXQVJFX1NFQ09ORFMgPSA2MDAKQ1NSRl9DT09LSUVfQUdFID0gMzE0NDk2MDAKQ1NSRl9DT09LSUVfRE9NQUlOID0gTm9uZQpDU1JGX0NPT0tJRV9IVFRQT05MWSA9IEZhbHNlCkNTUkZfQ09PS0lFX05BTUUgPSAnY3NyZnRva2VuJwpDU1JGX0NPT0tJRV9QQVRIID0gJy8nCkNTUkZfQ09PS0lFX1NFQ1VSRSA9IEZhbHNlCkNTUkZfRkFJTFVSRV9WSUVXID0gJ2RqYW5nby52aWV3cy5jc3JmLmNzcmZfZmFpbHVyZScKQ1NSRl9IRUFERVJfTkFNRSA9ICdIVFRQX1hfQ1NSRlRPS0VOJwpDU1JGX1RSVVNURURfT1JJR0lOUyA9IFtdCkRBVEFCQVNFUyA9IHsnZGVmYXVsdCc6IHsnRU5HSU5FJzogJ2RqYW5nby5kYi5iYWNrZW5kcy5wb3N0Z3Jlc3FsX3BzeWNvcGcyJywgJ05BTUUnOiAna2FwZScsICdVU0VSJzogJ2thcGUnLCAnUEFTU1dPUkQnOiAnKioqKioqKioqKioqKioqKioqKionLCAnSE9TVCc6ICdsb2NhbGhvc3QnLCAnUE9SVCc6ICcnLCAnQVRPTUlDX1JFUVVFU1RTJzogRmFsc2UsICdBVVRPQ09NTUlUJzogVHJ1ZSwgJ0NPTk5fTUFYX0FHRSc6IDAsICdPUFRJT05TJzoge30sICdUSU1FX1pPTkUnOiBOb25lLCAnVEVTVCc6IHsnQ0hBUlNFVCc6IE5vbmUsICdDT0xMQVRJT04nOiBOb25lLCAnTkFNRSc6IE5vbmUsICdNSVJST1InOiBOb25lfX19CkRBVEFCQVNFX1JPVVRFUlMgPSBbXQpEQVRBX1VQTE9BRF9NQVhfTUVNT1JZX1NJWkUgPSAyNjIxNDQwCkRBVEFfVVBMT0FEX01BWF9OVU1CRVJfRklFTERTID0gMTAwMApEQVRFVElNRV9GT1JNQVQgPSAnTiBqLCBZLCBQJwpEQVRFVElNRV9JTlBVVF9GT1JNQVRTID0gWyclWS0lbS0lZCAlSDolTTolUycsICclWS0lbS0lZCAlSDolTTolUy4lZicsICclWS0lbS0lZCAlSDolTScsICclWS0lbS0lZCcsICclbS8lZC8lWSAlSDolTTolUycsICclbS8lZC8lWSAlSDolTTolUy4lZicsICclbS8lZC8lWSAlSDolTScsICclbS8lZC8lWScsICclbS8lZC8leSAlSDolTTolUycsICclbS8lZC8leSAlSDolTTolUy4lZicsICclbS8lZC8leSAlSDolTScsICclbS8lZC8leSddCkRBVEVfRk9STUFUID0gJ04gaiwgWScKREFURV9JTlBVVF9GT1JNQVRTID0gWyclWS0lbS0lZCcsICclbS8lZC8lWScsICclbS8lZC8leScsICclYiAlZCAlWScsICclYiAlZCwgJVknLCAnJWQgJWIgJVknLCAnJWQgJWIsICVZJywgJyVCICVkICVZJywgJyVCICVkLCAlWScsICclZCAlQiAlWScsICclZCAlQiwgJVknXQpERUJVRyA9IFRydWUKREVCVUdfUFJPUEFHQVRFX0VYQ0VQVElPTlMgPSBGYWxzZQpERUNJTUFMX1NFUEFSQVRPUiA9ICcuJwpERUZBVUxUX0NIQVJTRVQgPSAndXRmLTgnCkRFRkFVTFRfQ09OVEVOVF9UWVBFID0gJ3RleHQvaHRtbCcKREVGQVVMVF9FWENFUFRJT05fUkVQT1JURVJfRklMVEVSID0gJ2RqYW5nby52aWV3cy5kZWJ1Zy5TYWZlRXhjZXB0aW9uUmVwb3J0ZXJGaWx0ZXInCkRFRkFVTFRfRklMRV9TVE9SQUdFID0gJ2RqYW5nby5jb3JlLmZpbGVzLnN0b3JhZ2UuRmlsZVN5c3RlbVN0b3JhZ2UnCkRFRkFVTFRfRlJPTV9FTUFJTCA9ICd3ZWJtYXN0ZXJAbG9jYWxob3N0JwpERUZBVUxUX0lOREVYX1RBQkxFU1BBQ0UgPSAnJwpERUZBVUxUX1RBQkxFU1BBQ0UgPSAnJwpESVNBTExPV0VEX1VTRVJfQUdFTlRTID0gW10KRU1BSUxfQkFDS0VORCA9ICdkamFuZ28uY29yZS5tYWlsLmJhY2tlbmRzLnNtdHAuRW1haWxCYWNrZW5kJwpFTUFJTF9IT1NUID0gJ2xvY2FsaG9zdCcKRU1BSUxfSE9TVF9QQVNTV09SRCA9ICcqKioqKioqKioqKioqKioqKioqKicKRU1BSUxfSE9TVF9VU0VSID0gJycKRU1BSUxfUE9SVCA9IDI1CkVNQUlMX1NTTF9DRVJURklMRSA9IE5vbmUKRU1BSUxfU1NMX0tFWUZJTEUgPSAnKioqKioqKioqKioqKioqKioqKionCkVNQUlMX1NVQkpFQ1RfUFJFRklYID0gJ1tEamFuZ29dICcKRU1BSUxfVElNRU9VVCA9IE5vbmUKRU1BSUxfVVNFX1NTTCA9IEZhbHNlCkVNQUlMX1VTRV9UTFMgPSBGYWxzZQpGSUxFX0NIQVJTRVQgPSAndXRmLTgnCkZJTEVfVVBMT0FEX0RJUkVDVE9SWV9QRVJNSVNTSU9OUyA9IE5vbmUKRklMRV9VUExPQURfSEFORExFUlMgPSBbJ2RqYW5nby5jb3JlLmZpbGVzLnVwbG9hZGhhbmRsZXIuTWVtb3J5RmlsZVVwbG9hZEhhbmRsZXInLCAnZGphbmdvLmNvcmUuZmlsZXMudXBsb2FkaGFuZGxlci5UZW1wb3JhcnlGaWxlVXBsb2FkSGFuZGxlciddCkZJTEVfVVBMT0FEX01BWF9NRU1PUllfU0laRSA9IDI2MjE0NDAKRklMRV9VUExPQURfUEVSTUlTU0lPTlMgPSBOb25lCkZJTEVfVVBMT0FEX1RFTVBfRElSID0gTm9uZQpGSVJTVF9EQVlfT0ZfV0VFSyA9IDAKRklYVFVSRV9ESVJTID0gW10KRk9SQ0VfU0NSSVBUX05BTUUgPSBOb25lCkZPUk1BVF9NT0RVTEVfUEFUSCA9IE5vbmUKR1pJUF9DT05URU5UX1RZUEVTID0gCklHTk9SQUJMRV80MDRfVVJMUyA9IFtdCklOU1RBTExFRF9BUFBTID0gWydkamFuZ28uY29udHJpYi5hZG1pbicsICdkamFuZ28uY29udHJpYi5hdXRoJywgJ2RqYW5nby5jb250cmliLmNvbnRlbnR0eXBlcycsICdkamFuZ28uY29udHJpYi5zZXNzaW9ucycsICdkamFuZ28uY29udHJpYi5tZXNzYWdlcycsICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcycsICd3ZWJwYWNrX2xvYWRlcicsICdjb3JlJywgJ3Jlc3RfZnJhbWV3b3JrJywgJ2RqYW5nb19ub3NlJywgJ3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXInLCAnc2lsayddCklOVEVSTkFMX0lQUyA9IFtdCkxBTkdVQUdFUyA9IFsoJ2FmJywgJ0FmcmlrYWFucycpLCAoJ2FyJywgJ0FyYWJpYycpLCAoJ2FzdCcsICdBc3R1cmlhbicpLCAoJ2F6JywgJ0F6ZXJiYWlqYW5pJyksICgnYmcnLCAnQnVsZ2FyaWFuJyksICgnYmUnLCAnQmVsYXJ1c2lhbicpLCAoJ2JuJywgJ0JlbmdhbGknKSwgKCdicicsICdCcmV0b24nKSwgKCdicycsICdCb3NuaWFuJyksICgnY2EnLCAnQ2F0YWxhbicpLCAoJ2NzJywgJ0N6ZWNoJyksICgnY3knLCAnV2Vsc2gnKSwgKCdkYScsICdEYW5pc2gnKSwgKCdkZScsICdHZXJtYW4nKSwgKCdkc2InLCAnTG93ZXIgU29yYmlhbicpLCAoJ2VsJywgJ0dyZWVrJyksICgnZW4nLCAnRW5nbGlzaCcpLCAoJ2VuLWF1JywgJ0F1c3RyYWxpYW4gRW5nbGlzaCcpLCAoJ2VuLWdiJywgJ0JyaXRpc2ggRW5nbGlzaCcpLCAoJ2VvJywgJ0VzcGVyYW50bycpLCAoJ2VzJywgJ1NwYW5pc2gnKSwgKCdlcy1hcicsICdBcmdlbnRpbmlhbiBTcGFuaXNoJyksICgnZXMtY28nLCAnQ29sb21iaWFuIFNwYW5pc2gnKSwgKCdlcy1teCcsICdNZXhpY2FuIFNwYW5pc2gnKSwgKCdlcy1uaScsICdOaWNhcmFndWFuIFNwYW5pc2gnKSwgKCdlcy12ZScsICdWZW5lenVlbGFuIFNwYW5pc2gnKSwgKCdldCcsICdFc3RvbmlhbicpLCAoJ2V1JywgJ0Jhc3F1ZScpLCAoJ2ZhJywgJ1BlcnNpYW4nKSwgKCdmaScsICdGaW5uaXNoJyksICgnZnInLCAnRnJlbmNoJyksICgnZnknLCAnRnJpc2lhbicpLCAoJ2dhJywgJ0lyaXNoJyksICgnZ2QnLCAnU2NvdHRpc2ggR2FlbGljJyksICgnZ2wnLCAnR2FsaWNpYW4nKSwgKCdoZScsICdIZWJyZXcnKSwgKCdoaScsICdIaW5kaScpLCAoJ2hyJywgJ0Nyb2F0aWFuJyksICgnaHNiJywgJ1VwcGVyIFNvcmJpYW4nKSwgKCdodScsICdIdW5nYXJpYW4nKSwgKCdpYScsICdJbnRlcmxpbmd1YScpLCAoJ2lkJywgJ0luZG9uZXNpYW4nKSwgKCdpbycsICdJZG8nKSwgKCdpcycsICdJY2VsYW5kaWMnKSwgKCdpdCcsICdJdGFsaWFuJyksICgnamEnLCAnSmFwYW5lc2UnKSwgKCdrYScsICdHZW9yZ2lhbicpLCAoJ2trJywgJ0themFraCcpLCAoJ2ttJywgJ0tobWVyJyksICgna24nLCAnS2FubmFkYScpLCAoJ2tvJywgJ0tvcmVhbicpLCAoJ2xiJywgJ0x1eGVtYm91cmdpc2gnKSwgKCdsdCcsICdMaXRodWFuaWFuJyksICgnbHYnLCAnTGF0dmlhbicpLCAoJ21rJywgJ01hY2Vkb25pYW4nKSwgKCdtbCcsICdNYWxheWFsYW0nKSwgKCdtbicsICdNb25nb2xpYW4nKSwgKCdtcicsICdNYXJhdGhpJyksICgnbXknLCAnQnVybWVzZScpLCAoJ25iJywgJ05vcndlZ2lhbiBCb2ttw6VsJyksICgnbmUnLCAnTmVwYWxpJyksICgnbmwnLCAnRHV0Y2gnKSwgKCdubicsICdOb3J3ZWdpYW4gTnlub3JzaycpLCAoJ29zJywgJ09zc2V0aWMnKSwgKCdwYScsICdQdW5qYWJpJyksICgncGwnLCAnUG9saXNoJyksICgncHQnLCAnUG9ydHVndWVzZScpLCAoJ3B0LWJyJywgJ0JyYXppbGlhbiBQb3J0dWd1ZXNlJyksICgncm8nLCAnUm9tYW5pYW4nKSwgKCdydScsICdSdXNzaWFuJyksICgnc2snLCAnU2xvdmFrJyksICgnc2wnLCAnU2xvdmVuaWFuJyksICgnc3EnLCAnQWxiYW5pYW4nKSwgKCdzcicsICdTZXJiaWFuJyksICgnc3ItbGF0bicsICdTZXJiaWFuIExhdGluJyksICgnc3YnLCAnU3dlZGlzaCcpLCAoJ3N3JywgJ1N3YWhpbGknKSwgKCd0YScsICdUYW1pbCcpLCAoJ3RlJywgJ1RlbHVndScpLCAoJ3RoJywgJ1RoYWknKSwgKCd0cicsICdUdXJraXNoJyksICgndHQnLCAnVGF0YXInKSwgKCd1ZG0nLCAnVWRtdXJ0JyksICgndWsnLCAnVWtyYWluaWFuJyksICgndXInLCAnVXJkdScpLCAoJ3ZpJywgJ1ZpZXRuYW1lc2UnKSwgKCd6aC1oYW5zJywgJ1NpbXBsaWZpZWQgQ2hpbmVzZScpLCAoJ3poLWhhbnQnLCAnVHJhZGl0aW9uYWwgQ2hpbmVzZScpXQpMQU5HVUFHRVNfQklESSA9IFsnaGUnLCAnYXInLCAnZmEnLCAndXInXQpMQU5HVUFHRV9DT0RFID0gJ2VuLXVzJwpMQU5HVUFHRV9DT09LSUVfQUdFID0gTm9uZQpMQU5HVUFHRV9DT09LSUVfRE9NQUlOID0gTm9uZQpMQU5HVUFHRV9DT09LSUVfTkFNRSA9ICdkamFuZ29fbGFuZ3VhZ2UnCkxBTkdVQUdFX0NPT0tJRV9QQVRIID0gJy8nCkxPQ0FMRV9QQVRIUyA9IFtdCkxPR0dJTkcgPSB7fQpMT0dHSU5HX0NPTkZJRyA9ICdsb2dnaW5nLmNvbmZpZy5kaWN0Q29uZmlnJwpMT0dJTl9SRURJUkVDVF9VUkwgPSAnL2FjY291bnRzL3Byb2ZpbGUvJwpMT0dJTl9VUkwgPSAnL2FjY291bnRzL2xvZ2luLycKTE9HT1VUX1JFRElSRUNUX1VSTCA9IE5vbmUKTUFOQUdFUlMgPSBbXQpNRURJQV9ST09UID0gJy9ob21lL2ZpbGVzJwpNRURJQV9VUkwgPSAnL2ZpbGVzLycKTUVTU0FHRV9TVE9SQUdFID0gJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzLnN0b3JhZ2UuZmFsbGJhY2suRmFsbGJhY2tTdG9yYWdlJwpNSURETEVXQVJFID0gWydkamFuZ28ubWlkZGxld2FyZS5zZWN1cml0eS5TZWN1cml0eU1pZGRsZXdhcmUnLCAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMubWlkZGxld2FyZS5TZXNzaW9uTWlkZGxld2FyZScsICdkamFuZ28ubWlkZGxld2FyZS5jb21tb24uQ29tbW9uTWlkZGxld2FyZScsICdkamFuZ28ubWlkZGxld2FyZS5jc3JmLkNzcmZWaWV3TWlkZGxld2FyZScsICdkamFuZ28uY29udHJpYi5hdXRoLm1pZGRsZXdhcmUuQXV0aGVudGljYXRpb25NaWRkbGV3YXJlJywgJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzLm1pZGRsZXdhcmUuTWVzc2FnZU1pZGRsZXdhcmUnLCAnZGphbmdvLm1pZGRsZXdhcmUuY2xpY2tqYWNraW5nLlhGcmFtZU9wdGlvbnNNaWRkbGV3YXJlJywgJ3NpbGsubWlkZGxld2FyZS5TaWxreU1pZGRsZXdhcmUnXQpNSURETEVXQVJFX0NMQVNTRVMgPSBbJ2RqYW5nby5taWRkbGV3YXJlLmNvbW1vbi5Db21tb25NaWRkbGV3YXJlJywgJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJ10KTUlHUkFUSU9OX01PRFVMRVMgPSB7fQpNT05USF9EQVlfRk9STUFUID0gJ0YgaicKTk9TRV9BUkdTID0gWyctLXdpdGgtY292ZXJhZ2UnLCAnLS1jb3Zlci1wYWNrYWdlPWNvcmUudmlld3MnLCAnLS1jb3Zlci1odG1sLWRpcj10ZXN0L2JhY2tlbmQnLCAnLS1jb3Zlci1odG1sJ10KTlVNQkVSX0dST1VQSU5HID0gMApQQVNTV09SRF9IQVNIRVJTID0gJyoqKioqKioqKioqKioqKioqKioqJwpQQVNTV09SRF9SRVNFVF9USU1FT1VUX0RBWVMgPSAnKioqKioqKioqKioqKioqKioqKionClBSRVBFTkRfV1dXID0gRmFsc2UKUkVTVF9GUkFNRVdPUksgPSB7J0RFRkFVTFRfUEVSTUlTU0lPTl9DTEFTU0VTJzogWydyZXN0X2ZyYW1ld29yay5wZXJtaXNzaW9ucy5EamFuZ29Nb2RlbFBlcm1pc3Npb25zT3JBbm9uUmVhZE9ubHknXX0KUk9PVF9VUkxDT05GID0gJ2thcGUudXJscycKUlVOTklOR19ERVZTRVJWRVIgPSBUcnVlClNFQ1JFVF9LRVkgPSAnKioqKioqKioqKioqKioqKioqKionClNFQ1VSRV9CUk9XU0VSX1hTU19GSUxURVIgPSBGYWxzZQpTRUNVUkVfQ09OVEVOVF9UWVBFX05PU05JRkYgPSBGYWxzZQpTRUNVUkVfSFNUU19JTkNMVURFX1NVQkRPTUFJTlMgPSBGYWxzZQpTRUNVUkVfSFNUU19TRUNPTkRTID0gMApTRUNVUkVfUFJPWFlfU1NMX0hFQURFUiA9IE5vbmUKU0VDVVJFX1JFRElSRUNUX0VYRU1QVCA9IFtdClNFQ1VSRV9TU0xfSE9TVCA9IE5vbmUKU0VDVVJFX1NTTF9SRURJUkVDVCA9IEZhbHNlClNFUlZFUl9FTUFJTCA9ICdyb290QGxvY2FsaG9zdCcKU0VTU0lPTl9DQUNIRV9BTElBUyA9ICdkZWZhdWx0JwpTRVNTSU9OX0NPT0tJRV9BR0UgPSAxMjA5NjAwClNFU1NJT05fQ09PS0lFX0RPTUFJTiA9IE5vbmUKU0VTU0lPTl9DT09LSUVfSFRUUE9OTFkgPSBGYWxzZQpTRVNTSU9OX0NPT0tJRV9OQU1FID0gJ3Nlc3Npb25pZCcKU0VTU0lPTl9DT09LSUVfUEFUSCA9ICcvJwpTRVNTSU9OX0NPT0tJRV9TRUNVUkUgPSBGYWxzZQpTRVNTSU9OX0VOR0lORSA9ICdkamFuZ28uY29udHJpYi5zZXNzaW9ucy5iYWNrZW5kcy5kYicKU0VTU0lPTl9FWFBJUkVfQVRfQlJPV1NFUl9DTE9TRSA9IEZhbHNlClNFU1NJT05fRklMRV9QQVRIID0gTm9uZQpTRVNTSU9OX1NBVkVfRVZFUllfUkVRVUVTVCA9IEZhbHNlClNFU1NJT05fU0VSSUFMSVpFUiA9ICdkamFuZ28uY29udHJpYi5zZXNzaW9ucy5zZXJpYWxpemVycy5KU09OU2VyaWFsaXplcicKU0VUVElOR1NfTU9EVUxFID0gJ2thcGUuc2V0dGluZ3MnClNIT1JUX0RBVEVUSU1FX0ZPUk1BVCA9ICdtL2QvWSBQJwpTSE9SVF9EQVRFX0ZPUk1BVCA9ICdtL2QvWScKU0lHTklOR19CQUNLRU5EID0gJ2RqYW5nby5jb3JlLnNpZ25pbmcuVGltZXN0YW1wU2lnbmVyJwpTSUxFTkNFRF9TWVNURU1fQ0hFQ0tTID0gW10KU1RBVElDRklMRVNfRElSUyA9ICdEOlxcUFBMQVxcYXNzZXRzJwpTVEFUSUNGSUxFU19GSU5ERVJTID0gWydkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcy5maW5kZXJzLkZpbGVTeXN0ZW1GaW5kZXInLCAnZGphbmdvLmNvbnRyaWIuc3RhdGljZmlsZXMuZmluZGVycy5BcHBEaXJlY3Rvcmllc0ZpbmRlciddClNUQVRJQ0ZJTEVTX1NUT1JBR0UgPSAnZGphbmdvLmNvbnRyaWIuc3RhdGljZmlsZXMuc3RvcmFnZS5TdGF0aWNGaWxlc1N0b3JhZ2UnClNUQVRJQ19ST09UID0gJy9ob21lL2Fzc2V0cycKU1RBVElDX1VSTCA9ICcvYXNzZXRzLycKVEVNUExBVEVTID0gW3snQkFDS0VORCc6ICdkamFuZ28udGVtcGxhdGUuYmFja2VuZHMuZGphbmdvLkRqYW5nb1RlbXBsYXRlcycsICdESVJTJzogW10sICdBUFBfRElSUyc6IFRydWUsICdPUFRJT05TJzogeydjb250ZXh0X3Byb2Nlc3NvcnMnOiBbJ2RqYW5nby50ZW1wbGF0ZS5jb250ZXh0X3Byb2Nlc3NvcnMuZGVidWcnLCAnZGphbmdvLnRlbXBsYXRlLmNvbnRleHRfcHJvY2Vzc29ycy5yZXF1ZXN0JywgJ2RqYW5nby5jb250cmliLmF1dGguY29udGV4dF9wcm9jZXNzb3JzLmF1dGgnLCAnZGphbmdvLmNvbnRyaWIubWVzc2FnZXMuY29udGV4dF9wcm9jZXNzb3JzLm1lc3NhZ2VzJ119fV0KVEVTVF9OT05fU0VSSUFMSVpFRF9BUFBTID0gW10KVEVTVF9SVU5ORVIgPSAnZGphbmdvX25vc2UuTm9zZVRlc3RTdWl0ZVJ1bm5lcicKVEhPVVNBTkRfU0VQQVJBVE9SID0gJywnClRJTUVfRk9STUFUID0gJ1AnClRJTUVfSU5QVVRfRk9STUFUUyA9IFsnJUg6JU06JVMnLCAnJUg6JU06JVMuJWYnLCAnJUg6JU0nXQpUSU1FX1pPTkUgPSAnVVRDJwpVU0VfRVRBR1MgPSBGYWxzZQpVU0VfSTE4TiA9IFRydWUKVVNFX0wxME4gPSBUcnVlClVTRV9USE9VU0FORF9TRVBBUkFUT1IgPSBGYWxzZQpVU0VfVFogPSBUcnVlClVTRV9YX0ZPUldBUkRFRF9IT1NUID0gRmFsc2UKVVNFX1hfRk9SV0FSREVEX1BPUlQgPSBGYWxzZQpXRUJQQUNLX0xPQURFUiA9IHsnREVGQVVMVCc6IHsnQlVORExFX0RJUl9OQU1FJzogJ2J1bmRsZXMvJywgJ1NUQVRTX0ZJTEUnOiAnRDpcXFBQTEFcXHdlYnBhY2stc3RhdHMuanNvbid9fQpXU0dJX0FQUExJQ0FUSU9OID0gJ2thcGUud3NnaS5hcHBsaWNhdGlvbicKWF9GUkFNRV9PUFRJT05TID0gJ1NBTUVPUklHSU4nCllFQVJfTU9OVEhfRk9STUFUID0gJ0YgWScKCgpZb3UncmUgc2VlaW5nIHRoaXMgZXJyb3IgYmVjYXVzZSB5b3UgaGF2ZSBERUJVRyA9IFRydWUgaW4geW91cgpEamFuZ28gc2V0dGluZ3MgZmlsZS4gQ2hhbmdlIHRoYXQgdG8gRmFsc2UsIGFuZCBEamFuZ28gd2lsbApkaXNwbGF5IGEgc3RhbmRhcmQgcGFnZSBnZW5lcmF0ZWQgYnkgdGhlIGhhbmRsZXIgZm9yIHRoaXMgc3RhdHVzIGNvZGUuCgo=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/plain\"}" - } -}, -{ - "model": "silk.response", - "pk": "6b98ea9b-a6f5-4639-92b2-f5cfd52dfcc8", - "fields": { - "request": "52795346-f5d0-4cf5-a883-b377a260b95d", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPlNlbGVjdCB1c2VyIHRvIGNoYW5nZSB8IERqYW5nbyBzaXRlIGFkbWluPC90aXRsZT4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvYmFzZS5jc3MiIC8+CgogIAogIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvYWRtaW4vY3NzL2NoYW5nZWxpc3RzLmNzcyIgLz4KICAKICAKICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KICAKICAKICAKCgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvY29yZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL2pxdWVyeS9qcXVlcnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2pxdWVyeS5pbml0LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hZG1pbi9SZWxhdGVkT2JqZWN0TG9va3Vwcy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvYWN0aW9ucy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdXJsaWZ5LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9wcmVwb3B1bGF0ZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL3hyZWdleHAveHJlZ2V4cC5qcyI+PC9zY3JpcHQ+Cgo8bWV0YSBuYW1lPSJyb2JvdHMiIGNvbnRlbnQ9Ik5PTkUsTk9BUkNISVZFIiAvPgo8L2hlYWQ+CgoKPGJvZHkgY2xhc3M9IiBhcHAtYXV0aCBtb2RlbC11c2VyIGNoYW5nZS1saXN0IgogIGRhdGEtYWRtaW4tdXRjLW9mZnNldD0iMCI+Cgo8IS0tIENvbnRhaW5lciAtLT4KPGRpdiBpZD0iY29udGFpbmVyIj4KCiAgICAKICAgIDwhLS0gSGVhZGVyIC0tPgogICAgPGRpdiBpZD0iaGVhZGVyIj4KICAgICAgICA8ZGl2IGlkPSJicmFuZGluZyI+CiAgICAgICAgCjxoMSBpZD0ic2l0ZS1uYW1lIj48YSBocmVmPSIvYWRtaW4vIj5EamFuZ28gYWRtaW5pc3RyYXRpb248L2E+PC9oMT4KCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgPGRpdiBpZD0idXNlci10b29scyI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgV2VsY29tZSwKICAgICAgICAgICAgICAgIDxzdHJvbmc+a2FwZTwvc3Ryb25nPi4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iLyI+VmlldyBzaXRlPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9wYXNzd29yZF9jaGFuZ2UvIj5DaGFuZ2UgcGFzc3dvcmQ8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2xvZ291dC8iPkxvZyBvdXQ8L2E+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIAogICAgPC9kaXY+CiAgICA8IS0tIEVORCBIZWFkZXIgLS0+CiAgICAKPGRpdiBjbGFzcz0iYnJlYWRjcnVtYnMiPgo8YSBocmVmPSIvYWRtaW4vIj5Ib21lPC9hPgomcnNhcXVvOyA8YSBocmVmPSIvYWRtaW4vYXV0aC8iPkF1dGhlbnRpY2F0aW9uIGFuZCBBdXRob3JpemF0aW9uPC9hPgomcnNhcXVvOyBVc2Vycwo8L2Rpdj4KCiAgICAKCiAgICAKICAgICAgICAKICAgIAoKICAgIDwhLS0gQ29udGVudCAtLT4KICAgIDxkaXYgaWQ9ImNvbnRlbnQiIGNsYXNzPSJmbGV4Ij4KICAgICAgICAKICAgICAgICA8aDE+U2VsZWN0IHVzZXIgdG8gY2hhbmdlPC9oMT4KICAgICAgICAKICA8ZGl2IGlkPSJjb250ZW50LW1haW4iPgogICAgCiAgICAgICAgPHVsIGNsYXNzPSJvYmplY3QtdG9vbHMiPgogICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICA8bGk+CiAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci9hZGQvIiBjbGFzcz0iYWRkbGluayI+CiAgICAgICAgICAgICAgICBBZGQgdXNlcgogICAgICAgICAgICAgIDwvYT4KICAgICAgICAgICAgPC9saT4KICAgICAgICAgICAgCiAgICAgICAgICAKICAgICAgICA8L3VsPgogICAgCiAgICAKICAgIDxkaXYgY2xhc3M9Im1vZHVsZSBmaWx0ZXJlZCIgaWQ9ImNoYW5nZWxpc3QiPgogICAgICAKCjxkaXYgaWQ9InRvb2xiYXIiPjxmb3JtIGlkPSJjaGFuZ2VsaXN0LXNlYXJjaCIgbWV0aG9kPSJnZXQiPgo8ZGl2PjwhLS0gRElWIG5lZWRlZCBmb3IgdmFsaWQgSFRNTCAtLT4KPGxhYmVsIGZvcj0ic2VhcmNoYmFyIj48aW1nIHNyYz0iL2Fzc2V0cy9hZG1pbi9pbWcvc2VhcmNoLnN2ZyIgYWx0PSJTZWFyY2giIC8+PC9sYWJlbD4KPGlucHV0IHR5cGU9InRleHQiIHNpemU9IjQwIiBuYW1lPSJxIiB2YWx1ZT0iIiBpZD0ic2VhcmNoYmFyIiBhdXRvZm9jdXMgLz4KPGlucHV0IHR5cGU9InN1Ym1pdCIgdmFsdWU9IlNlYXJjaCIgLz4KCgo8L2Rpdj4KPC9mb3JtPjwvZGl2PgoKCiAgICAgIAoKCiAgICAgIAogICAgICAgIAogICAgICAgICAgPGRpdiBpZD0iY2hhbmdlbGlzdC1maWx0ZXIiPgogICAgICAgICAgICA8aDI+RmlsdGVyPC9oMj4KICAgICAgICAgICAgCjxoMz4gQnkgc3RhZmYgc3RhdHVzIDwvaDM+Cjx1bD4KCiAgICA8bGkgY2xhc3M9InNlbGVjdGVkIj4KICAgIDxhIGhyZWY9Ij8iPkFsbDwvYT48L2xpPgoKICAgIDxsaT4KICAgIDxhIGhyZWY9Ij9pc19zdGFmZl9fZXhhY3Q9MSI+WWVzPC9hPjwvbGk+CgogICAgPGxpPgogICAgPGEgaHJlZj0iP2lzX3N0YWZmX19leGFjdD0wIj5ObzwvYT48L2xpPgoKPC91bD4KCjxoMz4gQnkgc3VwZXJ1c2VyIHN0YXR1cyA8L2gzPgo8dWw+CgogICAgPGxpIGNsYXNzPSJzZWxlY3RlZCI+CiAgICA8YSBocmVmPSI/Ij5BbGw8L2E+PC9saT4KCiAgICA8bGk+CiAgICA8YSBocmVmPSI/aXNfc3VwZXJ1c2VyX19leGFjdD0xIj5ZZXM8L2E+PC9saT4KCiAgICA8bGk+CiAgICA8YSBocmVmPSI/aXNfc3VwZXJ1c2VyX19leGFjdD0wIj5ObzwvYT48L2xpPgoKPC91bD4KCjxoMz4gQnkgYWN0aXZlIDwvaDM+Cjx1bD4KCiAgICA8bGkgY2xhc3M9InNlbGVjdGVkIj4KICAgIDxhIGhyZWY9Ij8iPkFsbDwvYT48L2xpPgoKICAgIDxsaT4KICAgIDxhIGhyZWY9Ij9pc19hY3RpdmVfX2V4YWN0PTEiPlllczwvYT48L2xpPgoKICAgIDxsaT4KICAgIDxhIGhyZWY9Ij9pc19hY3RpdmVfX2V4YWN0PTAiPk5vPC9hPjwvbGk+Cgo8L3VsPgoKICAgICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAKCiAgICAgIDxmb3JtIGlkPSJjaGFuZ2VsaXN0LWZvcm0iIG1ldGhvZD0icG9zdCIgbm92YWxpZGF0ZT48aW5wdXQgdHlwZT0naGlkZGVuJyBuYW1lPSdjc3JmbWlkZGxld2FyZXRva2VuJyB2YWx1ZT0na3FYZXkydmljSmg3Z2NwYmdiWG44NlhtcXF1OTRIUTJKdzQzS3luZFpHc3dEa3JEWkNzUDBORTZvbEFZb0hNUicgLz4KICAgICAgCgogICAgICAKICAgICAgICAgIAo8ZGl2IGNsYXNzPSJhY3Rpb25zIj4KICAgIDxsYWJlbD5BY3Rpb246IDxzZWxlY3QgbmFtZT0iYWN0aW9uIiByZXF1aXJlZD4KPG9wdGlvbiB2YWx1ZT0iIiBzZWxlY3RlZD0ic2VsZWN0ZWQiPi0tLS0tLS0tLTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSJkZWxldGVfc2VsZWN0ZWQiPkRlbGV0ZSBzZWxlY3RlZCB1c2Vyczwvb3B0aW9uPgo8L3NlbGVjdD48L2xhYmVsPjxpbnB1dCBjbGFzcz0ic2VsZWN0LWFjcm9zcyIgbmFtZT0ic2VsZWN0X2Fjcm9zcyIgdHlwZT0iaGlkZGVuIiB2YWx1ZT0iMCIgLz4KICAgIDxidXR0b24gdHlwZT0ic3VibWl0IiBjbGFzcz0iYnV0dG9uIiB0aXRsZT0iUnVuIHRoZSBzZWxlY3RlZCBhY3Rpb24iIG5hbWU9ImluZGV4IiB2YWx1ZT0iMCI+R288L2J1dHRvbj4KICAgIAogICAgICAgIDxzcGFuIGNsYXNzPSJhY3Rpb24tY291bnRlciIgZGF0YS1hY3Rpb25zLWljbnQ9IjIiPjAgb2YgMiBzZWxlY3RlZDwvc3Bhbj4KICAgICAgICAKICAgIAo8L2Rpdj4KCiAgICAgICAgICAKCgo8ZGl2IGNsYXNzPSJyZXN1bHRzIj4KPHRhYmxlIGlkPSJyZXN1bHRfbGlzdCI+Cjx0aGVhZD4KPHRyPgoKPHRoIHNjb3BlPSJjb2wiICBjbGFzcz0iYWN0aW9uLWNoZWNrYm94LWNvbHVtbiI+CiAgIAogICA8ZGl2IGNsYXNzPSJ0ZXh0Ij48c3Bhbj48aW5wdXQgdHlwZT0iY2hlY2tib3giIGlkPSJhY3Rpb24tdG9nZ2xlIiAvPjwvc3Bhbj48L2Rpdj4KICAgPGRpdiBjbGFzcz0iY2xlYXIiPjwvZGl2Pgo8L3RoPgo8dGggc2NvcGU9ImNvbCIgIGNsYXNzPSJzb3J0YWJsZSBjb2x1bW4tdXNlcm5hbWUgc29ydGVkIGFzY2VuZGluZyI+CiAgIAogICAgIAogICAgICAgPGRpdiBjbGFzcz0ic29ydG9wdGlvbnMiPgogICAgICAgICA8YSBjbGFzcz0ic29ydHJlbW92ZSIgaHJlZj0iP289IiB0aXRsZT0iUmVtb3ZlIGZyb20gc29ydGluZyI+PC9hPgogICAgICAgICAKICAgICAgICAgPGEgaHJlZj0iP289LTEiIGNsYXNzPSJ0b2dnbGUgYXNjZW5kaW5nIiB0aXRsZT0iVG9nZ2xlIHNvcnRpbmciPjwvYT4KICAgICAgIDwvZGl2PgogICAgIAogICAKICAgPGRpdiBjbGFzcz0idGV4dCI+PGEgaHJlZj0iP289LTEiPlVzZXJuYW1lPC9hPjwvZGl2PgogICA8ZGl2IGNsYXNzPSJjbGVhciI+PC9kaXY+CjwvdGg+Cjx0aCBzY29wZT0iY29sIiAgY2xhc3M9InNvcnRhYmxlIGNvbHVtbi1lbWFpbCI+CiAgIAogICAgIAogICAKICAgPGRpdiBjbGFzcz0idGV4dCI+PGEgaHJlZj0iP289Mi4xIj5FbWFpbCBhZGRyZXNzPC9hPjwvZGl2PgogICA8ZGl2IGNsYXNzPSJjbGVhciI+PC9kaXY+CjwvdGg+Cjx0aCBzY29wZT0iY29sIiAgY2xhc3M9InNvcnRhYmxlIGNvbHVtbi1maXJzdF9uYW1lIj4KICAgCiAgICAgCiAgIAogICA8ZGl2IGNsYXNzPSJ0ZXh0Ij48YSBocmVmPSI/bz0zLjEiPkZpcnN0IG5hbWU8L2E+PC9kaXY+CiAgIDxkaXYgY2xhc3M9ImNsZWFyIj48L2Rpdj4KPC90aD4KPHRoIHNjb3BlPSJjb2wiICBjbGFzcz0ic29ydGFibGUgY29sdW1uLWxhc3RfbmFtZSI+CiAgIAogICAgIAogICAKICAgPGRpdiBjbGFzcz0idGV4dCI+PGEgaHJlZj0iP289NC4xIj5MYXN0IG5hbWU8L2E+PC9kaXY+CiAgIDxkaXYgY2xhc3M9ImNsZWFyIj48L2Rpdj4KPC90aD4KPHRoIHNjb3BlPSJjb2wiICBjbGFzcz0ic29ydGFibGUgY29sdW1uLWlzX3N0YWZmIj4KICAgCiAgICAgCiAgIAogICA8ZGl2IGNsYXNzPSJ0ZXh0Ij48YSBocmVmPSI/bz01LjEiPlN0YWZmIHN0YXR1czwvYT48L2Rpdj4KICAgPGRpdiBjbGFzcz0iY2xlYXIiPjwvZGl2Pgo8L3RoPgo8L3RyPgo8L3RoZWFkPgo8dGJvZHk+CgoKPHRyIGNsYXNzPSJyb3cxIj48dGQgY2xhc3M9ImFjdGlvbi1jaGVja2JveCI+PGlucHV0IGNsYXNzPSJhY3Rpb24tc2VsZWN0IiBuYW1lPSJfc2VsZWN0ZWRfYWN0aW9uIiB0eXBlPSJjaGVja2JveCIgdmFsdWU9IjIiIC8+PC90ZD48dGggY2xhc3M9ImZpZWxkLXVzZXJuYW1lIj48YSBocmVmPSIvYWRtaW4vYXV0aC91c2VyLzIvY2hhbmdlLyI+ZmFyaGFuPC9hPjwvdGg+PHRkIGNsYXNzPSJmaWVsZC1lbWFpbCI+Jm5ic3A7PC90ZD48dGQgY2xhc3M9ImZpZWxkLWZpcnN0X25hbWUiPiZuYnNwOzwvdGQ+PHRkIGNsYXNzPSJmaWVsZC1sYXN0X25hbWUiPiZuYnNwOzwvdGQ+PHRkIGNsYXNzPSJmaWVsZC1pc19zdGFmZiI+PGltZyBzcmM9Ii9hc3NldHMvYWRtaW4vaW1nL2ljb24tbm8uc3ZnIiBhbHQ9IkZhbHNlIiAvPjwvdGQ+PC90cj4KCgo8dHIgY2xhc3M9InJvdzIiPjx0ZCBjbGFzcz0iYWN0aW9uLWNoZWNrYm94Ij48aW5wdXQgY2xhc3M9ImFjdGlvbi1zZWxlY3QiIG5hbWU9Il9zZWxlY3RlZF9hY3Rpb24iIHR5cGU9ImNoZWNrYm94IiB2YWx1ZT0iMSIgLz48L3RkPjx0aCBjbGFzcz0iZmllbGQtdXNlcm5hbWUiPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL3VzZXIvMS9jaGFuZ2UvIj5rYXBlPC9hPjwvdGg+PHRkIGNsYXNzPSJmaWVsZC1lbWFpbCI+a2FwZUBrYXBlLmNvbTwvdGQ+PHRkIGNsYXNzPSJmaWVsZC1maXJzdF9uYW1lIj4mbmJzcDs8L3RkPjx0ZCBjbGFzcz0iZmllbGQtbGFzdF9uYW1lIj4mbmJzcDs8L3RkPjx0ZCBjbGFzcz0iZmllbGQtaXNfc3RhZmYiPjxpbWcgc3JjPSIvYXNzZXRzL2FkbWluL2ltZy9pY29uLXllcy5zdmciIGFsdD0iVHJ1ZSIgLz48L3RkPjwvdHI+Cgo8L3Rib2R5Pgo8L3RhYmxlPgo8L2Rpdj4KCgogICAgICAgICAgCiAgICAgIAogICAgICAKCjxwIGNsYXNzPSJwYWdpbmF0b3IiPgoKMiB1c2VycwoKCjwvcD4KCiAgICAgIDwvZm9ybT4KICAgIDwvZGl2PgogIDwvZGl2PgoKICAgICAgICAKICAgICAgICA8YnIgY2xhc3M9ImNsZWFyIiAvPgogICAgPC9kaXY+CiAgICA8IS0tIEVORCBDb250ZW50IC0tPgoKICAgIDxkaXYgaWQ9ImZvb3RlciI+PC9kaXY+CjwvZGl2Pgo8IS0tIEVORCBDb250YWluZXIgLS0+Cgo8L2JvZHk+CjwvaHRtbD4K", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 14:52:55 GMT\", \"Expires\": \"Mon, 27 Mar 2017 14:52:55 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "6bc73c2b-c00c-40ff-9389-8792db10cbd8", - "fields": { - "request": "0fe3e8da-1ff4-48d0-9ff4-3b9ee5029f8f", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPlNlbGVjdCBhcHBsaWNhdGlvbiB0byBjaGFuZ2UgfCBEamFuZ28gc2l0ZSBhZG1pbjwvdGl0bGU+CjxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvYWRtaW4vY3NzL2Jhc2UuY3NzIiAvPgoKICAKICA8bGluayByZWw9InN0eWxlc2hlZXQiIHR5cGU9InRleHQvY3NzIiBocmVmPSIvYXNzZXRzL2FkbWluL2Nzcy9jaGFuZ2VsaXN0cy5jc3MiIC8+CiAgCiAgCiAgICA8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYWRtaW4vanNpMThuLyI+PC9zY3JpcHQ+CiAgCiAgCiAgCgoKCgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2NvcmUuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL3ZlbmRvci9qcXVlcnkvanF1ZXJ5LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9qcXVlcnkuaW5pdC5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvYWRtaW4vUmVsYXRlZE9iamVjdExvb2t1cHMuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2FjdGlvbnMuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL3VybGlmeS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvcHJlcG9wdWxhdGUuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL3ZlbmRvci94cmVnZXhwL3hyZWdleHAuanMiPjwvc2NyaXB0PgoKPG1ldGEgbmFtZT0icm9ib3RzIiBjb250ZW50PSJOT05FLE5PQVJDSElWRSIgLz4KPC9oZWFkPgoKCjxib2R5IGNsYXNzPSIgYXBwLWNvcmUgbW9kZWwtYXBwbGljYXRpb24gY2hhbmdlLWxpc3QiCiAgZGF0YS1hZG1pbi11dGMtb2Zmc2V0PSIwIj4KCjwhLS0gQ29udGFpbmVyIC0tPgo8ZGl2IGlkPSJjb250YWluZXIiPgoKICAgIAogICAgPCEtLSBIZWFkZXIgLS0+CiAgICA8ZGl2IGlkPSJoZWFkZXIiPgogICAgICAgIDxkaXYgaWQ9ImJyYW5kaW5nIj4KICAgICAgICAKPGgxIGlkPSJzaXRlLW5hbWUiPjxhIGhyZWY9Ii9hZG1pbi8iPkRqYW5nbyBhZG1pbmlzdHJhdGlvbjwvYT48L2gxPgoKICAgICAgICA8L2Rpdj4KICAgICAgICAKICAgICAgICAKICAgICAgICA8ZGl2IGlkPSJ1c2VyLXRvb2xzIj4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICBXZWxjb21lLAogICAgICAgICAgICAgICAgPHN0cm9uZz5rYXBlPC9zdHJvbmc+LgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvIj5WaWV3IHNpdGU8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL3Bhc3N3b3JkX2NoYW5nZS8iPkNoYW5nZSBwYXNzd29yZDwvYT4gLwogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vbG9nb3V0LyI+TG9nIG91dDwvYT4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgCiAgICA8L2Rpdj4KICAgIDwhLS0gRU5EIEhlYWRlciAtLT4KICAgIAo8ZGl2IGNsYXNzPSJicmVhZGNydW1icyI+CjxhIGhyZWY9Ii9hZG1pbi8iPkhvbWU8L2E+CiZyc2FxdW87IDxhIGhyZWY9Ii9hZG1pbi9jb3JlLyI+Q29yZTwvYT4KJnJzYXF1bzsgQXBwbGljYXRpb25zCjwvZGl2PgoKICAgIAoKICAgIAogICAgICAgIAogICAgCgogICAgPCEtLSBDb250ZW50IC0tPgogICAgPGRpdiBpZD0iY29udGVudCIgY2xhc3M9ImZsZXgiPgogICAgICAgIAogICAgICAgIDxoMT5TZWxlY3QgYXBwbGljYXRpb24gdG8gY2hhbmdlPC9oMT4KICAgICAgICAKICA8ZGl2IGlkPSJjb250ZW50LW1haW4iPgogICAgCiAgICAgICAgPHVsIGNsYXNzPSJvYmplY3QtdG9vbHMiPgogICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICA8bGk+CiAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2NvcmUvYXBwbGljYXRpb24vYWRkLyIgY2xhc3M9ImFkZGxpbmsiPgogICAgICAgICAgICAgICAgQWRkIGFwcGxpY2F0aW9uCiAgICAgICAgICAgICAgPC9hPgogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgIAogICAgICAgIDwvdWw+CiAgICAKICAgIAogICAgPGRpdiBjbGFzcz0ibW9kdWxlIiBpZD0iY2hhbmdlbGlzdCI+CiAgICAgIAoKCiAgICAgIAoKCiAgICAgIAogICAgICAgIAogICAgICAKCiAgICAgIDxmb3JtIGlkPSJjaGFuZ2VsaXN0LWZvcm0iIG1ldGhvZD0icG9zdCIgbm92YWxpZGF0ZT48aW5wdXQgdHlwZT0naGlkZGVuJyBuYW1lPSdjc3JmbWlkZGxld2FyZXRva2VuJyB2YWx1ZT0nTnlDUkxpQkpRQUlFMnI2bm4yaDZNbmRzTHdzajdqdEVjRUpHWE90RUR4VDNwejhQNnRNeUU0VWNKcnk4cmpwdCcgLz4KICAgICAgCgogICAgICAKICAgICAgICAgIAogICAgICAgICAgCgoKCiAgICAgICAgICAKICAgICAgCiAgICAgIAoKPHAgY2xhc3M9InBhZ2luYXRvciI+CgowIGFwcGxpY2F0aW9ucwoKCjwvcD4KCiAgICAgIDwvZm9ybT4KICAgIDwvZGl2PgogIDwvZGl2PgoKICAgICAgICAKICAgICAgICA8YnIgY2xhc3M9ImNsZWFyIiAvPgogICAgPC9kaXY+CiAgICA8IS0tIEVORCBDb250ZW50IC0tPgoKICAgIDxkaXYgaWQ9ImZvb3RlciI+PC9kaXY+CjwvZGl2Pgo8IS0tIEVORCBDb250YWluZXIgLS0+Cgo8L2JvZHk+CjwvaHRtbD4K", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 15:23:41 GMT\", \"Expires\": \"Mon, 27 Mar 2017 15:23:41 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "6c5ce921-b623-473b-9bd2-9923de978ab8", - "fields": { - "request": "da06b818-0ead-4cb1-a259-6d8699f8e6d3", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "6c823aa2-758b-4f5a-9d55-4826382c8259", - "fields": { - "request": "1d261d75-a829-40c8-8efb-77bb74497a8d", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "6cab711d-995d-488c-93c1-95248562a6d2", - "fields": { - "request": "30c60569-c182-44fa-bf5f-de1a6c56f4a1", - "status_code": 200, - "raw_body": "W3siaWQiOjEsInZlcmlmaWVkIjpmYWxzZSwib3Blbl90aW1lIjoiMjAxNy0wMy0yN1QxNToyMzoyMFoiLCJjbG9zZV90aW1lIjoiMjAxNy0wMy0yN1QxNToyMzoyMloiLCJjb21wYW55IjoyfV0=", - "body": "[\n {\n \"close_time\": \"2017-03-27T15:23:22Z\",\n \"company\": 2,\n \"id\": 1,\n \"open_time\": \"2017-03-27T15:23:20Z\",\n \"verified\": false\n }\n]", - "encoded_headers": "{\"Content-Type\": \"application/json\", \"Allow\": \"GET, POST, OPTIONS\", \"Vary\": \"Accept\"}" - } -}, -{ - "model": "silk.response", - "pk": "6cbe743b-15cf-4f47-bc27-ebc0bfab115e", - "fields": { - "request": "87e059e0-383a-4ce3-9eb0-6f73ac71bad2", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPlNlbGVjdCBzdHVkZW50IHRvIGNoYW5nZSB8IERqYW5nbyBzaXRlIGFkbWluPC90aXRsZT4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvYmFzZS5jc3MiIC8+CgogIAogIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvYWRtaW4vY3NzL2NoYW5nZWxpc3RzLmNzcyIgLz4KICAKICAKICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KICAKICAKICAKCgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvY29yZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL2pxdWVyeS9qcXVlcnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2pxdWVyeS5pbml0LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hZG1pbi9SZWxhdGVkT2JqZWN0TG9va3Vwcy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvYWN0aW9ucy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdXJsaWZ5LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9wcmVwb3B1bGF0ZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL3hyZWdleHAveHJlZ2V4cC5qcyI+PC9zY3JpcHQ+Cgo8bWV0YSBuYW1lPSJyb2JvdHMiIGNvbnRlbnQ9Ik5PTkUsTk9BUkNISVZFIiAvPgo8L2hlYWQ+CgoKPGJvZHkgY2xhc3M9IiBhcHAtY29yZSBtb2RlbC1zdHVkZW50IGNoYW5nZS1saXN0IgogIGRhdGEtYWRtaW4tdXRjLW9mZnNldD0iMCI+Cgo8IS0tIENvbnRhaW5lciAtLT4KPGRpdiBpZD0iY29udGFpbmVyIj4KCiAgICAKICAgIDwhLS0gSGVhZGVyIC0tPgogICAgPGRpdiBpZD0iaGVhZGVyIj4KICAgICAgICA8ZGl2IGlkPSJicmFuZGluZyI+CiAgICAgICAgCjxoMSBpZD0ic2l0ZS1uYW1lIj48YSBocmVmPSIvYWRtaW4vIj5EamFuZ28gYWRtaW5pc3RyYXRpb248L2E+PC9oMT4KCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgPGRpdiBpZD0idXNlci10b29scyI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgV2VsY29tZSwKICAgICAgICAgICAgICAgIDxzdHJvbmc+a2FwZTwvc3Ryb25nPi4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iLyI+VmlldyBzaXRlPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9wYXNzd29yZF9jaGFuZ2UvIj5DaGFuZ2UgcGFzc3dvcmQ8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2xvZ291dC8iPkxvZyBvdXQ8L2E+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIAogICAgPC9kaXY+CiAgICA8IS0tIEVORCBIZWFkZXIgLS0+CiAgICAKPGRpdiBjbGFzcz0iYnJlYWRjcnVtYnMiPgo8YSBocmVmPSIvYWRtaW4vIj5Ib21lPC9hPgomcnNhcXVvOyA8YSBocmVmPSIvYWRtaW4vY29yZS8iPkNvcmU8L2E+CiZyc2FxdW87IFN0dWRlbnRzCjwvZGl2PgoKICAgIAoKICAgIAogICAgICAgIAogICAgCgogICAgPCEtLSBDb250ZW50IC0tPgogICAgPGRpdiBpZD0iY29udGVudCIgY2xhc3M9ImZsZXgiPgogICAgICAgIAogICAgICAgIDxoMT5TZWxlY3Qgc3R1ZGVudCB0byBjaGFuZ2U8L2gxPgogICAgICAgIAogIDxkaXYgaWQ9ImNvbnRlbnQtbWFpbiI+CiAgICAKICAgICAgICA8dWwgY2xhc3M9Im9iamVjdC10b29scyI+CiAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaT4KICAgICAgICAgICAgICAKICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS9zdHVkZW50L2FkZC8iIGNsYXNzPSJhZGRsaW5rIj4KICAgICAgICAgICAgICAgIEFkZCBzdHVkZW50CiAgICAgICAgICAgICAgPC9hPgogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgIAogICAgICAgIDwvdWw+CiAgICAKICAgIAogICAgPGRpdiBjbGFzcz0ibW9kdWxlIiBpZD0iY2hhbmdlbGlzdCI+CiAgICAgIAoKCiAgICAgIAoKCiAgICAgIAogICAgICAgIAogICAgICAKCiAgICAgIDxmb3JtIGlkPSJjaGFuZ2VsaXN0LWZvcm0iIG1ldGhvZD0icG9zdCIgbm92YWxpZGF0ZT48aW5wdXQgdHlwZT0naGlkZGVuJyBuYW1lPSdjc3JmbWlkZGxld2FyZXRva2VuJyB2YWx1ZT0nQ2dVZGxKekkyT2ozWkhEU3czQ2ljenBMb0l3bUlHU2IxbTEyeGZyRFBMdXNtUEZrZnU3SzRnNnZtRENiMkdPMCcgLz4KICAgICAgCgogICAgICAKICAgICAgICAgIAo8ZGl2IGNsYXNzPSJhY3Rpb25zIj4KICAgIDxsYWJlbD5BY3Rpb246IDxzZWxlY3QgbmFtZT0iYWN0aW9uIiByZXF1aXJlZD4KPG9wdGlvbiB2YWx1ZT0iIiBzZWxlY3RlZD0ic2VsZWN0ZWQiPi0tLS0tLS0tLTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSJkZWxldGVfc2VsZWN0ZWQiPkRlbGV0ZSBzZWxlY3RlZCBzdHVkZW50czwvb3B0aW9uPgo8L3NlbGVjdD48L2xhYmVsPjxpbnB1dCBjbGFzcz0ic2VsZWN0LWFjcm9zcyIgbmFtZT0ic2VsZWN0X2Fjcm9zcyIgdHlwZT0iaGlkZGVuIiB2YWx1ZT0iMCIgLz4KICAgIDxidXR0b24gdHlwZT0ic3VibWl0IiBjbGFzcz0iYnV0dG9uIiB0aXRsZT0iUnVuIHRoZSBzZWxlY3RlZCBhY3Rpb24iIG5hbWU9ImluZGV4IiB2YWx1ZT0iMCI+R288L2J1dHRvbj4KICAgIAogICAgICAgIDxzcGFuIGNsYXNzPSJhY3Rpb24tY291bnRlciIgZGF0YS1hY3Rpb25zLWljbnQ9IjEiPjAgb2YgMSBzZWxlY3RlZDwvc3Bhbj4KICAgICAgICAKICAgIAo8L2Rpdj4KCiAgICAgICAgICAKCgo8ZGl2IGNsYXNzPSJyZXN1bHRzIj4KPHRhYmxlIGlkPSJyZXN1bHRfbGlzdCI+Cjx0aGVhZD4KPHRyPgoKPHRoIHNjb3BlPSJjb2wiICBjbGFzcz0iYWN0aW9uLWNoZWNrYm94LWNvbHVtbiI+CiAgIAogICA8ZGl2IGNsYXNzPSJ0ZXh0Ij48c3Bhbj48aW5wdXQgdHlwZT0iY2hlY2tib3giIGlkPSJhY3Rpb24tdG9nZ2xlIiAvPjwvc3Bhbj48L2Rpdj4KICAgPGRpdiBjbGFzcz0iY2xlYXIiPjwvZGl2Pgo8L3RoPgo8dGggc2NvcGU9ImNvbCIgIGNsYXNzPSJjb2x1bW4tX19zdHJfXyI+CiAgIAogICA8ZGl2IGNsYXNzPSJ0ZXh0Ij48c3Bhbj5TdHVkZW50PC9zcGFuPjwvZGl2PgogICA8ZGl2IGNsYXNzPSJjbGVhciI+PC9kaXY+CjwvdGg+CjwvdHI+CjwvdGhlYWQ+Cjx0Ym9keT4KCgo8dHIgY2xhc3M9InJvdzEiPjx0ZCBjbGFzcz0iYWN0aW9uLWNoZWNrYm94Ij48aW5wdXQgY2xhc3M9ImFjdGlvbi1zZWxlY3QiIG5hbWU9Il9zZWxlY3RlZF9hY3Rpb24iIHR5cGU9ImNoZWNrYm94IiB2YWx1ZT0iMSIgLz48L3RkPjx0aCBjbGFzcz0iZmllbGQtX19zdHJfXyI+PGEgaHJlZj0iL2FkbWluL2NvcmUvc3R1ZGVudC8xL2NoYW5nZS8iPlN0dWRlbnQgb2JqZWN0PC9hPjwvdGg+PC90cj4KCjwvdGJvZHk+CjwvdGFibGU+CjwvZGl2PgoKCiAgICAgICAgICAKICAgICAgCiAgICAgIAoKPHAgY2xhc3M9InBhZ2luYXRvciI+CgoxIHN0dWRlbnQKCgo8L3A+CgogICAgICA8L2Zvcm0+CiAgICA8L2Rpdj4KICA8L2Rpdj4KCiAgICAgICAgCiAgICAgICAgPGJyIGNsYXNzPSJjbGVhciIgLz4KICAgIDwvZGl2PgogICAgPCEtLSBFTkQgQ29udGVudCAtLT4KCiAgICA8ZGl2IGlkPSJmb290ZXIiPjwvZGl2Pgo8L2Rpdj4KPCEtLSBFTkQgQ29udGFpbmVyIC0tPgoKPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 17:15:39 GMT\", \"Expires\": \"Mon, 27 Mar 2017 17:15:39 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "6d76e575-5aba-404f-9c17-56ae0ad17a2b", - "fields": { - "request": "f0737783-5f9e-4467-bd62-ccffb74cd1e5", - "status_code": 302, - "raw_body": "", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Location\": \"/admin/core/application/\", \"Last-Modified\": \"Mon, 27 Mar 2017 15:23:52 GMT\", \"Expires\": \"Mon, 27 Mar 2017 15:23:52 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\"}" - } -}, -{ - "model": "silk.response", - "pk": "6dc41d6a-7ba5-48a6-85ea-49c837b7244e", - "fields": { - "request": "6fb98310-3148-4971-b04c-3e9c3905af39", - "status_code": 500, - "raw_body": "QXR0cmlidXRlRXJyb3IgYXQgL2FwaS9zdHVkZW50cy8xL2Jvb2ttYXJrZWQtdmFjYW5jaWVzLwonZGljdCcgb2JqZWN0IGhhcyBubyBhdHRyaWJ1dGUgJ2lkJwoKUmVxdWVzdCBNZXRob2Q6IFBPU1QKUmVxdWVzdCBVUkw6IGh0dHA6Ly8xMjcuMC4wLjE6ODAwMC9hcGkvc3R1ZGVudHMvMS9ib29rbWFya2VkLXZhY2FuY2llcy8KRGphbmdvIFZlcnNpb246IDEuMTAuNQpQeXRob24gRXhlY3V0YWJsZTogQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXHB5dGhvbi5leGUKUHl0aG9uIFZlcnNpb246IDMuNi4wClB5dGhvbiBQYXRoOiBbJ0Q6XFxQUExBJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXHB5dGhvbjM2LnppcCcsICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyXFxETExzJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXGxpYicsICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXGxpYlxcc2l0ZS1wYWNrYWdlcyddClNlcnZlciB0aW1lOiBNb24sIDI3IE1hciAyMDE3IDE1OjM3OjMzICswMDAwCkluc3RhbGxlZCBBcHBsaWNhdGlvbnM6ClsnZGphbmdvLmNvbnRyaWIuYWRtaW4nLAogJ2RqYW5nby5jb250cmliLmF1dGgnLAogJ2RqYW5nby5jb250cmliLmNvbnRlbnR0eXBlcycsCiAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMnLAogJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzJywKICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcycsCiAnd2VicGFja19sb2FkZXInLAogJ2NvcmUnLAogJ3Jlc3RfZnJhbWV3b3JrJywKICdkamFuZ29fbm9zZScsCiAncmVzdF9mcmFtZXdvcmtfc3dhZ2dlcicsCiAnc2lsayddCkluc3RhbGxlZCBNaWRkbGV3YXJlOgpbJ2RqYW5nby5taWRkbGV3YXJlLnNlY3VyaXR5LlNlY3VyaXR5TWlkZGxld2FyZScsCiAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMubWlkZGxld2FyZS5TZXNzaW9uTWlkZGxld2FyZScsCiAnZGphbmdvLm1pZGRsZXdhcmUuY29tbW9uLkNvbW1vbk1pZGRsZXdhcmUnLAogJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5hdXRoLm1pZGRsZXdhcmUuQXV0aGVudGljYXRpb25NaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5tZXNzYWdlcy5taWRkbGV3YXJlLk1lc3NhZ2VNaWRkbGV3YXJlJywKICdkamFuZ28ubWlkZGxld2FyZS5jbGlja2phY2tpbmcuWEZyYW1lT3B0aW9uc01pZGRsZXdhcmUnLAogJ3NpbGsubWlkZGxld2FyZS5TaWxreU1pZGRsZXdhcmUnXQoKClRyYWNlYmFjazogIAoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXGRqYW5nb1xjb3JlXGhhbmRsZXJzXGV4Y2VwdGlvbi5weSIgaW4gaW5uZXIKICAzOS4gICAgICAgICAgICAgcmVzcG9uc2UgPSBnZXRfcmVzcG9uc2UocmVxdWVzdCkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cY29yZVxoYW5kbGVyc1xiYXNlLnB5IiBpbiBfZ2V0X3Jlc3BvbnNlCiAgMTg3LiAgICAgICAgICAgICAgICAgcmVzcG9uc2UgPSBzZWxmLnByb2Nlc3NfZXhjZXB0aW9uX2J5X21pZGRsZXdhcmUoZSwgcmVxdWVzdCkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cY29yZVxoYW5kbGVyc1xiYXNlLnB5IiBpbiBfZ2V0X3Jlc3BvbnNlCiAgMTg1LiAgICAgICAgICAgICAgICAgcmVzcG9uc2UgPSB3cmFwcGVkX2NhbGxiYWNrKHJlcXVlc3QsICpjYWxsYmFja19hcmdzLCAqKmNhbGxiYWNrX2t3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cdmlld3NcZGVjb3JhdG9yc1xjc3JmLnB5IiBpbiB3cmFwcGVkX3ZpZXcKICA1OC4gICAgICAgICByZXR1cm4gdmlld19mdW5jKCphcmdzLCAqKmt3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3c2V0cy5weSIgaW4gdmlldwogIDgzLiAgICAgICAgICAgICByZXR1cm4gc2VsZi5kaXNwYXRjaChyZXF1ZXN0LCAqYXJncywgKiprd2FyZ3MpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNccmVzdF9mcmFtZXdvcmtcdmlld3MucHkiIGluIGRpc3BhdGNoCiAgNDgzLiAgICAgICAgICAgICByZXNwb25zZSA9IHNlbGYuaGFuZGxlX2V4Y2VwdGlvbihleGMpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNccmVzdF9mcmFtZXdvcmtcdmlld3MucHkiIGluIGhhbmRsZV9leGNlcHRpb24KICA0NDMuICAgICAgICAgICAgIHNlbGYucmFpc2VfdW5jYXVnaHRfZXhjZXB0aW9uKGV4YykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3cy5weSIgaW4gZGlzcGF0Y2gKICA0ODAuICAgICAgICAgICAgIHJlc3BvbnNlID0gaGFuZGxlcihyZXF1ZXN0LCAqYXJncywgKiprd2FyZ3MpCgpGaWxlICJEOlxQUExBXGNvcmVcdmlld3NcYWNjb3VudHMucHkiIGluIGJvb2ttYXJrX3ZhY2FuY2llcwogIDMwLiAgICAgICAgIHZhY2FuY3kgPSBnZXRfb2JqZWN0X29yXzQwNChWYWNhbmN5Lm9iamVjdHMuYWxsKCksIHBrPXJlcXVlc3QuZGF0YS5pZCkKCkV4Y2VwdGlvbiBUeXBlOiBBdHRyaWJ1dGVFcnJvciBhdCAvYXBpL3N0dWRlbnRzLzEvYm9va21hcmtlZC12YWNhbmNpZXMvCkV4Y2VwdGlvbiBWYWx1ZTogJ2RpY3QnIG9iamVjdCBoYXMgbm8gYXR0cmlidXRlICdpZCcKUmVxdWVzdCBpbmZvcm1hdGlvbjoKVVNFUjoga2FwZQoKR0VUOiBObyBHRVQgZGF0YQoKUE9TVDogTm8gUE9TVCBkYXRhCgpGSUxFUzogTm8gRklMRVMgZGF0YQoKQ09PS0lFUzoKc2Vzc2lvbmlkID0gJ2JsdDg3N2c1ZmptdWN4eTNkZDV1eGNpemF2YjlvcG92Jwpjc3JmdG9rZW4gPSAnMUVFUDJTd0t0MUs5UWJXbkZQU3lXUElpYnRPN01BYVZxS0xFZW9vRmdZVnlkallQb2duME93cDI5b1VXNkE2SycKCk1FVEE6CkFMTFVTRVJTUFJPRklMRSA9ICdDOlxcUHJvZ3JhbURhdGEnCkFQUERBVEEgPSAnQzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmcnCkNPTU1PTlBST0dSQU1GSUxFUyA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcQ29tbW9uIEZpbGVzJwpDT01NT05QUk9HUkFNRklMRVMoWDg2KSA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcQ29tbW9uIEZpbGVzJwpDT01NT05QUk9HUkFNVzY0MzIgPSAnQzpcXFByb2dyYW0gRmlsZXNcXENvbW1vbiBGaWxlcycKQ09NUFVURVJOQU1FID0gJ0ZBUkhBTicKQ09NU1BFQyA9ICdDOlxcV0lORE9XU1xcc3lzdGVtMzJcXGNtZC5leGUnCkNPTlRFTlRfTEVOR1RIID0gJzg4JwpDT05URU5UX1RZUEUgPSAnYXBwbGljYXRpb24vanNvbicKQ1NSRl9DT09LSUUgPSAnMUVFUDJTd0t0MUs5UWJXbkZQU3lXUElpYnRPN01BYVZxS0xFZW9vRmdZVnlkallQb2duME93cDI5b1VXNkE2SycKREpBTkdPX1NFVFRJTkdTX01PRFVMRSA9ICdrYXBlLnNldHRpbmdzJwpGUFNfQlJPV1NFUl9BUFBfUFJPRklMRV9TVFJJTkcgPSAnSW50ZXJuZXQgRXhwbG9yZXInCkZQU19CUk9XU0VSX1VTRVJfUFJPRklMRV9TVFJJTkcgPSAnRGVmYXVsdCcKRlBfTk9fSE9TVF9DSEVDSyA9ICdOTycKR0FURVdBWV9JTlRFUkZBQ0UgPSAnQ0dJLzEuMScKSE9NRURSSVZFID0gJ0M6JwpIT01FUEFUSCA9ICdcXFVzZXJzXFxmYXJoYV8wMDAnCkhUVFBfQUNDRVBUID0gJ2FwcGxpY2F0aW9uL2pzb24nCkhUVFBfQUNDRVBUX0VOQ09ESU5HID0gJ2d6aXAsIGRlZmxhdGUsIGJyJwpIVFRQX0FDQ0VQVF9MQU5HVUFHRSA9ICdpZC1JRCxpZDtxPTAuOCxlbi1VUztxPTAuNixlbjtxPTAuNCcKSFRUUF9DT05ORUNUSU9OID0gJ2tlZXAtYWxpdmUnCkhUVFBfQ09PS0lFID0gJ3Nlc3Npb25pZD1ibHQ4NzdnNWZqbXVjeHkzZGQ1dXhjaXphdmI5b3BvdjsgY3NyZnRva2VuPTFFRVAyU3dLdDFLOVFiV25GUFN5V1BJaWJ0TzdNQWFWcUtMRWVvb0ZnWVZ5ZGpZUG9nbjBPd3AyOW9VVzZBNksnCkhUVFBfSE9TVCA9ICcxMjcuMC4wLjE6ODAwMCcKSFRUUF9PUklHSU4gPSAnaHR0cDovLzEyNy4wLjAuMTo4MDAwJwpIVFRQX1JFRkVSRVIgPSAnaHR0cDovLzEyNy4wLjAuMTo4MDAwL2FwaScKSFRUUF9VU0VSX0FHRU5UID0gJ01vemlsbGEvNS4wIChXaW5kb3dzIE5UIDEwLjA7IFdPVzY0KSBBcHBsZVdlYktpdC81MzcuMzYgKEtIVE1MLCBsaWtlIEdlY2tvKSBDaHJvbWUvNTYuMC4yOTI0Ljg3IFNhZmFyaS81MzcuMzYnCkhUVFBfWF9DU1JGVE9LRU4gPSAnanE5MUJ1RjVlNVI3U2pNRlJjMlROZnZXVThsRE82d3lJd2dRTjB4MDEyMndmck83QUR4bEZXY0dTM3JzODZzbicKTE9DQUxBUFBEQVRBID0gJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbCcKTE9HT05TRVJWRVIgPSAnXFxcXEZBUkhBTicKTlVNQkVSX09GX1BST0NFU1NPUlMgPSAnMicKT05FRFJJVkUgPSAnQzpcXFVzZXJzXFxmYXJoYV8wMDBcXE9uZURyaXZlJwpPUyA9ICdXaW5kb3dzX05UJwpQQVRIID0gJ0M6XFxQcm9ncmFtRGF0YVxcT3JhY2xlXFxKYXZhXFxqYXZhcGF0aDtDOlxcUHJvZ3JhbSBGaWxlc1xcSGFza2VsbFxcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxIYXNrZWxsIFBsYXRmb3JtXFw3LjEwLjNcXGxpYlxcZXh0cmFsaWJzXFxiaW47QzpcXFByb2dyYW0gRmlsZXNcXEhhc2tlbGwgUGxhdGZvcm1cXDcuMTAuM1xcYmluO0M6XFxXSU5ET1dTXFxzeXN0ZW0zMjtDOlxcV0lORE9XUztDOlxcV0lORE9XU1xcU3lzdGVtMzJcXFdiZW07QzpcXFdJTkRPV1NcXFN5c3RlbTMyXFxXaW5kb3dzUG93ZXJTaGVsbFxcdjEuMFxcO0M6XFxQcm9ncmFtIEZpbGVzXFxIYXNrZWxsIFBsYXRmb3JtXFw3LjEwLjNcXG1pbmd3XFxiaW47QzpcXFByb2dyYW0gRmlsZXNcXEphdmFcXGpkazEuOC4wXzc3XFxiaW47QzpcXGN5Z3dpbjY0XFxiaW47JWxvY2FsYXBwZGF0YSVcXE1pY3Jvc29mdFxcV2luZG93c0FwcHM7RDpcXFhBTVBQXFxwaHA7QzpcXFByb2dyYW0gRmlsZXNcXEdpdFxcY21kO0M6XFx4YW1wcFxccGhwO0M6XFxQcm9ncmFtRGF0YVxcQ29tcG9zZXJTZXR1cFxcYmluO0M6XFxQcm9ncmFtIEZpbGVzICh4ODYpXFxub2RlanNcXDtDOlxcUHJvZ3JhbSBGaWxlc1xcUG9zdGdyZVNRTFxcOS42XFxiaW47QzpcXFByb2dyYW0gRmlsZXNcXE1BVExBQlxcUjIwMTdhXFxiaW47QzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXExvY2FsXFxQcm9ncmFtc1xcUHl0aG9uXFxQeXRob24zNi0zMlxcU2NyaXB0c1xcO0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXDtDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcUm9hbWluZ1xcY2FiYWxcXGJpbjtEOlxcWEFNUFBcXHBocDtDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcUm9hbWluZ1xcQ29tcG9zZXJcXHZlbmRvclxcYmluO0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcTWljcm9zb2Z0XFxXaW5kb3dzQXBwcztDOlxccHl0aG9uLTMuNi4wJwpQQVRIRVhUID0gJy5DT007LkVYRTsuQkFUOy5DTUQ7LlZCUzsuVkJFOy5KUzsuSlNFOy5XU0Y7LldTSDsuTVNDJwpQQVRIX0lORk8gPSAnL2FwaS9zdHVkZW50cy8xL2Jvb2ttYXJrZWQtdmFjYW5jaWVzLycKUFJPQ0VTU09SX0FSQ0hJVEVDVFVSRSA9ICd4ODYnClBST0NFU1NPUl9BUkNISVRFVzY0MzIgPSAnQU1ENjQnClBST0NFU1NPUl9JREVOVElGSUVSID0gJ0ludGVsNjQgRmFtaWx5IDYgTW9kZWwgNTggU3RlcHBpbmcgOSwgR2VudWluZUludGVsJwpQUk9DRVNTT1JfTEVWRUwgPSAnNicKUFJPQ0VTU09SX1JFVklTSU9OID0gJzNhMDknClBST0dSQU1EQVRBID0gJ0M6XFxQcm9ncmFtRGF0YScKUFJPR1JBTUZJTEVTID0gJ0M6XFxQcm9ncmFtIEZpbGVzICh4ODYpJwpQUk9HUkFNRklMRVMoWDg2KSA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KScKUFJPR1JBTVc2NDMyID0gJ0M6XFxQcm9ncmFtIEZpbGVzJwpQUk9NUFQgPSAnJFAkRycKUFNNT0RVTEVQQVRIID0gJ0M6XFxXSU5ET1dTXFxzeXN0ZW0zMlxcV2luZG93c1Bvd2VyU2hlbGxcXHYxLjBcXE1vZHVsZXNcXCcKUFVCTElDID0gJ0M6XFxVc2Vyc1xcUHVibGljJwpRVUVSWV9TVFJJTkcgPSAnJwpSRU1PVEVfQUREUiA9ICcxMjcuMC4wLjEnClJFTU9URV9IT1NUID0gJycKUkVRVUVTVF9NRVRIT0QgPSAnUE9TVCcKUlVOX01BSU4gPSAndHJ1ZScKU0NSSVBUX05BTUUgPSAnJwpTRVJWRVJfTkFNRSA9ICdGYXJoYW4nClNFUlZFUl9QT1JUID0gJzgwMDAnClNFUlZFUl9QUk9UT0NPTCA9ICdIVFRQLzEuMScKU0VSVkVSX1NPRlRXQVJFID0gJ1dTR0lTZXJ2ZXIvMC4yJwpTRVNTSU9OTkFNRSA9ICdDb25zb2xlJwpTWVNURU1EUklWRSA9ICdDOicKU1lTVEVNUk9PVCA9ICdDOlxcV0lORE9XUycKVEVNUCA9ICdDOlxcVXNlcnNcXEZBUkhBX34xXFxBcHBEYXRhXFxMb2NhbFxcVGVtcCcKVE1QID0gJ0M6XFxVc2Vyc1xcRkFSSEFffjFcXEFwcERhdGFcXExvY2FsXFxUZW1wJwpVU0VSRE9NQUlOID0gJ0ZhcmhhbicKVVNFUkRPTUFJTl9ST0FNSU5HUFJPRklMRSA9ICdGYXJoYW4nClVTRVJOQU1FID0gJ0ZhcmhhbiBGYXJhc2RhaycKVVNFUlBST0ZJTEUgPSAnQzpcXFVzZXJzXFxmYXJoYV8wMDAnClZCT1hfTVNJX0lOU1RBTExfUEFUSCA9ICdDOlxcUHJvZ3JhbSBGaWxlc1xcT3JhY2xlXFxWaXJ0dWFsQm94XFwnCldJTkRJUiA9ICdDOlxcV0lORE9XUycKd3NnaS5lcnJvcnMgPSA8X2lvLlRleHRJT1dyYXBwZXIgbmFtZT0nPHN0ZGVycj4nIG1vZGU9J3cnIGVuY29kaW5nPSd1dGYtOCc+CndzZ2kuZmlsZV93cmFwcGVyID0gJycKd3NnaS5pbnB1dCA9IDxfaW8uQnVmZmVyZWRSZWFkZXIgbmFtZT0xODM2Pgp3c2dpLm11bHRpcHJvY2VzcyA9IEZhbHNlCndzZ2kubXVsdGl0aHJlYWQgPSBUcnVlCndzZ2kucnVuX29uY2UgPSBGYWxzZQp3c2dpLnVybF9zY2hlbWUgPSAnaHR0cCcKd3NnaS52ZXJzaW9uID0gCgpTZXR0aW5nczoKVXNpbmcgc2V0dGluZ3MgbW9kdWxlIGthcGUuc2V0dGluZ3MKQUJTT0xVVEVfVVJMX09WRVJSSURFUyA9IHt9CkFETUlOUyA9IFtdCkFMTE9XRURfSE9TVFMgPSBbJ2JvdC5yZWNydWl0LmlkJywgJzEwNC4yMzYuNzYuMTYxJywgJ2xvY2FsaG9zdCcsICcxMjcuMC4wLjEnXQpBUFBFTkRfU0xBU0ggPSBUcnVlCkFVVEhFTlRJQ0FUSU9OX0JBQ0tFTkRTID0gWydkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCddCkFVVEhfUEFTU1dPUkRfVkFMSURBVE9SUyA9ICcqKioqKioqKioqKioqKioqKioqKicKQVVUSF9VU0VSX01PREVMID0gJ2F1dGguVXNlcicKQkFTRV9ESVIgPSAnRDpcXFBQTEEnCkNBQ0hFUyA9IHsnZGVmYXVsdCc6IHsnQkFDS0VORCc6ICdkamFuZ28uY29yZS5jYWNoZS5iYWNrZW5kcy5sb2NtZW0uTG9jTWVtQ2FjaGUnfX0KQ0FDSEVfTUlERExFV0FSRV9BTElBUyA9ICdkZWZhdWx0JwpDQUNIRV9NSURETEVXQVJFX0tFWV9QUkVGSVggPSAnKioqKioqKioqKioqKioqKioqKionCkNBQ0hFX01JRERMRVdBUkVfU0VDT05EUyA9IDYwMApDU1JGX0NPT0tJRV9BR0UgPSAzMTQ0OTYwMApDU1JGX0NPT0tJRV9ET01BSU4gPSBOb25lCkNTUkZfQ09PS0lFX0hUVFBPTkxZID0gRmFsc2UKQ1NSRl9DT09LSUVfTkFNRSA9ICdjc3JmdG9rZW4nCkNTUkZfQ09PS0lFX1BBVEggPSAnLycKQ1NSRl9DT09LSUVfU0VDVVJFID0gRmFsc2UKQ1NSRl9GQUlMVVJFX1ZJRVcgPSAnZGphbmdvLnZpZXdzLmNzcmYuY3NyZl9mYWlsdXJlJwpDU1JGX0hFQURFUl9OQU1FID0gJ0hUVFBfWF9DU1JGVE9LRU4nCkNTUkZfVFJVU1RFRF9PUklHSU5TID0gW10KREFUQUJBU0VTID0geydkZWZhdWx0JzogeydFTkdJTkUnOiAnZGphbmdvLmRiLmJhY2tlbmRzLnBvc3RncmVzcWxfcHN5Y29wZzInLCAnTkFNRSc6ICdrYXBlJywgJ1VTRVInOiAna2FwZScsICdQQVNTV09SRCc6ICcqKioqKioqKioqKioqKioqKioqKicsICdIT1NUJzogJ2xvY2FsaG9zdCcsICdQT1JUJzogJycsICdBVE9NSUNfUkVRVUVTVFMnOiBGYWxzZSwgJ0FVVE9DT01NSVQnOiBUcnVlLCAnQ09OTl9NQVhfQUdFJzogMCwgJ09QVElPTlMnOiB7fSwgJ1RJTUVfWk9ORSc6IE5vbmUsICdURVNUJzogeydDSEFSU0VUJzogTm9uZSwgJ0NPTExBVElPTic6IE5vbmUsICdOQU1FJzogTm9uZSwgJ01JUlJPUic6IE5vbmV9fX0KREFUQUJBU0VfUk9VVEVSUyA9IFtdCkRBVEFfVVBMT0FEX01BWF9NRU1PUllfU0laRSA9IDI2MjE0NDAKREFUQV9VUExPQURfTUFYX05VTUJFUl9GSUVMRFMgPSAxMDAwCkRBVEVUSU1FX0ZPUk1BVCA9ICdOIGosIFksIFAnCkRBVEVUSU1FX0lOUFVUX0ZPUk1BVFMgPSBbJyVZLSVtLSVkICVIOiVNOiVTJywgJyVZLSVtLSVkICVIOiVNOiVTLiVmJywgJyVZLSVtLSVkICVIOiVNJywgJyVZLSVtLSVkJywgJyVtLyVkLyVZICVIOiVNOiVTJywgJyVtLyVkLyVZICVIOiVNOiVTLiVmJywgJyVtLyVkLyVZICVIOiVNJywgJyVtLyVkLyVZJywgJyVtLyVkLyV5ICVIOiVNOiVTJywgJyVtLyVkLyV5ICVIOiVNOiVTLiVmJywgJyVtLyVkLyV5ICVIOiVNJywgJyVtLyVkLyV5J10KREFURV9GT1JNQVQgPSAnTiBqLCBZJwpEQVRFX0lOUFVUX0ZPUk1BVFMgPSBbJyVZLSVtLSVkJywgJyVtLyVkLyVZJywgJyVtLyVkLyV5JywgJyViICVkICVZJywgJyViICVkLCAlWScsICclZCAlYiAlWScsICclZCAlYiwgJVknLCAnJUIgJWQgJVknLCAnJUIgJWQsICVZJywgJyVkICVCICVZJywgJyVkICVCLCAlWSddCkRFQlVHID0gVHJ1ZQpERUJVR19QUk9QQUdBVEVfRVhDRVBUSU9OUyA9IEZhbHNlCkRFQ0lNQUxfU0VQQVJBVE9SID0gJy4nCkRFRkFVTFRfQ0hBUlNFVCA9ICd1dGYtOCcKREVGQVVMVF9DT05URU5UX1RZUEUgPSAndGV4dC9odG1sJwpERUZBVUxUX0VYQ0VQVElPTl9SRVBPUlRFUl9GSUxURVIgPSAnZGphbmdvLnZpZXdzLmRlYnVnLlNhZmVFeGNlcHRpb25SZXBvcnRlckZpbHRlcicKREVGQVVMVF9GSUxFX1NUT1JBR0UgPSAnZGphbmdvLmNvcmUuZmlsZXMuc3RvcmFnZS5GaWxlU3lzdGVtU3RvcmFnZScKREVGQVVMVF9GUk9NX0VNQUlMID0gJ3dlYm1hc3RlckBsb2NhbGhvc3QnCkRFRkFVTFRfSU5ERVhfVEFCTEVTUEFDRSA9ICcnCkRFRkFVTFRfVEFCTEVTUEFDRSA9ICcnCkRJU0FMTE9XRURfVVNFUl9BR0VOVFMgPSBbXQpFTUFJTF9CQUNLRU5EID0gJ2RqYW5nby5jb3JlLm1haWwuYmFja2VuZHMuc210cC5FbWFpbEJhY2tlbmQnCkVNQUlMX0hPU1QgPSAnbG9jYWxob3N0JwpFTUFJTF9IT1NUX1BBU1NXT1JEID0gJyoqKioqKioqKioqKioqKioqKioqJwpFTUFJTF9IT1NUX1VTRVIgPSAnJwpFTUFJTF9QT1JUID0gMjUKRU1BSUxfU1NMX0NFUlRGSUxFID0gTm9uZQpFTUFJTF9TU0xfS0VZRklMRSA9ICcqKioqKioqKioqKioqKioqKioqKicKRU1BSUxfU1VCSkVDVF9QUkVGSVggPSAnW0RqYW5nb10gJwpFTUFJTF9USU1FT1VUID0gTm9uZQpFTUFJTF9VU0VfU1NMID0gRmFsc2UKRU1BSUxfVVNFX1RMUyA9IEZhbHNlCkZJTEVfQ0hBUlNFVCA9ICd1dGYtOCcKRklMRV9VUExPQURfRElSRUNUT1JZX1BFUk1JU1NJT05TID0gTm9uZQpGSUxFX1VQTE9BRF9IQU5ETEVSUyA9IFsnZGphbmdvLmNvcmUuZmlsZXMudXBsb2FkaGFuZGxlci5NZW1vcnlGaWxlVXBsb2FkSGFuZGxlcicsICdkamFuZ28uY29yZS5maWxlcy51cGxvYWRoYW5kbGVyLlRlbXBvcmFyeUZpbGVVcGxvYWRIYW5kbGVyJ10KRklMRV9VUExPQURfTUFYX01FTU9SWV9TSVpFID0gMjYyMTQ0MApGSUxFX1VQTE9BRF9QRVJNSVNTSU9OUyA9IE5vbmUKRklMRV9VUExPQURfVEVNUF9ESVIgPSBOb25lCkZJUlNUX0RBWV9PRl9XRUVLID0gMApGSVhUVVJFX0RJUlMgPSBbXQpGT1JDRV9TQ1JJUFRfTkFNRSA9IE5vbmUKRk9STUFUX01PRFVMRV9QQVRIID0gTm9uZQpHWklQX0NPTlRFTlRfVFlQRVMgPSAKSUdOT1JBQkxFXzQwNF9VUkxTID0gW10KSU5TVEFMTEVEX0FQUFMgPSBbJ2RqYW5nby5jb250cmliLmFkbWluJywgJ2RqYW5nby5jb250cmliLmF1dGgnLCAnZGphbmdvLmNvbnRyaWIuY29udGVudHR5cGVzJywgJ2RqYW5nby5jb250cmliLnNlc3Npb25zJywgJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzJywgJ2RqYW5nby5jb250cmliLnN0YXRpY2ZpbGVzJywgJ3dlYnBhY2tfbG9hZGVyJywgJ2NvcmUnLCAncmVzdF9mcmFtZXdvcmsnLCAnZGphbmdvX25vc2UnLCAncmVzdF9mcmFtZXdvcmtfc3dhZ2dlcicsICdzaWxrJ10KSU5URVJOQUxfSVBTID0gW10KTEFOR1VBR0VTID0gWygnYWYnLCAnQWZyaWthYW5zJyksICgnYXInLCAnQXJhYmljJyksICgnYXN0JywgJ0FzdHVyaWFuJyksICgnYXonLCAnQXplcmJhaWphbmknKSwgKCdiZycsICdCdWxnYXJpYW4nKSwgKCdiZScsICdCZWxhcnVzaWFuJyksICgnYm4nLCAnQmVuZ2FsaScpLCAoJ2JyJywgJ0JyZXRvbicpLCAoJ2JzJywgJ0Jvc25pYW4nKSwgKCdjYScsICdDYXRhbGFuJyksICgnY3MnLCAnQ3plY2gnKSwgKCdjeScsICdXZWxzaCcpLCAoJ2RhJywgJ0RhbmlzaCcpLCAoJ2RlJywgJ0dlcm1hbicpLCAoJ2RzYicsICdMb3dlciBTb3JiaWFuJyksICgnZWwnLCAnR3JlZWsnKSwgKCdlbicsICdFbmdsaXNoJyksICgnZW4tYXUnLCAnQXVzdHJhbGlhbiBFbmdsaXNoJyksICgnZW4tZ2InLCAnQnJpdGlzaCBFbmdsaXNoJyksICgnZW8nLCAnRXNwZXJhbnRvJyksICgnZXMnLCAnU3BhbmlzaCcpLCAoJ2VzLWFyJywgJ0FyZ2VudGluaWFuIFNwYW5pc2gnKSwgKCdlcy1jbycsICdDb2xvbWJpYW4gU3BhbmlzaCcpLCAoJ2VzLW14JywgJ01leGljYW4gU3BhbmlzaCcpLCAoJ2VzLW5pJywgJ05pY2FyYWd1YW4gU3BhbmlzaCcpLCAoJ2VzLXZlJywgJ1ZlbmV6dWVsYW4gU3BhbmlzaCcpLCAoJ2V0JywgJ0VzdG9uaWFuJyksICgnZXUnLCAnQmFzcXVlJyksICgnZmEnLCAnUGVyc2lhbicpLCAoJ2ZpJywgJ0Zpbm5pc2gnKSwgKCdmcicsICdGcmVuY2gnKSwgKCdmeScsICdGcmlzaWFuJyksICgnZ2EnLCAnSXJpc2gnKSwgKCdnZCcsICdTY290dGlzaCBHYWVsaWMnKSwgKCdnbCcsICdHYWxpY2lhbicpLCAoJ2hlJywgJ0hlYnJldycpLCAoJ2hpJywgJ0hpbmRpJyksICgnaHInLCAnQ3JvYXRpYW4nKSwgKCdoc2InLCAnVXBwZXIgU29yYmlhbicpLCAoJ2h1JywgJ0h1bmdhcmlhbicpLCAoJ2lhJywgJ0ludGVybGluZ3VhJyksICgnaWQnLCAnSW5kb25lc2lhbicpLCAoJ2lvJywgJ0lkbycpLCAoJ2lzJywgJ0ljZWxhbmRpYycpLCAoJ2l0JywgJ0l0YWxpYW4nKSwgKCdqYScsICdKYXBhbmVzZScpLCAoJ2thJywgJ0dlb3JnaWFuJyksICgna2snLCAnS2F6YWtoJyksICgna20nLCAnS2htZXInKSwgKCdrbicsICdLYW5uYWRhJyksICgna28nLCAnS29yZWFuJyksICgnbGInLCAnTHV4ZW1ib3VyZ2lzaCcpLCAoJ2x0JywgJ0xpdGh1YW5pYW4nKSwgKCdsdicsICdMYXR2aWFuJyksICgnbWsnLCAnTWFjZWRvbmlhbicpLCAoJ21sJywgJ01hbGF5YWxhbScpLCAoJ21uJywgJ01vbmdvbGlhbicpLCAoJ21yJywgJ01hcmF0aGknKSwgKCdteScsICdCdXJtZXNlJyksICgnbmInLCAnTm9yd2VnaWFuIEJva23DpWwnKSwgKCduZScsICdOZXBhbGknKSwgKCdubCcsICdEdXRjaCcpLCAoJ25uJywgJ05vcndlZ2lhbiBOeW5vcnNrJyksICgnb3MnLCAnT3NzZXRpYycpLCAoJ3BhJywgJ1B1bmphYmknKSwgKCdwbCcsICdQb2xpc2gnKSwgKCdwdCcsICdQb3J0dWd1ZXNlJyksICgncHQtYnInLCAnQnJhemlsaWFuIFBvcnR1Z3Vlc2UnKSwgKCdybycsICdSb21hbmlhbicpLCAoJ3J1JywgJ1J1c3NpYW4nKSwgKCdzaycsICdTbG92YWsnKSwgKCdzbCcsICdTbG92ZW5pYW4nKSwgKCdzcScsICdBbGJhbmlhbicpLCAoJ3NyJywgJ1NlcmJpYW4nKSwgKCdzci1sYXRuJywgJ1NlcmJpYW4gTGF0aW4nKSwgKCdzdicsICdTd2VkaXNoJyksICgnc3cnLCAnU3dhaGlsaScpLCAoJ3RhJywgJ1RhbWlsJyksICgndGUnLCAnVGVsdWd1JyksICgndGgnLCAnVGhhaScpLCAoJ3RyJywgJ1R1cmtpc2gnKSwgKCd0dCcsICdUYXRhcicpLCAoJ3VkbScsICdVZG11cnQnKSwgKCd1aycsICdVa3JhaW5pYW4nKSwgKCd1cicsICdVcmR1JyksICgndmknLCAnVmlldG5hbWVzZScpLCAoJ3poLWhhbnMnLCAnU2ltcGxpZmllZCBDaGluZXNlJyksICgnemgtaGFudCcsICdUcmFkaXRpb25hbCBDaGluZXNlJyldCkxBTkdVQUdFU19CSURJID0gWydoZScsICdhcicsICdmYScsICd1ciddCkxBTkdVQUdFX0NPREUgPSAnZW4tdXMnCkxBTkdVQUdFX0NPT0tJRV9BR0UgPSBOb25lCkxBTkdVQUdFX0NPT0tJRV9ET01BSU4gPSBOb25lCkxBTkdVQUdFX0NPT0tJRV9OQU1FID0gJ2RqYW5nb19sYW5ndWFnZScKTEFOR1VBR0VfQ09PS0lFX1BBVEggPSAnLycKTE9DQUxFX1BBVEhTID0gW10KTE9HR0lORyA9IHt9CkxPR0dJTkdfQ09ORklHID0gJ2xvZ2dpbmcuY29uZmlnLmRpY3RDb25maWcnCkxPR0lOX1JFRElSRUNUX1VSTCA9ICcvYWNjb3VudHMvcHJvZmlsZS8nCkxPR0lOX1VSTCA9ICcvYWNjb3VudHMvbG9naW4vJwpMT0dPVVRfUkVESVJFQ1RfVVJMID0gTm9uZQpNQU5BR0VSUyA9IFtdCk1FRElBX1JPT1QgPSAnL2hvbWUvZmlsZXMnCk1FRElBX1VSTCA9ICcvZmlsZXMvJwpNRVNTQUdFX1NUT1JBR0UgPSAnZGphbmdvLmNvbnRyaWIubWVzc2FnZXMuc3RvcmFnZS5mYWxsYmFjay5GYWxsYmFja1N0b3JhZ2UnCk1JRERMRVdBUkUgPSBbJ2RqYW5nby5taWRkbGV3YXJlLnNlY3VyaXR5LlNlY3VyaXR5TWlkZGxld2FyZScsICdkamFuZ28uY29udHJpYi5zZXNzaW9ucy5taWRkbGV3YXJlLlNlc3Npb25NaWRkbGV3YXJlJywgJ2RqYW5nby5taWRkbGV3YXJlLmNvbW1vbi5Db21tb25NaWRkbGV3YXJlJywgJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJywgJ2RqYW5nby5jb250cmliLmF1dGgubWlkZGxld2FyZS5BdXRoZW50aWNhdGlvbk1pZGRsZXdhcmUnLCAnZGphbmdvLmNvbnRyaWIubWVzc2FnZXMubWlkZGxld2FyZS5NZXNzYWdlTWlkZGxld2FyZScsICdkamFuZ28ubWlkZGxld2FyZS5jbGlja2phY2tpbmcuWEZyYW1lT3B0aW9uc01pZGRsZXdhcmUnLCAnc2lsay5taWRkbGV3YXJlLlNpbGt5TWlkZGxld2FyZSddCk1JRERMRVdBUkVfQ0xBU1NFUyA9IFsnZGphbmdvLm1pZGRsZXdhcmUuY29tbW9uLkNvbW1vbk1pZGRsZXdhcmUnLCAnZGphbmdvLm1pZGRsZXdhcmUuY3NyZi5Dc3JmVmlld01pZGRsZXdhcmUnXQpNSUdSQVRJT05fTU9EVUxFUyA9IHt9Ck1PTlRIX0RBWV9GT1JNQVQgPSAnRiBqJwpOT1NFX0FSR1MgPSBbJy0td2l0aC1jb3ZlcmFnZScsICctLWNvdmVyLXBhY2thZ2U9Y29yZS52aWV3cycsICctLWNvdmVyLWh0bWwtZGlyPXRlc3QvYmFja2VuZCcsICctLWNvdmVyLWh0bWwnXQpOVU1CRVJfR1JPVVBJTkcgPSAwClBBU1NXT1JEX0hBU0hFUlMgPSAnKioqKioqKioqKioqKioqKioqKionClBBU1NXT1JEX1JFU0VUX1RJTUVPVVRfREFZUyA9ICcqKioqKioqKioqKioqKioqKioqKicKUFJFUEVORF9XV1cgPSBGYWxzZQpSRVNUX0ZSQU1FV09SSyA9IHsnREVGQVVMVF9QRVJNSVNTSU9OX0NMQVNTRVMnOiBbJ3Jlc3RfZnJhbWV3b3JrLnBlcm1pc3Npb25zLkRqYW5nb01vZGVsUGVybWlzc2lvbnNPckFub25SZWFkT25seSddfQpST09UX1VSTENPTkYgPSAna2FwZS51cmxzJwpSVU5OSU5HX0RFVlNFUlZFUiA9IFRydWUKU0VDUkVUX0tFWSA9ICcqKioqKioqKioqKioqKioqKioqKicKU0VDVVJFX0JST1dTRVJfWFNTX0ZJTFRFUiA9IEZhbHNlClNFQ1VSRV9DT05URU5UX1RZUEVfTk9TTklGRiA9IEZhbHNlClNFQ1VSRV9IU1RTX0lOQ0xVREVfU1VCRE9NQUlOUyA9IEZhbHNlClNFQ1VSRV9IU1RTX1NFQ09ORFMgPSAwClNFQ1VSRV9QUk9YWV9TU0xfSEVBREVSID0gTm9uZQpTRUNVUkVfUkVESVJFQ1RfRVhFTVBUID0gW10KU0VDVVJFX1NTTF9IT1NUID0gTm9uZQpTRUNVUkVfU1NMX1JFRElSRUNUID0gRmFsc2UKU0VSVkVSX0VNQUlMID0gJ3Jvb3RAbG9jYWxob3N0JwpTRVNTSU9OX0NBQ0hFX0FMSUFTID0gJ2RlZmF1bHQnClNFU1NJT05fQ09PS0lFX0FHRSA9IDEyMDk2MDAKU0VTU0lPTl9DT09LSUVfRE9NQUlOID0gTm9uZQpTRVNTSU9OX0NPT0tJRV9IVFRQT05MWSA9IEZhbHNlClNFU1NJT05fQ09PS0lFX05BTUUgPSAnc2Vzc2lvbmlkJwpTRVNTSU9OX0NPT0tJRV9QQVRIID0gJy8nClNFU1NJT05fQ09PS0lFX1NFQ1VSRSA9IEZhbHNlClNFU1NJT05fRU5HSU5FID0gJ2RqYW5nby5jb250cmliLnNlc3Npb25zLmJhY2tlbmRzLmRiJwpTRVNTSU9OX0VYUElSRV9BVF9CUk9XU0VSX0NMT1NFID0gRmFsc2UKU0VTU0lPTl9GSUxFX1BBVEggPSBOb25lClNFU1NJT05fU0FWRV9FVkVSWV9SRVFVRVNUID0gRmFsc2UKU0VTU0lPTl9TRVJJQUxJWkVSID0gJ2RqYW5nby5jb250cmliLnNlc3Npb25zLnNlcmlhbGl6ZXJzLkpTT05TZXJpYWxpemVyJwpTRVRUSU5HU19NT0RVTEUgPSAna2FwZS5zZXR0aW5ncycKU0hPUlRfREFURVRJTUVfRk9STUFUID0gJ20vZC9ZIFAnClNIT1JUX0RBVEVfRk9STUFUID0gJ20vZC9ZJwpTSUdOSU5HX0JBQ0tFTkQgPSAnZGphbmdvLmNvcmUuc2lnbmluZy5UaW1lc3RhbXBTaWduZXInClNJTEVOQ0VEX1NZU1RFTV9DSEVDS1MgPSBbXQpTVEFUSUNGSUxFU19ESVJTID0gJ0Q6XFxQUExBXFxhc3NldHMnClNUQVRJQ0ZJTEVTX0ZJTkRFUlMgPSBbJ2RqYW5nby5jb250cmliLnN0YXRpY2ZpbGVzLmZpbmRlcnMuRmlsZVN5c3RlbUZpbmRlcicsICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcy5maW5kZXJzLkFwcERpcmVjdG9yaWVzRmluZGVyJ10KU1RBVElDRklMRVNfU1RPUkFHRSA9ICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcy5zdG9yYWdlLlN0YXRpY0ZpbGVzU3RvcmFnZScKU1RBVElDX1JPT1QgPSAnL2hvbWUvYXNzZXRzJwpTVEFUSUNfVVJMID0gJy9hc3NldHMvJwpURU1QTEFURVMgPSBbeydCQUNLRU5EJzogJ2RqYW5nby50ZW1wbGF0ZS5iYWNrZW5kcy5kamFuZ28uRGphbmdvVGVtcGxhdGVzJywgJ0RJUlMnOiBbXSwgJ0FQUF9ESVJTJzogVHJ1ZSwgJ09QVElPTlMnOiB7J2NvbnRleHRfcHJvY2Vzc29ycyc6IFsnZGphbmdvLnRlbXBsYXRlLmNvbnRleHRfcHJvY2Vzc29ycy5kZWJ1ZycsICdkamFuZ28udGVtcGxhdGUuY29udGV4dF9wcm9jZXNzb3JzLnJlcXVlc3QnLCAnZGphbmdvLmNvbnRyaWIuYXV0aC5jb250ZXh0X3Byb2Nlc3NvcnMuYXV0aCcsICdkamFuZ28uY29udHJpYi5tZXNzYWdlcy5jb250ZXh0X3Byb2Nlc3NvcnMubWVzc2FnZXMnXX19XQpURVNUX05PTl9TRVJJQUxJWkVEX0FQUFMgPSBbXQpURVNUX1JVTk5FUiA9ICdkamFuZ29fbm9zZS5Ob3NlVGVzdFN1aXRlUnVubmVyJwpUSE9VU0FORF9TRVBBUkFUT1IgPSAnLCcKVElNRV9GT1JNQVQgPSAnUCcKVElNRV9JTlBVVF9GT1JNQVRTID0gWyclSDolTTolUycsICclSDolTTolUy4lZicsICclSDolTSddClRJTUVfWk9ORSA9ICdVVEMnClVTRV9FVEFHUyA9IEZhbHNlClVTRV9JMThOID0gVHJ1ZQpVU0VfTDEwTiA9IFRydWUKVVNFX1RIT1VTQU5EX1NFUEFSQVRPUiA9IEZhbHNlClVTRV9UWiA9IFRydWUKVVNFX1hfRk9SV0FSREVEX0hPU1QgPSBGYWxzZQpVU0VfWF9GT1JXQVJERURfUE9SVCA9IEZhbHNlCldFQlBBQ0tfTE9BREVSID0geydERUZBVUxUJzogeydCVU5ETEVfRElSX05BTUUnOiAnYnVuZGxlcy8nLCAnU1RBVFNfRklMRSc6ICdEOlxcUFBMQVxcd2VicGFjay1zdGF0cy5qc29uJ319CldTR0lfQVBQTElDQVRJT04gPSAna2FwZS53c2dpLmFwcGxpY2F0aW9uJwpYX0ZSQU1FX09QVElPTlMgPSAnU0FNRU9SSUdJTicKWUVBUl9NT05USF9GT1JNQVQgPSAnRiBZJwoKCllvdSdyZSBzZWVpbmcgdGhpcyBlcnJvciBiZWNhdXNlIHlvdSBoYXZlIERFQlVHID0gVHJ1ZSBpbiB5b3VyCkRqYW5nbyBzZXR0aW5ncyBmaWxlLiBDaGFuZ2UgdGhhdCB0byBGYWxzZSwgYW5kIERqYW5nbyB3aWxsCmRpc3BsYXkgYSBzdGFuZGFyZCBwYWdlIGdlbmVyYXRlZCBieSB0aGUgaGFuZGxlciBmb3IgdGhpcyBzdGF0dXMgY29kZS4KCg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/plain\"}" - } -}, -{ - "model": "silk.response", - "pk": "6efa962f-5d28-4edf-8c9d-9f8cd402c4c7", - "fields": { - "request": "7810b10a-0034-473d-91f0-dc9175a5ea3c", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPlNlbGVjdCB1c2VyIHRvIGNoYW5nZSB8IERqYW5nbyBzaXRlIGFkbWluPC90aXRsZT4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvYmFzZS5jc3MiIC8+CgogIAogIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvYWRtaW4vY3NzL2NoYW5nZWxpc3RzLmNzcyIgLz4KICAKICAKICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KICAKICAKICAKCgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvY29yZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL2pxdWVyeS9qcXVlcnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2pxdWVyeS5pbml0LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hZG1pbi9SZWxhdGVkT2JqZWN0TG9va3Vwcy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvYWN0aW9ucy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdXJsaWZ5LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9wcmVwb3B1bGF0ZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL3hyZWdleHAveHJlZ2V4cC5qcyI+PC9zY3JpcHQ+Cgo8bWV0YSBuYW1lPSJyb2JvdHMiIGNvbnRlbnQ9Ik5PTkUsTk9BUkNISVZFIiAvPgo8L2hlYWQ+CgoKPGJvZHkgY2xhc3M9IiBhcHAtYXV0aCBtb2RlbC11c2VyIGNoYW5nZS1saXN0IgogIGRhdGEtYWRtaW4tdXRjLW9mZnNldD0iMCI+Cgo8IS0tIENvbnRhaW5lciAtLT4KPGRpdiBpZD0iY29udGFpbmVyIj4KCiAgICAKICAgIDwhLS0gSGVhZGVyIC0tPgogICAgPGRpdiBpZD0iaGVhZGVyIj4KICAgICAgICA8ZGl2IGlkPSJicmFuZGluZyI+CiAgICAgICAgCjxoMSBpZD0ic2l0ZS1uYW1lIj48YSBocmVmPSIvYWRtaW4vIj5EamFuZ28gYWRtaW5pc3RyYXRpb248L2E+PC9oMT4KCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgPGRpdiBpZD0idXNlci10b29scyI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgV2VsY29tZSwKICAgICAgICAgICAgICAgIDxzdHJvbmc+a2FwZTwvc3Ryb25nPi4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iLyI+VmlldyBzaXRlPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9wYXNzd29yZF9jaGFuZ2UvIj5DaGFuZ2UgcGFzc3dvcmQ8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2xvZ291dC8iPkxvZyBvdXQ8L2E+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIAogICAgPC9kaXY+CiAgICA8IS0tIEVORCBIZWFkZXIgLS0+CiAgICAKPGRpdiBjbGFzcz0iYnJlYWRjcnVtYnMiPgo8YSBocmVmPSIvYWRtaW4vIj5Ib21lPC9hPgomcnNhcXVvOyA8YSBocmVmPSIvYWRtaW4vYXV0aC8iPkF1dGhlbnRpY2F0aW9uIGFuZCBBdXRob3JpemF0aW9uPC9hPgomcnNhcXVvOyBVc2Vycwo8L2Rpdj4KCiAgICAKCiAgICAKICAgICAgICAKICAgIAoKICAgIDwhLS0gQ29udGVudCAtLT4KICAgIDxkaXYgaWQ9ImNvbnRlbnQiIGNsYXNzPSJmbGV4Ij4KICAgICAgICAKICAgICAgICA8aDE+U2VsZWN0IHVzZXIgdG8gY2hhbmdlPC9oMT4KICAgICAgICAKICA8ZGl2IGlkPSJjb250ZW50LW1haW4iPgogICAgCiAgICAgICAgPHVsIGNsYXNzPSJvYmplY3QtdG9vbHMiPgogICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICA8bGk+CiAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci9hZGQvIiBjbGFzcz0iYWRkbGluayI+CiAgICAgICAgICAgICAgICBBZGQgdXNlcgogICAgICAgICAgICAgIDwvYT4KICAgICAgICAgICAgPC9saT4KICAgICAgICAgICAgCiAgICAgICAgICAKICAgICAgICA8L3VsPgogICAgCiAgICAKICAgIDxkaXYgY2xhc3M9Im1vZHVsZSBmaWx0ZXJlZCIgaWQ9ImNoYW5nZWxpc3QiPgogICAgICAKCjxkaXYgaWQ9InRvb2xiYXIiPjxmb3JtIGlkPSJjaGFuZ2VsaXN0LXNlYXJjaCIgbWV0aG9kPSJnZXQiPgo8ZGl2PjwhLS0gRElWIG5lZWRlZCBmb3IgdmFsaWQgSFRNTCAtLT4KPGxhYmVsIGZvcj0ic2VhcmNoYmFyIj48aW1nIHNyYz0iL2Fzc2V0cy9hZG1pbi9pbWcvc2VhcmNoLnN2ZyIgYWx0PSJTZWFyY2giIC8+PC9sYWJlbD4KPGlucHV0IHR5cGU9InRleHQiIHNpemU9IjQwIiBuYW1lPSJxIiB2YWx1ZT0iIiBpZD0ic2VhcmNoYmFyIiBhdXRvZm9jdXMgLz4KPGlucHV0IHR5cGU9InN1Ym1pdCIgdmFsdWU9IlNlYXJjaCIgLz4KCgo8L2Rpdj4KPC9mb3JtPjwvZGl2PgoKCiAgICAgIAoKCiAgICAgIAogICAgICAgIAogICAgICAgICAgPGRpdiBpZD0iY2hhbmdlbGlzdC1maWx0ZXIiPgogICAgICAgICAgICA8aDI+RmlsdGVyPC9oMj4KICAgICAgICAgICAgCjxoMz4gQnkgc3RhZmYgc3RhdHVzIDwvaDM+Cjx1bD4KCiAgICA8bGkgY2xhc3M9InNlbGVjdGVkIj4KICAgIDxhIGhyZWY9Ij8iPkFsbDwvYT48L2xpPgoKICAgIDxsaT4KICAgIDxhIGhyZWY9Ij9pc19zdGFmZl9fZXhhY3Q9MSI+WWVzPC9hPjwvbGk+CgogICAgPGxpPgogICAgPGEgaHJlZj0iP2lzX3N0YWZmX19leGFjdD0wIj5ObzwvYT48L2xpPgoKPC91bD4KCjxoMz4gQnkgc3VwZXJ1c2VyIHN0YXR1cyA8L2gzPgo8dWw+CgogICAgPGxpIGNsYXNzPSJzZWxlY3RlZCI+CiAgICA8YSBocmVmPSI/Ij5BbGw8L2E+PC9saT4KCiAgICA8bGk+CiAgICA8YSBocmVmPSI/aXNfc3VwZXJ1c2VyX19leGFjdD0xIj5ZZXM8L2E+PC9saT4KCiAgICA8bGk+CiAgICA8YSBocmVmPSI/aXNfc3VwZXJ1c2VyX19leGFjdD0wIj5ObzwvYT48L2xpPgoKPC91bD4KCjxoMz4gQnkgYWN0aXZlIDwvaDM+Cjx1bD4KCiAgICA8bGkgY2xhc3M9InNlbGVjdGVkIj4KICAgIDxhIGhyZWY9Ij8iPkFsbDwvYT48L2xpPgoKICAgIDxsaT4KICAgIDxhIGhyZWY9Ij9pc19hY3RpdmVfX2V4YWN0PTEiPlllczwvYT48L2xpPgoKICAgIDxsaT4KICAgIDxhIGhyZWY9Ij9pc19hY3RpdmVfX2V4YWN0PTAiPk5vPC9hPjwvbGk+Cgo8L3VsPgoKICAgICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAKCiAgICAgIDxmb3JtIGlkPSJjaGFuZ2VsaXN0LWZvcm0iIG1ldGhvZD0icG9zdCIgbm92YWxpZGF0ZT48aW5wdXQgdHlwZT0naGlkZGVuJyBuYW1lPSdjc3JmbWlkZGxld2FyZXRva2VuJyB2YWx1ZT0nOURqeGNKTEw1U3pDQTRJMjI3U0VPU3lSRTBFY0dxUGd5SnFtb2ZER1NQSzFYY0t1THluNkd6ZkJDVksxMHFMNScgLz4KICAgICAgCgogICAgICAKICAgICAgICAgIAo8ZGl2IGNsYXNzPSJhY3Rpb25zIj4KICAgIDxsYWJlbD5BY3Rpb246IDxzZWxlY3QgbmFtZT0iYWN0aW9uIiByZXF1aXJlZD4KPG9wdGlvbiB2YWx1ZT0iIiBzZWxlY3RlZD0ic2VsZWN0ZWQiPi0tLS0tLS0tLTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSJkZWxldGVfc2VsZWN0ZWQiPkRlbGV0ZSBzZWxlY3RlZCB1c2Vyczwvb3B0aW9uPgo8L3NlbGVjdD48L2xhYmVsPjxpbnB1dCBjbGFzcz0ic2VsZWN0LWFjcm9zcyIgbmFtZT0ic2VsZWN0X2Fjcm9zcyIgdHlwZT0iaGlkZGVuIiB2YWx1ZT0iMCIgLz4KICAgIDxidXR0b24gdHlwZT0ic3VibWl0IiBjbGFzcz0iYnV0dG9uIiB0aXRsZT0iUnVuIHRoZSBzZWxlY3RlZCBhY3Rpb24iIG5hbWU9ImluZGV4IiB2YWx1ZT0iMCI+R288L2J1dHRvbj4KICAgIAogICAgICAgIDxzcGFuIGNsYXNzPSJhY3Rpb24tY291bnRlciIgZGF0YS1hY3Rpb25zLWljbnQ9IjMiPjAgb2YgMyBzZWxlY3RlZDwvc3Bhbj4KICAgICAgICAKICAgIAo8L2Rpdj4KCiAgICAgICAgICAKCgo8ZGl2IGNsYXNzPSJyZXN1bHRzIj4KPHRhYmxlIGlkPSJyZXN1bHRfbGlzdCI+Cjx0aGVhZD4KPHRyPgoKPHRoIHNjb3BlPSJjb2wiICBjbGFzcz0iYWN0aW9uLWNoZWNrYm94LWNvbHVtbiI+CiAgIAogICA8ZGl2IGNsYXNzPSJ0ZXh0Ij48c3Bhbj48aW5wdXQgdHlwZT0iY2hlY2tib3giIGlkPSJhY3Rpb24tdG9nZ2xlIiAvPjwvc3Bhbj48L2Rpdj4KICAgPGRpdiBjbGFzcz0iY2xlYXIiPjwvZGl2Pgo8L3RoPgo8dGggc2NvcGU9ImNvbCIgIGNsYXNzPSJzb3J0YWJsZSBjb2x1bW4tdXNlcm5hbWUgc29ydGVkIGFzY2VuZGluZyI+CiAgIAogICAgIAogICAgICAgPGRpdiBjbGFzcz0ic29ydG9wdGlvbnMiPgogICAgICAgICA8YSBjbGFzcz0ic29ydHJlbW92ZSIgaHJlZj0iP289IiB0aXRsZT0iUmVtb3ZlIGZyb20gc29ydGluZyI+PC9hPgogICAgICAgICAKICAgICAgICAgPGEgaHJlZj0iP289LTEiIGNsYXNzPSJ0b2dnbGUgYXNjZW5kaW5nIiB0aXRsZT0iVG9nZ2xlIHNvcnRpbmciPjwvYT4KICAgICAgIDwvZGl2PgogICAgIAogICAKICAgPGRpdiBjbGFzcz0idGV4dCI+PGEgaHJlZj0iP289LTEiPlVzZXJuYW1lPC9hPjwvZGl2PgogICA8ZGl2IGNsYXNzPSJjbGVhciI+PC9kaXY+CjwvdGg+Cjx0aCBzY29wZT0iY29sIiAgY2xhc3M9InNvcnRhYmxlIGNvbHVtbi1lbWFpbCI+CiAgIAogICAgIAogICAKICAgPGRpdiBjbGFzcz0idGV4dCI+PGEgaHJlZj0iP289Mi4xIj5FbWFpbCBhZGRyZXNzPC9hPjwvZGl2PgogICA8ZGl2IGNsYXNzPSJjbGVhciI+PC9kaXY+CjwvdGg+Cjx0aCBzY29wZT0iY29sIiAgY2xhc3M9InNvcnRhYmxlIGNvbHVtbi1maXJzdF9uYW1lIj4KICAgCiAgICAgCiAgIAogICA8ZGl2IGNsYXNzPSJ0ZXh0Ij48YSBocmVmPSI/bz0zLjEiPkZpcnN0IG5hbWU8L2E+PC9kaXY+CiAgIDxkaXYgY2xhc3M9ImNsZWFyIj48L2Rpdj4KPC90aD4KPHRoIHNjb3BlPSJjb2wiICBjbGFzcz0ic29ydGFibGUgY29sdW1uLWxhc3RfbmFtZSI+CiAgIAogICAgIAogICAKICAgPGRpdiBjbGFzcz0idGV4dCI+PGEgaHJlZj0iP289NC4xIj5MYXN0IG5hbWU8L2E+PC9kaXY+CiAgIDxkaXYgY2xhc3M9ImNsZWFyIj48L2Rpdj4KPC90aD4KPHRoIHNjb3BlPSJjb2wiICBjbGFzcz0ic29ydGFibGUgY29sdW1uLWlzX3N0YWZmIj4KICAgCiAgICAgCiAgIAogICA8ZGl2IGNsYXNzPSJ0ZXh0Ij48YSBocmVmPSI/bz01LjEiPlN0YWZmIHN0YXR1czwvYT48L2Rpdj4KICAgPGRpdiBjbGFzcz0iY2xlYXIiPjwvZGl2Pgo8L3RoPgo8L3RyPgo8L3RoZWFkPgo8dGJvZHk+CgoKPHRyIGNsYXNzPSJyb3cxIj48dGQgY2xhc3M9ImFjdGlvbi1jaGVja2JveCI+PGlucHV0IGNsYXNzPSJhY3Rpb24tc2VsZWN0IiBuYW1lPSJfc2VsZWN0ZWRfYWN0aW9uIiB0eXBlPSJjaGVja2JveCIgdmFsdWU9IjIiIC8+PC90ZD48dGggY2xhc3M9ImZpZWxkLXVzZXJuYW1lIj48YSBocmVmPSIvYWRtaW4vYXV0aC91c2VyLzIvY2hhbmdlLyI+ZmFyaGFuPC9hPjwvdGg+PHRkIGNsYXNzPSJmaWVsZC1lbWFpbCI+Jm5ic3A7PC90ZD48dGQgY2xhc3M9ImZpZWxkLWZpcnN0X25hbWUiPiZuYnNwOzwvdGQ+PHRkIGNsYXNzPSJmaWVsZC1sYXN0X25hbWUiPiZuYnNwOzwvdGQ+PHRkIGNsYXNzPSJmaWVsZC1pc19zdGFmZiI+PGltZyBzcmM9Ii9hc3NldHMvYWRtaW4vaW1nL2ljb24tbm8uc3ZnIiBhbHQ9IkZhbHNlIiAvPjwvdGQ+PC90cj4KCgo8dHIgY2xhc3M9InJvdzIiPjx0ZCBjbGFzcz0iYWN0aW9uLWNoZWNrYm94Ij48aW5wdXQgY2xhc3M9ImFjdGlvbi1zZWxlY3QiIG5hbWU9Il9zZWxlY3RlZF9hY3Rpb24iIHR5cGU9ImNoZWNrYm94IiB2YWx1ZT0iMyIgLz48L3RkPjx0aCBjbGFzcz0iZmllbGQtdXNlcm5hbWUiPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL3VzZXIvMy9jaGFuZ2UvIj5mYXJoYW5jb3JwPC9hPjwvdGg+PHRkIGNsYXNzPSJmaWVsZC1lbWFpbCI+Jm5ic3A7PC90ZD48dGQgY2xhc3M9ImZpZWxkLWZpcnN0X25hbWUiPiZuYnNwOzwvdGQ+PHRkIGNsYXNzPSJmaWVsZC1sYXN0X25hbWUiPiZuYnNwOzwvdGQ+PHRkIGNsYXNzPSJmaWVsZC1pc19zdGFmZiI+PGltZyBzcmM9Ii9hc3NldHMvYWRtaW4vaW1nL2ljb24tbm8uc3ZnIiBhbHQ9IkZhbHNlIiAvPjwvdGQ+PC90cj4KCgo8dHIgY2xhc3M9InJvdzEiPjx0ZCBjbGFzcz0iYWN0aW9uLWNoZWNrYm94Ij48aW5wdXQgY2xhc3M9ImFjdGlvbi1zZWxlY3QiIG5hbWU9Il9zZWxlY3RlZF9hY3Rpb24iIHR5cGU9ImNoZWNrYm94IiB2YWx1ZT0iMSIgLz48L3RkPjx0aCBjbGFzcz0iZmllbGQtdXNlcm5hbWUiPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL3VzZXIvMS9jaGFuZ2UvIj5rYXBlPC9hPjwvdGg+PHRkIGNsYXNzPSJmaWVsZC1lbWFpbCI+a2FwZUBrYXBlLmNvbTwvdGQ+PHRkIGNsYXNzPSJmaWVsZC1maXJzdF9uYW1lIj4mbmJzcDs8L3RkPjx0ZCBjbGFzcz0iZmllbGQtbGFzdF9uYW1lIj4mbmJzcDs8L3RkPjx0ZCBjbGFzcz0iZmllbGQtaXNfc3RhZmYiPjxpbWcgc3JjPSIvYXNzZXRzL2FkbWluL2ltZy9pY29uLXllcy5zdmciIGFsdD0iVHJ1ZSIgLz48L3RkPjwvdHI+Cgo8L3Rib2R5Pgo8L3RhYmxlPgo8L2Rpdj4KCgogICAgICAgICAgCiAgICAgIAogICAgICAKCjxwIGNsYXNzPSJwYWdpbmF0b3IiPgoKMyB1c2VycwoKCjwvcD4KCiAgICAgIDwvZm9ybT4KICAgIDwvZGl2PgogIDwvZGl2PgoKICAgICAgICAKICAgICAgICA8YnIgY2xhc3M9ImNsZWFyIiAvPgogICAgPC9kaXY+CiAgICA8IS0tIEVORCBDb250ZW50IC0tPgoKICAgIDxkaXYgaWQ9ImZvb3RlciI+PC9kaXY+CjwvZGl2Pgo8IS0tIEVORCBDb250YWluZXIgLS0+Cgo8L2JvZHk+CjwvaHRtbD4K", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 14:53:53 GMT\", \"Expires\": \"Mon, 27 Mar 2017 14:53:53 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "7014f250-e477-4aaa-9b8d-ee49582491cc", - "fields": { - "request": "215eb497-f1df-4710-a99f-87a9aa6d9dfa", - "status_code": 200, - "raw_body": "W3siaWQiOjEsImNvbXBhbnkiOnsiaWQiOjIsInVzZXIiOnsidXJsIjoiaHR0cDovLzEyNy4wLjAuMTo4MDAwL2FwaS91c2Vycy8zLyIsInVzZXJuYW1lIjoiZmFyaGFuY29ycCIsImVtYWlsIjoiIiwiaXNfc3RhZmYiOmZhbHNlfSwibmFtZSI6ImZhcmhhbmNvcnAiLCJjcmVhdGVkIjoiMjAxNy0wMy0yN1QxNDo1NTo0NC42NzkwMDBaIiwidXBkYXRlZCI6IjIwMTctMDMtMjdUMTQ6NTU6NDQuNjc5MDAwWiIsImRlc2NyaXB0aW9uIjoiZmFyaGFuY29ycCIsInZlcmlmaWVkIjpmYWxzZSwibG9nbyI6bnVsbCwiYWxhbWF0IjpudWxsfSwidmVyaWZpZWQiOmZhbHNlLCJvcGVuX3RpbWUiOiIyMDE3LTAzLTI3VDE1OjIzOjIwWiIsImRlc2NyaXB0aW9uIjoiIiwiY2xvc2VfdGltZSI6IjIwMTctMDMtMjdUMTU6MjM6MjJaIn1d", - "body": "[\n {\n \"close_time\": \"2017-03-27T15:23:22Z\",\n \"company\": {\n \"alamat\": null,\n \"created\": \"2017-03-27T14:55:44.679000Z\",\n \"description\": \"farhancorp\",\n \"id\": 2,\n \"logo\": null,\n \"name\": \"farhancorp\",\n \"updated\": \"2017-03-27T14:55:44.679000Z\",\n \"user\": {\n \"email\": \"\",\n \"is_staff\": false,\n \"url\": \"http://127.0.0.1:8000/api/users/3/\",\n \"username\": \"farhancorp\"\n },\n \"verified\": false\n },\n \"description\": \"\",\n \"id\": 1,\n \"open_time\": \"2017-03-27T15:23:20Z\",\n \"verified\": false\n }\n]", - "encoded_headers": "{\"Content-Type\": \"application/json\", \"Allow\": \"GET, POST, OPTIONS\", \"Vary\": \"Accept\"}" - } -}, -{ - "model": "silk.response", - "pk": "703d3878-fa86-4254-9f8d-74ff49407106", - "fields": { - "request": "23ad71c9-fe4e-4ef3-bd2f-d1b14f138f29", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPkNoYW5nZSB1c2VyIHwgRGphbmdvIHNpdGUgYWRtaW48L3RpdGxlPgo8bGluayByZWw9InN0eWxlc2hlZXQiIHR5cGU9InRleHQvY3NzIiBocmVmPSIvYXNzZXRzL2FkbWluL2Nzcy9iYXNlLmNzcyIgLz4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvZm9ybXMuY3NzIiAvPgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9jb3JlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IvanF1ZXJ5L2pxdWVyeS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvanF1ZXJ5LmluaXQuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2FkbWluL1JlbGF0ZWRPYmplY3RMb29rdXBzLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hY3Rpb25zLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy91cmxpZnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL3ByZXBvcHVsYXRlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IveHJlZ2V4cC94cmVnZXhwLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9TZWxlY3RCb3guanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL1NlbGVjdEZpbHRlcjIuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2NhbGVuZGFyLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hZG1pbi9EYXRlVGltZVNob3J0Y3V0cy5qcyI+PC9zY3JpcHQ+Cgo8bWV0YSBuYW1lPSJyb2JvdHMiIGNvbnRlbnQ9Ik5PTkUsTk9BUkNISVZFIiAvPgo8L2hlYWQ+CgoKPGJvZHkgY2xhc3M9IiBhcHAtYXV0aCBtb2RlbC11c2VyIGNoYW5nZS1mb3JtIgogIGRhdGEtYWRtaW4tdXRjLW9mZnNldD0iMCI+Cgo8IS0tIENvbnRhaW5lciAtLT4KPGRpdiBpZD0iY29udGFpbmVyIj4KCiAgICAKICAgIDwhLS0gSGVhZGVyIC0tPgogICAgPGRpdiBpZD0iaGVhZGVyIj4KICAgICAgICA8ZGl2IGlkPSJicmFuZGluZyI+CiAgICAgICAgCjxoMSBpZD0ic2l0ZS1uYW1lIj48YSBocmVmPSIvYWRtaW4vIj5EamFuZ28gYWRtaW5pc3RyYXRpb248L2E+PC9oMT4KCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgPGRpdiBpZD0idXNlci10b29scyI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgV2VsY29tZSwKICAgICAgICAgICAgICAgIDxzdHJvbmc+a2FwZTwvc3Ryb25nPi4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iLyI+VmlldyBzaXRlPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9wYXNzd29yZF9jaGFuZ2UvIj5DaGFuZ2UgcGFzc3dvcmQ8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2xvZ291dC8iPkxvZyBvdXQ8L2E+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIAogICAgPC9kaXY+CiAgICA8IS0tIEVORCBIZWFkZXIgLS0+CiAgICAKPGRpdiBjbGFzcz0iYnJlYWRjcnVtYnMiPgo8YSBocmVmPSIvYWRtaW4vIj5Ib21lPC9hPgomcnNhcXVvOyA8YSBocmVmPSIvYWRtaW4vYXV0aC8iPkF1dGhlbnRpY2F0aW9uIGFuZCBBdXRob3JpemF0aW9uPC9hPgomcnNhcXVvOyA8YSBocmVmPSIvYWRtaW4vYXV0aC91c2VyLyI+VXNlcnM8L2E+CiZyc2FxdW87IGZhcmhhbgo8L2Rpdj4KCiAgICAKCiAgICAKICAgICAgICAKICAgIAoKICAgIDwhLS0gQ29udGVudCAtLT4KICAgIDxkaXYgaWQ9ImNvbnRlbnQiIGNsYXNzPSJjb2xNIj4KICAgICAgICAKICAgICAgICA8aDE+Q2hhbmdlIHVzZXI8L2gxPgogICAgICAgIDxkaXYgaWQ9ImNvbnRlbnQtbWFpbiI+CgoKICA8dWwgY2xhc3M9Im9iamVjdC10b29scyI+CiAgICAKICAgIDxsaT4KICAgICAgICAKICAgICAgICA8YSBocmVmPSIvYWRtaW4vYXV0aC91c2VyLzIvaGlzdG9yeS8iIGNsYXNzPSJoaXN0b3J5bGluayI+SGlzdG9yeTwvYT4KICAgIDwvbGk+CiAgICAKICAgIAogIDwvdWw+CgoKPGZvcm0gZW5jdHlwZT0ibXVsdGlwYXJ0L2Zvcm0tZGF0YSIgYWN0aW9uPSIiIG1ldGhvZD0icG9zdCIgaWQ9InVzZXJfZm9ybSIgbm92YWxpZGF0ZT48aW5wdXQgdHlwZT0naGlkZGVuJyBuYW1lPSdjc3JmbWlkZGxld2FyZXRva2VuJyB2YWx1ZT0ncThISVFMYmVWemlaNWtpRDhRMzJya1Y4amJGUjh3QWtQZU94MmgzOUl3dG9zc2s1Umh5dWoxQ1NoNkxHc3d3OScgLz4KPGRpdj4KCgoKCgoKCiAgPGZpZWxkc2V0IGNsYXNzPSJtb2R1bGUgYWxpZ25lZCAiPgogICAgCiAgICAKICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImZvcm0tcm93IGZpZWxkLXVzZXJuYW1lIj4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGRpdj4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPGxhYmVsIGNsYXNzPSJyZXF1aXJlZCIgZm9yPSJpZF91c2VybmFtZSI+VXNlcm5hbWU6PC9sYWJlbD4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8aW5wdXQgY2xhc3M9InZUZXh0RmllbGQiIGlkPSJpZF91c2VybmFtZSIgbWF4bGVuZ3RoPSIxNTAiIG5hbWU9InVzZXJuYW1lIiB0eXBlPSJ0ZXh0IiB2YWx1ZT0iZmFyaGFuIiByZXF1aXJlZCAvPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPHAgY2xhc3M9ImhlbHAiPlJlcXVpcmVkLiAxNTAgY2hhcmFjdGVycyBvciBmZXdlci4gTGV0dGVycywgZGlnaXRzIGFuZCBALy4vKy8tL18gb25seS48L3A+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC1wYXNzd29yZCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXY+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxsYWJlbCBmb3I9ImlkX3Bhc3N3b3JkIj5QYXNzd29yZDo8L2xhYmVsPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxkaXYgaWQ9ImlkX3Bhc3N3b3JkIj48c3Ryb25nPmFsZ29yaXRobTwvc3Ryb25nPjogcGJrZGYyX3NoYTI1NiA8c3Ryb25nPml0ZXJhdGlvbnM8L3N0cm9uZz46IDMwMDAwIDxzdHJvbmc+c2FsdDwvc3Ryb25nPjogbnhMSWE3KioqKioqIDxzdHJvbmc+aGFzaDwvc3Ryb25nPjogZjJLUUZIKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKiogPC9kaXY+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8cCBjbGFzcz0iaGVscCI+UmF3IHBhc3N3b3JkcyBhcmUgbm90IHN0b3JlZCwgc28gdGhlcmUgaXMgbm8gd2F5IHRvIHNlZSB0aGlzIHVzZXIncyBwYXNzd29yZCwgYnV0IHlvdSBjYW4gY2hhbmdlIHRoZSBwYXNzd29yZCB1c2luZyA8YSBocmVmPSIuLi9wYXNzd29yZC8iPnRoaXMgZm9ybTwvYT4uPC9wPgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPC9kaXY+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgCjwvZmllbGRzZXQ+CgoKICA8ZmllbGRzZXQgY2xhc3M9Im1vZHVsZSBhbGlnbmVkICI+CiAgICA8aDI+UGVyc29uYWwgaW5mbzwvaDI+CiAgICAKICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImZvcm0tcm93IGZpZWxkLWZpcnN0X25hbWUiPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgZm9yPSJpZF9maXJzdF9uYW1lIj5GaXJzdCBuYW1lOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgPGlucHV0IGNsYXNzPSJ2VGV4dEZpZWxkIiBpZD0iaWRfZmlyc3RfbmFtZSIgbWF4bGVuZ3RoPSIzMCIgbmFtZT0iZmlyc3RfbmFtZSIgdHlwZT0idGV4dCIgLz4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC1sYXN0X25hbWUiPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgZm9yPSJpZF9sYXN0X25hbWUiPkxhc3QgbmFtZTo8L2xhYmVsPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxpbnB1dCBjbGFzcz0idlRleHRGaWVsZCIgaWQ9ImlkX2xhc3RfbmFtZSIgbWF4bGVuZ3RoPSIzMCIgbmFtZT0ibGFzdF9uYW1lIiB0eXBlPSJ0ZXh0IiAvPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDwvZGl2PgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImZvcm0tcm93IGZpZWxkLWVtYWlsIj4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGRpdj4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPGxhYmVsIGZvcj0iaWRfZW1haWwiPkVtYWlsIGFkZHJlc3M6PC9sYWJlbD4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8aW5wdXQgY2xhc3M9InZUZXh0RmllbGQiIGlkPSJpZF9lbWFpbCIgbWF4bGVuZ3RoPSIyNTQiIG5hbWU9ImVtYWlsIiB0eXBlPSJlbWFpbCIgLz4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKPC9maWVsZHNldD4KCgogIDxmaWVsZHNldCBjbGFzcz0ibW9kdWxlIGFsaWduZWQgIj4KICAgIDxoMj5QZXJtaXNzaW9uczwvaDI+CiAgICAKICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImZvcm0tcm93IGZpZWxkLWlzX2FjdGl2ZSI+CiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9ImNoZWNrYm94LXJvdyI+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxpbnB1dCBjaGVja2VkPSJjaGVja2VkIiBpZD0iaWRfaXNfYWN0aXZlIiBuYW1lPSJpc19hY3RpdmUiIHR5cGU9ImNoZWNrYm94IiAvPjxsYWJlbCBjbGFzcz0idkNoZWNrYm94TGFiZWwiIGZvcj0iaWRfaXNfYWN0aXZlIj5BY3RpdmU8L2xhYmVsPgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8cCBjbGFzcz0iaGVscCI+RGVzaWduYXRlcyB3aGV0aGVyIHRoaXMgdXNlciBzaG91bGQgYmUgdHJlYXRlZCBhcyBhY3RpdmUuIFVuc2VsZWN0IHRoaXMgaW5zdGVhZCBvZiBkZWxldGluZyBhY2NvdW50cy48L3A+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC1pc19zdGFmZiI+CiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9ImNoZWNrYm94LXJvdyI+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxpbnB1dCBpZD0iaWRfaXNfc3RhZmYiIG5hbWU9ImlzX3N0YWZmIiB0eXBlPSJjaGVja2JveCIgLz48bGFiZWwgY2xhc3M9InZDaGVja2JveExhYmVsIiBmb3I9ImlkX2lzX3N0YWZmIj5TdGFmZiBzdGF0dXM8L2xhYmVsPgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8cCBjbGFzcz0iaGVscCI+RGVzaWduYXRlcyB3aGV0aGVyIHRoZSB1c2VyIGNhbiBsb2cgaW50byB0aGlzIGFkbWluIHNpdGUuPC9wPgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPC9kaXY+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgCiAgICAgICAgPGRpdiBjbGFzcz0iZm9ybS1yb3cgZmllbGQtaXNfc3VwZXJ1c2VyIj4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGRpdiBjbGFzcz0iY2hlY2tib3gtcm93Ij4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPGlucHV0IGlkPSJpZF9pc19zdXBlcnVzZXIiIG5hbWU9ImlzX3N1cGVydXNlciIgdHlwZT0iY2hlY2tib3giIC8+PGxhYmVsIGNsYXNzPSJ2Q2hlY2tib3hMYWJlbCIgZm9yPSJpZF9pc19zdXBlcnVzZXIiPlN1cGVydXNlciBzdGF0dXM8L2xhYmVsPgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8cCBjbGFzcz0iaGVscCI+RGVzaWduYXRlcyB0aGF0IHRoaXMgdXNlciBoYXMgYWxsIHBlcm1pc3Npb25zIHdpdGhvdXQgZXhwbGljaXRseSBhc3NpZ25pbmcgdGhlbS48L3A+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC1ncm91cHMiPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgZm9yPSJpZF9ncm91cHMiPkdyb3Vwczo8L2xhYmVsPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIAo8ZGl2IGNsYXNzPSJyZWxhdGVkLXdpZGdldC13cmFwcGVyIj4KICAgIDxzZWxlY3QgbXVsdGlwbGU9Im11bHRpcGxlIiBjbGFzcz0ic2VsZWN0ZmlsdGVyIiBkYXRhLWZpZWxkLW5hbWU9Imdyb3VwcyIgZGF0YS1pcy1zdGFja2VkPSIwIiBpZD0iaWRfZ3JvdXBzIiBuYW1lPSJncm91cHMiPgo8L3NlbGVjdD4KICAgIAogICAgICAgIAogICAgICAgIAogICAgICAgIDxhIGNsYXNzPSJyZWxhdGVkLXdpZGdldC13cmFwcGVyLWxpbmsgYWRkLXJlbGF0ZWQiIGlkPSJhZGRfaWRfZ3JvdXBzIgogICAgICAgICAgICBocmVmPSIvYWRtaW4vYXV0aC9ncm91cC9hZGQvP190b19maWVsZD1pZCZhbXA7X3BvcHVwPTEiCiAgICAgICAgICAgIHRpdGxlPSJBZGQgYW5vdGhlciBncm91cCI+CiAgICAgICAgICAgIDxpbWcgc3JjPSIvYXNzZXRzL2FkbWluL2ltZy9pY29uLWFkZGxpbmsuc3ZnIiBhbHQ9IkFkZCIvPgogICAgICAgIDwvYT4KICAgICAgICAKICAgICAgICAKICAgIAo8L2Rpdj4KCiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8cCBjbGFzcz0iaGVscCI+VGhlIGdyb3VwcyB0aGlzIHVzZXIgYmVsb25ncyB0by4gQSB1c2VyIHdpbGwgZ2V0IGFsbCBwZXJtaXNzaW9ucyBncmFudGVkIHRvIGVhY2ggb2YgdGhlaXIgZ3JvdXBzLiBIb2xkIGRvd24gIkNvbnRyb2wiLCBvciAiQ29tbWFuZCIgb24gYSBNYWMsIHRvIHNlbGVjdCBtb3JlIHRoYW4gb25lLjwvcD4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDwvZGl2PgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImZvcm0tcm93IGZpZWxkLXVzZXJfcGVybWlzc2lvbnMiPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgZm9yPSJpZF91c2VyX3Blcm1pc3Npb25zIj5Vc2VyIHBlcm1pc3Npb25zOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgCjxkaXYgY2xhc3M9InJlbGF0ZWQtd2lkZ2V0LXdyYXBwZXIiPgogICAgPHNlbGVjdCBtdWx0aXBsZT0ibXVsdGlwbGUiIGNsYXNzPSJzZWxlY3RmaWx0ZXIiIGRhdGEtZmllbGQtbmFtZT0idXNlciBwZXJtaXNzaW9ucyIgZGF0YS1pcy1zdGFja2VkPSIwIiBpZD0iaWRfdXNlcl9wZXJtaXNzaW9ucyIgbmFtZT0idXNlcl9wZXJtaXNzaW9ucyI+CjxvcHRpb24gdmFsdWU9IjEiPmFkbWluIHwgbG9nIGVudHJ5IHwgQ2FuIGFkZCBsb2cgZW50cnk8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMiI+YWRtaW4gfCBsb2cgZW50cnkgfCBDYW4gY2hhbmdlIGxvZyBlbnRyeTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIzIj5hZG1pbiB8IGxvZyBlbnRyeSB8IENhbiBkZWxldGUgbG9nIGVudHJ5PC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjEwIj5hdXRoIHwgZ3JvdXAgfCBDYW4gYWRkIGdyb3VwPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjExIj5hdXRoIHwgZ3JvdXAgfCBDYW4gY2hhbmdlIGdyb3VwPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjEyIj5hdXRoIHwgZ3JvdXAgfCBDYW4gZGVsZXRlIGdyb3VwPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjQiPmF1dGggfCBwZXJtaXNzaW9uIHwgQ2FuIGFkZCBwZXJtaXNzaW9uPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjUiPmF1dGggfCBwZXJtaXNzaW9uIHwgQ2FuIGNoYW5nZSBwZXJtaXNzaW9uPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjYiPmF1dGggfCBwZXJtaXNzaW9uIHwgQ2FuIGRlbGV0ZSBwZXJtaXNzaW9uPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjciPmF1dGggfCB1c2VyIHwgQ2FuIGFkZCB1c2VyPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjgiPmF1dGggfCB1c2VyIHwgQ2FuIGNoYW5nZSB1c2VyPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjkiPmF1dGggfCB1c2VyIHwgQ2FuIGRlbGV0ZSB1c2VyPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjEzIj5jb250ZW50dHlwZXMgfCBjb250ZW50IHR5cGUgfCBDYW4gYWRkIGNvbnRlbnQgdHlwZTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIxNCI+Y29udGVudHR5cGVzIHwgY29udGVudCB0eXBlIHwgQ2FuIGNoYW5nZSBjb250ZW50IHR5cGU8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMTUiPmNvbnRlbnR0eXBlcyB8IGNvbnRlbnQgdHlwZSB8IENhbiBkZWxldGUgY29udGVudCB0eXBlPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjI1Ij5jb3JlIHwgYXBwbGljYXRpb24gfCBDYW4gYWRkIGFwcGxpY2F0aW9uPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjI2Ij5jb3JlIHwgYXBwbGljYXRpb24gfCBDYW4gY2hhbmdlIGFwcGxpY2F0aW9uPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjI3Ij5jb3JlIHwgYXBwbGljYXRpb24gfCBDYW4gZGVsZXRlIGFwcGxpY2F0aW9uPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjE5Ij5jb3JlIHwgY29tcGFueSB8IENhbiBhZGQgY29tcGFueTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIyMCI+Y29yZSB8IGNvbXBhbnkgfCBDYW4gY2hhbmdlIGNvbXBhbnk8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMjEiPmNvcmUgfCBjb21wYW55IHwgQ2FuIGRlbGV0ZSBjb21wYW55PC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjIyIj5jb3JlIHwgc3R1ZGVudCB8IENhbiBhZGQgc3R1ZGVudDwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIyMyI+Y29yZSB8IHN0dWRlbnQgfCBDYW4gY2hhbmdlIHN0dWRlbnQ8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMjQiPmNvcmUgfCBzdHVkZW50IHwgQ2FuIGRlbGV0ZSBzdHVkZW50PC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjI4Ij5jb3JlIHwgc3VwZXJ2aXNvciB8IENhbiBhZGQgc3VwZXJ2aXNvcjwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIyOSI+Y29yZSB8IHN1cGVydmlzb3IgfCBDYW4gY2hhbmdlIHN1cGVydmlzb3I8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMzAiPmNvcmUgfCBzdXBlcnZpc29yIHwgQ2FuIGRlbGV0ZSBzdXBlcnZpc29yPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjMxIj5jb3JlIHwgdmFjYW5jeSB8IENhbiBhZGQgdmFjYW5jeTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIzMiI+Y29yZSB8IHZhY2FuY3kgfCBDYW4gY2hhbmdlIHZhY2FuY3k8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMzMiPmNvcmUgfCB2YWNhbmN5IHwgQ2FuIGRlbGV0ZSB2YWNhbmN5PC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjE2Ij5zZXNzaW9ucyB8IHNlc3Npb24gfCBDYW4gYWRkIHNlc3Npb248L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMTciPnNlc3Npb25zIHwgc2Vzc2lvbiB8IENhbiBjaGFuZ2Ugc2Vzc2lvbjwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIxOCI+c2Vzc2lvbnMgfCBzZXNzaW9uIHwgQ2FuIGRlbGV0ZSBzZXNzaW9uPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjQzIj5zaWxrIHwgcHJvZmlsZSB8IENhbiBhZGQgcHJvZmlsZTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSI0NCI+c2lsayB8IHByb2ZpbGUgfCBDYW4gY2hhbmdlIHByb2ZpbGU8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iNDUiPnNpbGsgfCBwcm9maWxlIHwgQ2FuIGRlbGV0ZSBwcm9maWxlPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjM0Ij5zaWxrIHwgcmVxdWVzdCB8IENhbiBhZGQgcmVxdWVzdDwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIzNSI+c2lsayB8IHJlcXVlc3QgfCBDYW4gY2hhbmdlIHJlcXVlc3Q8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMzYiPnNpbGsgfCByZXF1ZXN0IHwgQ2FuIGRlbGV0ZSByZXF1ZXN0PC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjQwIj5zaWxrIHwgcmVzcG9uc2UgfCBDYW4gYWRkIHJlc3BvbnNlPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjQxIj5zaWxrIHwgcmVzcG9uc2UgfCBDYW4gY2hhbmdlIHJlc3BvbnNlPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjQyIj5zaWxrIHwgcmVzcG9uc2UgfCBDYW4gZGVsZXRlIHJlc3BvbnNlPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjM3Ij5zaWxrIHwgc3FsIHF1ZXJ5IHwgQ2FuIGFkZCBzcWwgcXVlcnk8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMzgiPnNpbGsgfCBzcWwgcXVlcnkgfCBDYW4gY2hhbmdlIHNxbCBxdWVyeTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIzOSI+c2lsayB8IHNxbCBxdWVyeSB8IENhbiBkZWxldGUgc3FsIHF1ZXJ5PC9vcHRpb24+Cjwvc2VsZWN0PgogICAgCiAgICAgICAgCiAgICAgICAgCiAgICAgICAgCiAgICAKPC9kaXY+CgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPHAgY2xhc3M9ImhlbHAiPlNwZWNpZmljIHBlcm1pc3Npb25zIGZvciB0aGlzIHVzZXIuIEhvbGQgZG93biAiQ29udHJvbCIsIG9yICJDb21tYW5kIiBvbiBhIE1hYywgdG8gc2VsZWN0IG1vcmUgdGhhbiBvbmUuPC9wPgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPC9kaXY+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgCjwvZmllbGRzZXQ+CgoKICA8ZmllbGRzZXQgY2xhc3M9Im1vZHVsZSBhbGlnbmVkICI+CiAgICA8aDI+SW1wb3J0YW50IGRhdGVzPC9oMj4KICAgIAogICAgCiAgICAgICAgPGRpdiBjbGFzcz0iZm9ybS1yb3cgZmllbGQtbGFzdF9sb2dpbiI+CiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXY+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxsYWJlbCBmb3I9ImlkX2xhc3RfbG9naW5fMCI+TGFzdCBsb2dpbjo8L2xhYmVsPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxwIGNsYXNzPSJkYXRldGltZSI+RGF0ZTogPGlucHV0IGNsYXNzPSJ2RGF0ZUZpZWxkIiBpZD0iaWRfbGFzdF9sb2dpbl8wIiBuYW1lPSJsYXN0X2xvZ2luXzAiIHNpemU9IjEwIiB0eXBlPSJ0ZXh0IiAvPjxiciAvPlRpbWU6IDxpbnB1dCBjbGFzcz0idlRpbWVGaWVsZCIgaWQ9ImlkX2xhc3RfbG9naW5fMSIgbmFtZT0ibGFzdF9sb2dpbl8xIiBzaXplPSI4IiB0eXBlPSJ0ZXh0IiAvPjwvcD4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC1kYXRlX2pvaW5lZCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXY+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxsYWJlbCBjbGFzcz0icmVxdWlyZWQiIGZvcj0iaWRfZGF0ZV9qb2luZWRfMCI+RGF0ZSBqb2luZWQ6PC9sYWJlbD4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8cCBjbGFzcz0iZGF0ZXRpbWUiPkRhdGU6IDxpbnB1dCBjbGFzcz0idkRhdGVGaWVsZCIgaWQ9ImlkX2RhdGVfam9pbmVkXzAiIG5hbWU9ImRhdGVfam9pbmVkXzAiIHNpemU9IjEwIiB0eXBlPSJ0ZXh0IiB2YWx1ZT0iMjAxNy0wMy0yNyIgcmVxdWlyZWQgLz48YnIgLz5UaW1lOiA8aW5wdXQgY2xhc3M9InZUaW1lRmllbGQiIGlkPSJpZF9kYXRlX2pvaW5lZF8xIiBuYW1lPSJkYXRlX2pvaW5lZF8xIiBzaXplPSI4IiB0eXBlPSJ0ZXh0IiB2YWx1ZT0iMTQ6NTI6MzQiIHJlcXVpcmVkIC8+PC9wPjxpbnB1dCBpZD0iaW5pdGlhbC1pZF9kYXRlX2pvaW5lZF8wIiBuYW1lPSJpbml0aWFsLWRhdGVfam9pbmVkXzAiIHR5cGU9ImhpZGRlbiIgdmFsdWU9IjIwMTctMDMtMjciIC8+PGlucHV0IGlkPSJpbml0aWFsLWlkX2RhdGVfam9pbmVkXzEiIG5hbWU9ImluaXRpYWwtZGF0ZV9qb2luZWRfMSIgdHlwZT0iaGlkZGVuIiB2YWx1ZT0iMTQ6NTI6MzQiIC8+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPC9kaXY+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgCjwvZmllbGRzZXQ+CgoKCgoKCgoKCgoKCgo8ZGl2IGNsYXNzPSJzdWJtaXQtcm93Ij4KPGlucHV0IHR5cGU9InN1Ym1pdCIgdmFsdWU9IlNhdmUiIGNsYXNzPSJkZWZhdWx0IiBuYW1lPSJfc2F2ZSIgLz4KCiAgICAKICAgIDxwIGNsYXNzPSJkZWxldGVsaW5rLWJveCI+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8yL2RlbGV0ZS8iIGNsYXNzPSJkZWxldGVsaW5rIj5EZWxldGU8L2E+PC9wPgoKCjxpbnB1dCB0eXBlPSJzdWJtaXQiIHZhbHVlPSJTYXZlIGFuZCBhZGQgYW5vdGhlciIgbmFtZT0iX2FkZGFub3RoZXIiIC8+CjxpbnB1dCB0eXBlPSJzdWJtaXQiIHZhbHVlPSJTYXZlIGFuZCBjb250aW51ZSBlZGl0aW5nIiBuYW1lPSJfY29udGludWUiIC8+CjwvZGl2PgoKCgogICAgPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiCiAgICAgICAgICAgIGlkPSJkamFuZ28tYWRtaW4tZm9ybS1hZGQtY29uc3RhbnRzIgogICAgICAgICAgICBzcmM9Ii9hc3NldHMvYWRtaW4vanMvY2hhbmdlX2Zvcm0uanMiCiAgICAgICAgICAgID4KICAgIDwvc2NyaXB0PgoKCgoKPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiCiAgICAgICAgaWQ9ImRqYW5nby1hZG1pbi1wcmVwb3B1bGF0ZWQtZmllbGRzLWNvbnN0YW50cyIKICAgICAgICBzcmM9Ii9hc3NldHMvYWRtaW4vanMvcHJlcG9wdWxhdGVfaW5pdC5qcyIKICAgICAgICBkYXRhLXByZXBvcHVsYXRlZC1maWVsZHM9IltdIj4KPC9zY3JpcHQ+CgoKPC9kaXY+CjwvZm9ybT48L2Rpdj4KCiAgICAgICAgCiAgICAgICAgPGJyIGNsYXNzPSJjbGVhciIgLz4KICAgIDwvZGl2PgogICAgPCEtLSBFTkQgQ29udGVudCAtLT4KCiAgICA8ZGl2IGlkPSJmb290ZXIiPjwvZGl2Pgo8L2Rpdj4KPCEtLSBFTkQgQ29udGFpbmVyIC0tPgoKPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 15:57:04 GMT\", \"Expires\": \"Mon, 27 Mar 2017 15:57:04 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "70c9aa9f-41c5-4146-bea6-db9b410d4e4f", - "fields": { - "request": "a575cd2b-7241-4c46-a960-cd34c20c7179", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "72b282ba-7d51-41a4-b2f9-9d46ebc8f93f", - "fields": { - "request": "1db01b33-3c75-482d-aa0b-43c24e5de1c7", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPlNpdGUgYWRtaW5pc3RyYXRpb24gfCBEamFuZ28gc2l0ZSBhZG1pbjwvdGl0bGU+CjxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvYWRtaW4vY3NzL2Jhc2UuY3NzIiAvPgo8bGluayByZWw9InN0eWxlc2hlZXQiIHR5cGU9InRleHQvY3NzIiBocmVmPSIvYXNzZXRzL2FkbWluL2Nzcy9kYXNoYm9hcmQuY3NzIiAvPgoKCjxtZXRhIG5hbWU9InJvYm90cyIgY29udGVudD0iTk9ORSxOT0FSQ0hJVkUiIC8+CjwvaGVhZD4KCgo8Ym9keSBjbGFzcz0iIGRhc2hib2FyZCIKICBkYXRhLWFkbWluLXV0Yy1vZmZzZXQ9IjAiPgoKPCEtLSBDb250YWluZXIgLS0+CjxkaXYgaWQ9ImNvbnRhaW5lciI+CgogICAgCiAgICA8IS0tIEhlYWRlciAtLT4KICAgIDxkaXYgaWQ9ImhlYWRlciI+CiAgICAgICAgPGRpdiBpZD0iYnJhbmRpbmciPgogICAgICAgIAo8aDEgaWQ9InNpdGUtbmFtZSI+PGEgaHJlZj0iL2FkbWluLyI+RGphbmdvIGFkbWluaXN0cmF0aW9uPC9hPjwvaDE+CgogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIDxkaXYgaWQ9InVzZXItdG9vbHMiPgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIFdlbGNvbWUsCiAgICAgICAgICAgICAgICA8c3Ryb25nPmthcGU8L3N0cm9uZz4uCiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii8iPlZpZXcgc2l0ZTwvYT4gLwogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vcGFzc3dvcmRfY2hhbmdlLyI+Q2hhbmdlIHBhc3N3b3JkPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9sb2dvdXQvIj5Mb2cgb3V0PC9hPgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgICAgICAKICAgICAgICAKICAgICAgICAKICAgIDwvZGl2PgogICAgPCEtLSBFTkQgSGVhZGVyIC0tPgogICAgCiAgICAKCiAgICAKICAgICAgICAKICAgIAoKICAgIDwhLS0gQ29udGVudCAtLT4KICAgIDxkaXYgaWQ9ImNvbnRlbnQiIGNsYXNzPSJjb2xNUyI+CiAgICAgICAgCiAgICAgICAgPGgxPlNpdGUgYWRtaW5pc3RyYXRpb248L2gxPgogICAgICAgIAo8ZGl2IGlkPSJjb250ZW50LW1haW4iPgoKCiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJhcHAtYXV0aCBtb2R1bGUiPgogICAgICAgIDx0YWJsZT4KICAgICAgICA8Y2FwdGlvbj4KICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2F1dGgvIiBjbGFzcz0ic2VjdGlvbiIgdGl0bGU9Ik1vZGVscyBpbiB0aGUgQXV0aGVudGljYXRpb24gYW5kIEF1dGhvcml6YXRpb24gYXBwbGljYXRpb24iPkF1dGhlbnRpY2F0aW9uIGFuZCBBdXRob3JpemF0aW9uPC9hPgogICAgICAgIDwvY2FwdGlvbj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1ncm91cCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL2dyb3VwLyI+R3JvdXBzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvZ3JvdXAvYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL2dyb3VwLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC11c2VyIj4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8iPlVzZXJzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgPC90YWJsZT4KICAgICAgICA8L2Rpdj4KICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImFwcC1jb3JlIG1vZHVsZSI+CiAgICAgICAgPHRhYmxlPgogICAgICAgIDxjYXB0aW9uPgogICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS8iIGNsYXNzPSJzZWN0aW9uIiB0aXRsZT0iTW9kZWxzIGluIHRoZSBDb3JlIGFwcGxpY2F0aW9uIj5Db3JlPC9hPgogICAgICAgIDwvY2FwdGlvbj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1hcHBsaWNhdGlvbiI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL2FwcGxpY2F0aW9uLyI+QXBwbGljYXRpb25zPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvYXBwbGljYXRpb24vYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL2FwcGxpY2F0aW9uLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1jb21wYW55Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8iPkNvbXBhbnlzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgICAgIDx0ciBjbGFzcz0ibW9kZWwtc3R1ZGVudCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvIj5TdHVkZW50czwvYT48L3RoPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvIiBjbGFzcz0iY2hhbmdlbGluayI+Q2hhbmdlPC9hPjwvdGQ+CiAgICAgICAgICAgIAogICAgICAgICAgICA8L3RyPgogICAgICAgIAogICAgICAgICAgICA8dHIgY2xhc3M9Im1vZGVsLXN1cGVydmlzb3IiPgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0aCBzY29wZT0icm93Ij48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yLyI+U3VwZXJ2aXNvcnM8L2E+PC90aD4KICAgICAgICAgICAgCgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0ZD48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yL2FkZC8iIGNsYXNzPSJhZGRsaW5rIj5BZGQ8L2E+PC90ZD4KICAgICAgICAgICAgCgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0ZD48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC12YWNhbmN5Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS8iPlZhY2FuY3lzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgPC90YWJsZT4KICAgICAgICA8L2Rpdj4KICAgIAoKPC9kaXY+CgogICAgICAgIAo8ZGl2IGlkPSJjb250ZW50LXJlbGF0ZWQiPgogICAgPGRpdiBjbGFzcz0ibW9kdWxlIiBpZD0icmVjZW50LWFjdGlvbnMtbW9kdWxlIj4KICAgICAgICA8aDI+UmVjZW50IGFjdGlvbnM8L2gyPgogICAgICAgIDxoMz5NeSBhY3Rpb25zPC9oMz4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgPHVsIGNsYXNzPSJhY3Rpb25saXN0Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaSBjbGFzcz0iYWRkbGluayI+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS9hcHBsaWNhdGlvbi8xL2NoYW5nZS8iPkFwcGxpY2F0aW9uIG9iamVjdDwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5BcHBsaWNhdGlvbjwvc3Bhbj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgICAgPGxpIGNsYXNzPSJhZGRsaW5rIj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9jb3JlL3ZhY2FuY3kvMS9jaGFuZ2UvIj5WYWNhbmN5IG9iamVjdDwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5WYWNhbmN5PC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8bGkgY2xhc3M9ImFkZGxpbmsiPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2NvcmUvc3VwZXJ2aXNvci8xL2NoYW5nZS8iPlN1cGVydmlzb3Igb2JqZWN0PC9hPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YnIvPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9Im1pbmkgcXVpZXQiPlN1cGVydmlzb3I8L3NwYW4+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgPC9saT4KICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaSBjbGFzcz0iYWRkbGluayI+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS9zdHVkZW50LzEvY2hhbmdlLyI+U3R1ZGVudCBvYmplY3Q8L2E+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxici8+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz0ibWluaSBxdWlldCI+U3R1ZGVudDwvc3Bhbj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgICAgPGxpIGNsYXNzPSJhZGRsaW5rIj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9jb3JlL2NvbXBhbnkvMi9jaGFuZ2UvIj5Db21wYW55IG9iamVjdDwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5Db21wYW55PC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8bGkgY2xhc3M9ImRlbGV0ZWxpbmsiPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgQ29tcGFueSBvYmplY3QKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5Db21wYW55PC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8bGkgY2xhc3M9ImFkZGxpbmsiPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci80L2NoYW5nZS8iPmZhcmhhbnN1cGVyPC9hPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YnIvPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9Im1pbmkgcXVpZXQiPlVzZXI8L3NwYW4+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgPC9saT4KICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaSBjbGFzcz0iYWRkbGluayI+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vYXV0aC91c2VyLzMvY2hhbmdlLyI+ZmFyaGFuY29ycDwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5Vc2VyPC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8bGkgY2xhc3M9ImFkZGxpbmsiPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8yL2NoYW5nZS8iPmZhcmhhbjwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5Vc2VyPC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8bGkgY2xhc3M9ImFkZGxpbmsiPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8xL2NoYW5nZS8iPkNvbXBhbnkgb2JqZWN0PC9hPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YnIvPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9Im1pbmkgcXVpZXQiPkNvbXBhbnk8L3NwYW4+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgPC9saT4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdWw+CiAgICAgICAgICAgIAogICAgPC9kaXY+CjwvZGl2PgoKICAgICAgICA8YnIgY2xhc3M9ImNsZWFyIiAvPgogICAgPC9kaXY+CiAgICA8IS0tIEVORCBDb250ZW50IC0tPgoKICAgIDxkaXYgaWQ9ImZvb3RlciI+PC9kaXY+CjwvZGl2Pgo8IS0tIEVORCBDb250YWluZXIgLS0+Cgo8L2JvZHk+CjwvaHRtbD4K", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 15:30:55 GMT\", \"Expires\": \"Mon, 27 Mar 2017 15:30:55 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\"}" - } -}, -{ - "model": "silk.response", - "pk": "733daf58-2066-4126-b4e0-492f0449f449", - "fields": { - "request": "471a4afb-bc3c-4eba-8397-a7f47c5ffe1a", - "status_code": 404, - "raw_body": "eyJkZXRhaWwiOiJOb3QgZm91bmQuIn0=", - "body": "{\n \"detail\": \"Not found.\"\n}", - "encoded_headers": "{\"Content-Type\": \"application/json\", \"Allow\": \"POST, OPTIONS\", \"Vary\": \"Accept\"}" - } -}, -{ - "model": "silk.response", - "pk": "7389ddcf-7597-4cae-971a-0f5b4f7c5b45", - "fields": { - "request": "33a72dd2-78e7-43cc-b777-a352a3ea9ef8", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPlNlbGVjdCBhcHBsaWNhdGlvbiB0byBjaGFuZ2UgfCBEamFuZ28gc2l0ZSBhZG1pbjwvdGl0bGU+CjxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvYWRtaW4vY3NzL2Jhc2UuY3NzIiAvPgoKICAKICA8bGluayByZWw9InN0eWxlc2hlZXQiIHR5cGU9InRleHQvY3NzIiBocmVmPSIvYXNzZXRzL2FkbWluL2Nzcy9jaGFuZ2VsaXN0cy5jc3MiIC8+CiAgCiAgCiAgICA8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYWRtaW4vanNpMThuLyI+PC9zY3JpcHQ+CiAgCiAgCiAgCgoKCgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2NvcmUuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL3ZlbmRvci9qcXVlcnkvanF1ZXJ5LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9qcXVlcnkuaW5pdC5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvYWRtaW4vUmVsYXRlZE9iamVjdExvb2t1cHMuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2FjdGlvbnMuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL3VybGlmeS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvcHJlcG9wdWxhdGUuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL3ZlbmRvci94cmVnZXhwL3hyZWdleHAuanMiPjwvc2NyaXB0PgoKPG1ldGEgbmFtZT0icm9ib3RzIiBjb250ZW50PSJOT05FLE5PQVJDSElWRSIgLz4KPC9oZWFkPgoKCjxib2R5IGNsYXNzPSIgYXBwLWNvcmUgbW9kZWwtYXBwbGljYXRpb24gY2hhbmdlLWxpc3QiCiAgZGF0YS1hZG1pbi11dGMtb2Zmc2V0PSIwIj4KCjwhLS0gQ29udGFpbmVyIC0tPgo8ZGl2IGlkPSJjb250YWluZXIiPgoKICAgIAogICAgPCEtLSBIZWFkZXIgLS0+CiAgICA8ZGl2IGlkPSJoZWFkZXIiPgogICAgICAgIDxkaXYgaWQ9ImJyYW5kaW5nIj4KICAgICAgICAKPGgxIGlkPSJzaXRlLW5hbWUiPjxhIGhyZWY9Ii9hZG1pbi8iPkRqYW5nbyBhZG1pbmlzdHJhdGlvbjwvYT48L2gxPgoKICAgICAgICA8L2Rpdj4KICAgICAgICAKICAgICAgICAKICAgICAgICA8ZGl2IGlkPSJ1c2VyLXRvb2xzIj4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICBXZWxjb21lLAogICAgICAgICAgICAgICAgPHN0cm9uZz5rYXBlPC9zdHJvbmc+LgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvIj5WaWV3IHNpdGU8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL3Bhc3N3b3JkX2NoYW5nZS8iPkNoYW5nZSBwYXNzd29yZDwvYT4gLwogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vbG9nb3V0LyI+TG9nIG91dDwvYT4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgCiAgICA8L2Rpdj4KICAgIDwhLS0gRU5EIEhlYWRlciAtLT4KICAgIAo8ZGl2IGNsYXNzPSJicmVhZGNydW1icyI+CjxhIGhyZWY9Ii9hZG1pbi8iPkhvbWU8L2E+CiZyc2FxdW87IDxhIGhyZWY9Ii9hZG1pbi9jb3JlLyI+Q29yZTwvYT4KJnJzYXF1bzsgQXBwbGljYXRpb25zCjwvZGl2PgoKICAgIAoKICAgIAogICAgICAgIAogICAgICAgIDx1bCBjbGFzcz0ibWVzc2FnZWxpc3QiPgogICAgICAgICAgPGxpIGNsYXNzPSJzdWNjZXNzIj5UaGUgYXBwbGljYXRpb24gIjxhIGhyZWY9Ii9hZG1pbi9jb3JlL2FwcGxpY2F0aW9uLzEvY2hhbmdlLyI+QXBwbGljYXRpb24gb2JqZWN0PC9hPiIgd2FzIGFkZGVkIHN1Y2Nlc3NmdWxseS48L2xpPgogICAgICAgIDwvdWw+CiAgICAgICAgCiAgICAKCiAgICA8IS0tIENvbnRlbnQgLS0+CiAgICA8ZGl2IGlkPSJjb250ZW50IiBjbGFzcz0iZmxleCI+CiAgICAgICAgCiAgICAgICAgPGgxPlNlbGVjdCBhcHBsaWNhdGlvbiB0byBjaGFuZ2U8L2gxPgogICAgICAgIAogIDxkaXYgaWQ9ImNvbnRlbnQtbWFpbiI+CiAgICAKICAgICAgICA8dWwgY2xhc3M9Im9iamVjdC10b29scyI+CiAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaT4KICAgICAgICAgICAgICAKICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS9hcHBsaWNhdGlvbi9hZGQvIiBjbGFzcz0iYWRkbGluayI+CiAgICAgICAgICAgICAgICBBZGQgYXBwbGljYXRpb24KICAgICAgICAgICAgICA8L2E+CiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgCiAgICAgICAgPC91bD4KICAgIAogICAgCiAgICA8ZGl2IGNsYXNzPSJtb2R1bGUiIGlkPSJjaGFuZ2VsaXN0Ij4KICAgICAgCgoKICAgICAgCgoKICAgICAgCiAgICAgICAgCiAgICAgIAoKICAgICAgPGZvcm0gaWQ9ImNoYW5nZWxpc3QtZm9ybSIgbWV0aG9kPSJwb3N0IiBub3ZhbGlkYXRlPjxpbnB1dCB0eXBlPSdoaWRkZW4nIG5hbWU9J2NzcmZtaWRkbGV3YXJldG9rZW4nIHZhbHVlPSdpMVFCSFlUN1p2Mmx1MlcxTTEzcUJaeHFKTmhNYUFLN0g3WHFUdUwyTXNkS1JhWXR2c3lTdEdlYUhJbkJ1QUdXJyAvPgogICAgICAKCiAgICAgIAogICAgICAgICAgCjxkaXYgY2xhc3M9ImFjdGlvbnMiPgogICAgPGxhYmVsPkFjdGlvbjogPHNlbGVjdCBuYW1lPSJhY3Rpb24iIHJlcXVpcmVkPgo8b3B0aW9uIHZhbHVlPSIiIHNlbGVjdGVkPSJzZWxlY3RlZCI+LS0tLS0tLS0tPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9ImRlbGV0ZV9zZWxlY3RlZCI+RGVsZXRlIHNlbGVjdGVkIGFwcGxpY2F0aW9uczwvb3B0aW9uPgo8L3NlbGVjdD48L2xhYmVsPjxpbnB1dCBjbGFzcz0ic2VsZWN0LWFjcm9zcyIgbmFtZT0ic2VsZWN0X2Fjcm9zcyIgdHlwZT0iaGlkZGVuIiB2YWx1ZT0iMCIgLz4KICAgIDxidXR0b24gdHlwZT0ic3VibWl0IiBjbGFzcz0iYnV0dG9uIiB0aXRsZT0iUnVuIHRoZSBzZWxlY3RlZCBhY3Rpb24iIG5hbWU9ImluZGV4IiB2YWx1ZT0iMCI+R288L2J1dHRvbj4KICAgIAogICAgICAgIDxzcGFuIGNsYXNzPSJhY3Rpb24tY291bnRlciIgZGF0YS1hY3Rpb25zLWljbnQ9IjEiPjAgb2YgMSBzZWxlY3RlZDwvc3Bhbj4KICAgICAgICAKICAgIAo8L2Rpdj4KCiAgICAgICAgICAKCgo8ZGl2IGNsYXNzPSJyZXN1bHRzIj4KPHRhYmxlIGlkPSJyZXN1bHRfbGlzdCI+Cjx0aGVhZD4KPHRyPgoKPHRoIHNjb3BlPSJjb2wiICBjbGFzcz0iYWN0aW9uLWNoZWNrYm94LWNvbHVtbiI+CiAgIAogICA8ZGl2IGNsYXNzPSJ0ZXh0Ij48c3Bhbj48aW5wdXQgdHlwZT0iY2hlY2tib3giIGlkPSJhY3Rpb24tdG9nZ2xlIiAvPjwvc3Bhbj48L2Rpdj4KICAgPGRpdiBjbGFzcz0iY2xlYXIiPjwvZGl2Pgo8L3RoPgo8dGggc2NvcGU9ImNvbCIgIGNsYXNzPSJjb2x1bW4tX19zdHJfXyI+CiAgIAogICA8ZGl2IGNsYXNzPSJ0ZXh0Ij48c3Bhbj5BcHBsaWNhdGlvbjwvc3Bhbj48L2Rpdj4KICAgPGRpdiBjbGFzcz0iY2xlYXIiPjwvZGl2Pgo8L3RoPgo8L3RyPgo8L3RoZWFkPgo8dGJvZHk+CgoKPHRyIGNsYXNzPSJyb3cxIj48dGQgY2xhc3M9ImFjdGlvbi1jaGVja2JveCI+PGlucHV0IGNsYXNzPSJhY3Rpb24tc2VsZWN0IiBuYW1lPSJfc2VsZWN0ZWRfYWN0aW9uIiB0eXBlPSJjaGVja2JveCIgdmFsdWU9IjEiIC8+PC90ZD48dGggY2xhc3M9ImZpZWxkLV9fc3RyX18iPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL2FwcGxpY2F0aW9uLzEvY2hhbmdlLyI+QXBwbGljYXRpb24gb2JqZWN0PC9hPjwvdGg+PC90cj4KCjwvdGJvZHk+CjwvdGFibGU+CjwvZGl2PgoKCiAgICAgICAgICAKICAgICAgCiAgICAgIAoKPHAgY2xhc3M9InBhZ2luYXRvciI+CgoxIGFwcGxpY2F0aW9uCgoKPC9wPgoKICAgICAgPC9mb3JtPgogICAgPC9kaXY+CiAgPC9kaXY+CgogICAgICAgIAogICAgICAgIDxiciBjbGFzcz0iY2xlYXIiIC8+CiAgICA8L2Rpdj4KICAgIDwhLS0gRU5EIENvbnRlbnQgLS0+CgogICAgPGRpdiBpZD0iZm9vdGVyIj48L2Rpdj4KPC9kaXY+CjwhLS0gRU5EIENvbnRhaW5lciAtLT4KCjwvYm9keT4KPC9odG1sPgo=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 15:23:52 GMT\", \"Expires\": \"Mon, 27 Mar 2017 15:23:52 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "73c533d8-c61e-44c7-8259-38006ae8cf4b", - "fields": { - "request": "d1748b59-cc96-4ea2-be46-b6916bdd9ba0", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "74ea2216-b882-4745-b0c2-ef4195cd6223", - "fields": { - "request": "56046c8e-8186-46f8-93e5-a7b597a98423", - "status_code": 200, - "raw_body": "CjwhRE9DVFlQRSBodG1sPgo8aHRtbD4KPGhlYWQ+CiAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogIDx0aXRsZT5Td2FnZ2VyIFVJPC90aXRsZT4KICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2ltYWdlcy9mYXZpY29uLTMyeDMyLnBuZyIgc2l6ZXM9IjMyeDMyIiAvPgogIDxsaW5rIHJlbD0iaWNvbiIgdHlwZT0iaW1hZ2UvcG5nIiBocmVmPSIvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvaW1hZ2VzL2Zhdmljb24tMTZ4MTYucG5nIiBzaXplcz0iMTZ4MTYiIC8+CiAgPGxpbmsgaHJlZj0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2Nzcy90eXBvZ3JhcGh5LmNzcycgbWVkaWE9J3NjcmVlbicgcmVsPSdzdHlsZXNoZWV0JyB0eXBlPSd0ZXh0L2NzcycvPgogIDxsaW5rIGhyZWY9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9jc3MvcmVzZXQuY3NzJyBtZWRpYT0nc2NyZWVuJyByZWw9J3N0eWxlc2hlZXQnIHR5cGU9J3RleHQvY3NzJy8+CiAgPGxpbmsgaHJlZj0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2Nzcy9zY3JlZW4uY3NzJyBtZWRpYT0nc2NyZWVuJyByZWw9J3N0eWxlc2hlZXQnIHR5cGU9J3RleHQvY3NzJy8+CiAgPGxpbmsgaHJlZj0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2Nzcy9yZXNldC5jc3MnIG1lZGlhPSdwcmludCcgcmVsPSdzdHlsZXNoZWV0JyB0eXBlPSd0ZXh0L2NzcycvPgogIDxsaW5rIGhyZWY9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9jc3MvcHJpbnQuY3NzJyBtZWRpYT0ncHJpbnQnIHJlbD0nc3R5bGVzaGVldCcgdHlwZT0ndGV4dC9jc3MnLz4KICAKICAKICAKCiAgPHNjcmlwdCBzcmM9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9saWIvb2JqZWN0LWFzc2lnbi1wb2xseWZpbGwuanMnIHR5cGU9J3RleHQvamF2YXNjcmlwdCc+PC9zY3JpcHQ+CiAgPHNjcmlwdCBzcmM9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9saWIvanF1ZXJ5LTEuOC4wLm1pbi5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4KICA8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2xpYi9qcXVlcnkuc2xpZGV0by5taW4uanMnIHR5cGU9J3RleHQvamF2YXNjcmlwdCc+PC9zY3JpcHQ+CiAgPHNjcmlwdCBzcmM9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9saWIvanF1ZXJ5LndpZ2dsZS5taW4uanMnIHR5cGU9J3RleHQvamF2YXNjcmlwdCc+PC9zY3JpcHQ+CiAgPHNjcmlwdCBzcmM9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9saWIvanF1ZXJ5LmJhLWJicS5taW4uanMnIHR5cGU9J3RleHQvamF2YXNjcmlwdCc+PC9zY3JpcHQ+CiAgPHNjcmlwdCBzcmM9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9saWIvaGFuZGxlYmFycy0yLjAuMC5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4KICA8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2xpYi9qcy15YW1sLm1pbi5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4KICA8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2xpYi9sb2Rhc2gubWluLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgogIDxzY3JpcHQgc3JjPScvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvbGliL2JhY2tib25lLW1pbi5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4KICA8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL3N3YWdnZXItdWkubWluLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgogIDxzY3JpcHQgc3JjPScvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvbGliL2hpZ2hsaWdodC45LjEuMC5wYWNrLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgogIDxzY3JpcHQgc3JjPScvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvbGliL2hpZ2hsaWdodC45LjEuMC5wYWNrX2V4dGVuZGVkLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgogIDxzY3JpcHQgc3JjPScvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvbGliL2pzb25lZGl0b3IubWluLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgogIDxzY3JpcHQgc3JjPScvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvbGliL21hcmtlZC5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4KICA8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2xpYi9zd2FnZ2VyLW9hdXRoLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgoKICA8IS0tIFNvbWUgYmFzaWMgdHJhbnNsYXRpb25zIC0tPgogIDwhLS0gPHNjcmlwdCBzcmM9J2xhbmcvdHJhbnNsYXRvci5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4gLS0+CiAgPCEtLSA8c2NyaXB0IHNyYz0nbGFuZy9ydS5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4gLS0+CiAgPCEtLSA8c2NyaXB0IHNyYz0nbGFuZy9lbi5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4gLS0+Cgo8L2hlYWQ+Cgo8Ym9keSBjbGFzcz0ic3dhZ2dlci1zZWN0aW9uIj4KCjxkaXYgaWQ9J2hlYWRlcic+CiAgPGRpdiBjbGFzcz0ic3dhZ2dlci11aS13cmFwIj4KICAgIAogICAgICA8YSBpZD0ibG9nbyIgaHJlZj0iaHR0cDovL3N3YWdnZXIuaW8iPjxpbWcgY2xhc3M9ImxvZ29fX2ltZyIgYWx0PSJzd2FnZ2VyIiBoZWlnaHQ9IjMwIiB3aWR0aD0iMzAiIHNyYz0iL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2ltYWdlcy9sb2dvX3NtYWxsLnBuZyIgLz48c3BhbiBjbGFzcz0ibG9nb19fdGl0bGUiPnN3YWdnZXI8L3NwYW4+PC9hPgogICAgCiAgICA8Zm9ybSBpZD0nYXBpX3NlbGVjdG9yJz4KICAgICAgPGlucHV0IGlkPSJpbnB1dF9iYXNlVXJsIiBuYW1lPSJiYXNlVXJsIiB0eXBlPSJoaWRkZW4iLz4KICAgICAgCiAgICAgICAgPGlucHV0IHR5cGU9J2hpZGRlbicgbmFtZT0nY3NyZm1pZGRsZXdhcmV0b2tlbicgdmFsdWU9J1NZV1pjbmNJVDY1eUM0WGxtQlJmNzh3YWoxSTZOcVgwaDQzT29UNERHM2dYWmNaTjUybUhaUGRVaFdPVjdxVFAnIC8+CiAgICAgICAgCiAgICAgICAgICA8ZGl2IGNsYXNzPSJpbnB1dCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgIAogICAgICAgICAgICAgIEhlbGxvLCBrYXBlCiAgICAgICAgICAgIAogICAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgICAKICAgICAgICAKICAgICAgCgogICAgICAKICAgICAgICAKICAgICAgICAgIDxkaXYgY2xhc3M9J2lucHV0Jz48YSBpZD0iYXV0aCIgY2xhc3M9ImhlYWRlcl9fYnRuIiBocmVmPSI/bmV4dD0vYXBpIiBkYXRhLXN3LXRyYW5zbGF0ZT5EamFuZ28gTG9nb3V0PC9hPjwvZGl2PgogICAgICAgIAogICAgICAKICAgICAgPGRpdiBpZD0nYXV0aF9jb250YWluZXInPjwvZGl2PgogICAgPC9mb3JtPgogIDwvZGl2Pgo8L2Rpdj4KCgo8ZGl2IGlkPSJtZXNzYWdlLWJhciIgY2xhc3M9InN3YWdnZXItdWktd3JhcCIgZGF0YS1zdy10cmFuc2xhdGU+Jm5ic3A7PC9kaXY+CjxkaXYgaWQ9InN3YWdnZXItdWktY29udGFpbmVyIiBjbGFzcz0ic3dhZ2dlci11aS13cmFwIj48L2Rpdj4KCjxzY3JpcHQgaWQ9ImRycy1zZXR0aW5ncyIgdHlwZT0iYXBwbGljYXRpb24vanNvbiI+CnsiYXBpc1NvcnRlciI6IG51bGwsICJkb2NFeHBhbnNpb24iOiBudWxsLCAianNvbkVkaXRvciI6IGZhbHNlLCAib3BlcmF0aW9uc1NvcnRlciI6IG51bGwsICJzaG93UmVxdWVzdEhlYWRlcnMiOiBmYWxzZSwgInN1cHBvcnRlZFN1Ym1pdE1ldGhvZHMiOiBbImdldCIsICJwb3N0IiwgInB1dCIsICJkZWxldGUiLCAicGF0Y2giXX0KPC9zY3JpcHQ+Cgo8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2luaXQuanMnIHR5cGU9J3RleHQvamF2YXNjcmlwdCc+PC9zY3JpcHQ+CgoKCjwvYm9keT4KPC9odG1sPgo=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Allow\": \"GET, HEAD, OPTIONS\", \"Vary\": \"Accept\"}" - } -}, -{ - "model": "silk.response", - "pk": "75a6c242-2ab7-4c41-8d72-58cdabb419cd", - "fields": { - "request": "bd353e81-ebd9-4199-bfa3-1ad81915baaf", - "status_code": 500, - "raw_body": "QXR0cmlidXRlRXJyb3IgYXQgL2FwaS9zdHVkZW50cy8yL2Jvb2ttYXJrZWQtdmFjYW5jaWVzLwonZGljdCcgb2JqZWN0IGhhcyBubyBhdHRyaWJ1dGUgJ2lkJwoKUmVxdWVzdCBNZXRob2Q6IFBPU1QKUmVxdWVzdCBVUkw6IGh0dHA6Ly8xMjcuMC4wLjE6ODAwMC9hcGkvc3R1ZGVudHMvMi9ib29rbWFya2VkLXZhY2FuY2llcy8KRGphbmdvIFZlcnNpb246IDEuMTAuNQpQeXRob24gRXhlY3V0YWJsZTogQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXHB5dGhvbi5leGUKUHl0aG9uIFZlcnNpb246IDMuNi4wClB5dGhvbiBQYXRoOiBbJ0Q6XFxQUExBJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXHB5dGhvbjM2LnppcCcsICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyXFxETExzJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXGxpYicsICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXGxpYlxcc2l0ZS1wYWNrYWdlcyddClNlcnZlciB0aW1lOiBNb24sIDI3IE1hciAyMDE3IDE1OjQ4OjM2ICswMDAwCkluc3RhbGxlZCBBcHBsaWNhdGlvbnM6ClsnZGphbmdvLmNvbnRyaWIuYWRtaW4nLAogJ2RqYW5nby5jb250cmliLmF1dGgnLAogJ2RqYW5nby5jb250cmliLmNvbnRlbnR0eXBlcycsCiAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMnLAogJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzJywKICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcycsCiAnd2VicGFja19sb2FkZXInLAogJ2NvcmUnLAogJ3Jlc3RfZnJhbWV3b3JrJywKICdkamFuZ29fbm9zZScsCiAncmVzdF9mcmFtZXdvcmtfc3dhZ2dlcicsCiAnc2lsayddCkluc3RhbGxlZCBNaWRkbGV3YXJlOgpbJ2RqYW5nby5taWRkbGV3YXJlLnNlY3VyaXR5LlNlY3VyaXR5TWlkZGxld2FyZScsCiAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMubWlkZGxld2FyZS5TZXNzaW9uTWlkZGxld2FyZScsCiAnZGphbmdvLm1pZGRsZXdhcmUuY29tbW9uLkNvbW1vbk1pZGRsZXdhcmUnLAogJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5hdXRoLm1pZGRsZXdhcmUuQXV0aGVudGljYXRpb25NaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5tZXNzYWdlcy5taWRkbGV3YXJlLk1lc3NhZ2VNaWRkbGV3YXJlJywKICdkamFuZ28ubWlkZGxld2FyZS5jbGlja2phY2tpbmcuWEZyYW1lT3B0aW9uc01pZGRsZXdhcmUnLAogJ3NpbGsubWlkZGxld2FyZS5TaWxreU1pZGRsZXdhcmUnXQoKClRyYWNlYmFjazogIAoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXGRqYW5nb1xjb3JlXGhhbmRsZXJzXGV4Y2VwdGlvbi5weSIgaW4gaW5uZXIKICAzOS4gICAgICAgICAgICAgcmVzcG9uc2UgPSBnZXRfcmVzcG9uc2UocmVxdWVzdCkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cY29yZVxoYW5kbGVyc1xiYXNlLnB5IiBpbiBfZ2V0X3Jlc3BvbnNlCiAgMTg3LiAgICAgICAgICAgICAgICAgcmVzcG9uc2UgPSBzZWxmLnByb2Nlc3NfZXhjZXB0aW9uX2J5X21pZGRsZXdhcmUoZSwgcmVxdWVzdCkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cY29yZVxoYW5kbGVyc1xiYXNlLnB5IiBpbiBfZ2V0X3Jlc3BvbnNlCiAgMTg1LiAgICAgICAgICAgICAgICAgcmVzcG9uc2UgPSB3cmFwcGVkX2NhbGxiYWNrKHJlcXVlc3QsICpjYWxsYmFja19hcmdzLCAqKmNhbGxiYWNrX2t3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cdmlld3NcZGVjb3JhdG9yc1xjc3JmLnB5IiBpbiB3cmFwcGVkX3ZpZXcKICA1OC4gICAgICAgICByZXR1cm4gdmlld19mdW5jKCphcmdzLCAqKmt3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3c2V0cy5weSIgaW4gdmlldwogIDgzLiAgICAgICAgICAgICByZXR1cm4gc2VsZi5kaXNwYXRjaChyZXF1ZXN0LCAqYXJncywgKiprd2FyZ3MpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNccmVzdF9mcmFtZXdvcmtcdmlld3MucHkiIGluIGRpc3BhdGNoCiAgNDgzLiAgICAgICAgICAgICByZXNwb25zZSA9IHNlbGYuaGFuZGxlX2V4Y2VwdGlvbihleGMpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNccmVzdF9mcmFtZXdvcmtcdmlld3MucHkiIGluIGhhbmRsZV9leGNlcHRpb24KICA0NDMuICAgICAgICAgICAgIHNlbGYucmFpc2VfdW5jYXVnaHRfZXhjZXB0aW9uKGV4YykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3cy5weSIgaW4gZGlzcGF0Y2gKICA0ODAuICAgICAgICAgICAgIHJlc3BvbnNlID0gaGFuZGxlcihyZXF1ZXN0LCAqYXJncywgKiprd2FyZ3MpCgpGaWxlICJEOlxQUExBXGNvcmVcdmlld3NcYWNjb3VudHMucHkiIGluIGJvb2ttYXJrX3ZhY2FuY2llcwogIDMwLiAgICAgICAgIHZhY2FuY3kgPSBnZXRfb2JqZWN0X29yXzQwNChWYWNhbmN5Lm9iamVjdHMuYWxsKCksIHBrPXJlcXVlc3QuZGF0YS5pZCkKCkV4Y2VwdGlvbiBUeXBlOiBBdHRyaWJ1dGVFcnJvciBhdCAvYXBpL3N0dWRlbnRzLzIvYm9va21hcmtlZC12YWNhbmNpZXMvCkV4Y2VwdGlvbiBWYWx1ZTogJ2RpY3QnIG9iamVjdCBoYXMgbm8gYXR0cmlidXRlICdpZCcKUmVxdWVzdCBpbmZvcm1hdGlvbjoKVVNFUjoga2FwZQoKR0VUOiBObyBHRVQgZGF0YQoKUE9TVDogTm8gUE9TVCBkYXRhCgpGSUxFUzogTm8gRklMRVMgZGF0YQoKQ09PS0lFUzoKc2Vzc2lvbmlkID0gJ2JsdDg3N2c1ZmptdWN4eTNkZDV1eGNpemF2YjlvcG92Jwpjc3JmdG9rZW4gPSAnMUVFUDJTd0t0MUs5UWJXbkZQU3lXUElpYnRPN01BYVZxS0xFZW9vRmdZVnlkallQb2duME93cDI5b1VXNkE2SycKCk1FVEE6CkFMTFVTRVJTUFJPRklMRSA9ICdDOlxcUHJvZ3JhbURhdGEnCkFQUERBVEEgPSAnQzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmcnCkNPTU1PTlBST0dSQU1GSUxFUyA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcQ29tbW9uIEZpbGVzJwpDT01NT05QUk9HUkFNRklMRVMoWDg2KSA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcQ29tbW9uIEZpbGVzJwpDT01NT05QUk9HUkFNVzY0MzIgPSAnQzpcXFByb2dyYW0gRmlsZXNcXENvbW1vbiBGaWxlcycKQ09NUFVURVJOQU1FID0gJ0ZBUkhBTicKQ09NU1BFQyA9ICdDOlxcV0lORE9XU1xcc3lzdGVtMzJcXGNtZC5leGUnCkNPTlRFTlRfTEVOR1RIID0gJzEyOCcKQ09OVEVOVF9UWVBFID0gJ2FwcGxpY2F0aW9uL2pzb24nCkNTUkZfQ09PS0lFID0gJzFFRVAyU3dLdDFLOVFiV25GUFN5V1BJaWJ0TzdNQWFWcUtMRWVvb0ZnWVZ5ZGpZUG9nbjBPd3AyOW9VVzZBNksnCkRKQU5HT19TRVRUSU5HU19NT0RVTEUgPSAna2FwZS5zZXR0aW5ncycKRlBTX0JST1dTRVJfQVBQX1BST0ZJTEVfU1RSSU5HID0gJ0ludGVybmV0IEV4cGxvcmVyJwpGUFNfQlJPV1NFUl9VU0VSX1BST0ZJTEVfU1RSSU5HID0gJ0RlZmF1bHQnCkZQX05PX0hPU1RfQ0hFQ0sgPSAnTk8nCkdBVEVXQVlfSU5URVJGQUNFID0gJ0NHSS8xLjEnCkhPTUVEUklWRSA9ICdDOicKSE9NRVBBVEggPSAnXFxVc2Vyc1xcZmFyaGFfMDAwJwpIVFRQX0FDQ0VQVCA9ICdhcHBsaWNhdGlvbi9qc29uJwpIVFRQX0FDQ0VQVF9FTkNPRElORyA9ICdnemlwLCBkZWZsYXRlLCBicicKSFRUUF9BQ0NFUFRfTEFOR1VBR0UgPSAnaWQtSUQsaWQ7cT0wLjgsZW4tVVM7cT0wLjYsZW47cT0wLjQnCkhUVFBfQ09OTkVDVElPTiA9ICdrZWVwLWFsaXZlJwpIVFRQX0NPT0tJRSA9ICdzZXNzaW9uaWQ9Ymx0ODc3ZzVmam11Y3h5M2RkNXV4Y2l6YXZiOW9wb3Y7IGNzcmZ0b2tlbj0xRUVQMlN3S3QxSzlRYlduRlBTeVdQSWlidE83TUFhVnFLTEVlb29GZ1lWeWRqWVBvZ24wT3dwMjlvVVc2QTZLJwpIVFRQX0hPU1QgPSAnMTI3LjAuMC4xOjgwMDAnCkhUVFBfT1JJR0lOID0gJ2h0dHA6Ly8xMjcuMC4wLjE6ODAwMCcKSFRUUF9SRUZFUkVSID0gJ2h0dHA6Ly8xMjcuMC4wLjE6ODAwMC9hcGknCkhUVFBfVVNFUl9BR0VOVCA9ICdNb3ppbGxhLzUuMCAoV2luZG93cyBOVCAxMC4wOyBXT1c2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzU2LjAuMjkyNC44NyBTYWZhcmkvNTM3LjM2JwpIVFRQX1hfQ1NSRlRPS0VOID0gJ2pxOTFCdUY1ZTVSN1NqTUZSYzJUTmZ2V1U4bERPNnd5SXdnUU4weDAxMjJ3ZnJPN0FEeGxGV2NHUzNyczg2c24nCkxPQ0FMQVBQREFUQSA9ICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWwnCkxPR09OU0VSVkVSID0gJ1xcXFxGQVJIQU4nCk5VTUJFUl9PRl9QUk9DRVNTT1JTID0gJzInCk9ORURSSVZFID0gJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxPbmVEcml2ZScKT1MgPSAnV2luZG93c19OVCcKUEFUSCA9ICdDOlxcUHJvZ3JhbURhdGFcXE9yYWNsZVxcSmF2YVxcamF2YXBhdGg7QzpcXFByb2dyYW0gRmlsZXNcXEhhc2tlbGxcXGJpbjtDOlxcUHJvZ3JhbSBGaWxlc1xcSGFza2VsbCBQbGF0Zm9ybVxcNy4xMC4zXFxsaWJcXGV4dHJhbGlic1xcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxIYXNrZWxsIFBsYXRmb3JtXFw3LjEwLjNcXGJpbjtDOlxcV0lORE9XU1xcc3lzdGVtMzI7QzpcXFdJTkRPV1M7QzpcXFdJTkRPV1NcXFN5c3RlbTMyXFxXYmVtO0M6XFxXSU5ET1dTXFxTeXN0ZW0zMlxcV2luZG93c1Bvd2VyU2hlbGxcXHYxLjBcXDtDOlxcUHJvZ3JhbSBGaWxlc1xcSGFza2VsbCBQbGF0Zm9ybVxcNy4xMC4zXFxtaW5nd1xcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxKYXZhXFxqZGsxLjguMF83N1xcYmluO0M6XFxjeWd3aW42NFxcYmluOyVsb2NhbGFwcGRhdGElXFxNaWNyb3NvZnRcXFdpbmRvd3NBcHBzO0Q6XFxYQU1QUFxccGhwO0M6XFxQcm9ncmFtIEZpbGVzXFxHaXRcXGNtZDtDOlxceGFtcHBcXHBocDtDOlxcUHJvZ3JhbURhdGFcXENvbXBvc2VyU2V0dXBcXGJpbjtDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcbm9kZWpzXFw7QzpcXFByb2dyYW0gRmlsZXNcXFBvc3RncmVTUUxcXDkuNlxcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxNQVRMQUJcXFIyMDE3YVxcYmluO0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXFNjcmlwdHNcXDtDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyXFw7QzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmdcXGNhYmFsXFxiaW47RDpcXFhBTVBQXFxwaHA7QzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmdcXENvbXBvc2VyXFx2ZW5kb3JcXGJpbjtDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXE1pY3Jvc29mdFxcV2luZG93c0FwcHM7QzpcXHB5dGhvbi0zLjYuMCcKUEFUSEVYVCA9ICcuQ09NOy5FWEU7LkJBVDsuQ01EOy5WQlM7LlZCRTsuSlM7LkpTRTsuV1NGOy5XU0g7Lk1TQycKUEFUSF9JTkZPID0gJy9hcGkvc3R1ZGVudHMvMi9ib29rbWFya2VkLXZhY2FuY2llcy8nClBST0NFU1NPUl9BUkNISVRFQ1RVUkUgPSAneDg2JwpQUk9DRVNTT1JfQVJDSElURVc2NDMyID0gJ0FNRDY0JwpQUk9DRVNTT1JfSURFTlRJRklFUiA9ICdJbnRlbDY0IEZhbWlseSA2IE1vZGVsIDU4IFN0ZXBwaW5nIDksIEdlbnVpbmVJbnRlbCcKUFJPQ0VTU09SX0xFVkVMID0gJzYnClBST0NFU1NPUl9SRVZJU0lPTiA9ICczYTA5JwpQUk9HUkFNREFUQSA9ICdDOlxcUHJvZ3JhbURhdGEnClBST0dSQU1GSUxFUyA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KScKUFJPR1JBTUZJTEVTKFg4NikgPSAnQzpcXFByb2dyYW0gRmlsZXMgKHg4NiknClBST0dSQU1XNjQzMiA9ICdDOlxcUHJvZ3JhbSBGaWxlcycKUFJPTVBUID0gJyRQJEcnClBTTU9EVUxFUEFUSCA9ICdDOlxcV0lORE9XU1xcc3lzdGVtMzJcXFdpbmRvd3NQb3dlclNoZWxsXFx2MS4wXFxNb2R1bGVzXFwnClBVQkxJQyA9ICdDOlxcVXNlcnNcXFB1YmxpYycKUVVFUllfU1RSSU5HID0gJycKUkVNT1RFX0FERFIgPSAnMTI3LjAuMC4xJwpSRU1PVEVfSE9TVCA9ICcnClJFUVVFU1RfTUVUSE9EID0gJ1BPU1QnClJVTl9NQUlOID0gJ3RydWUnClNDUklQVF9OQU1FID0gJycKU0VSVkVSX05BTUUgPSAnRmFyaGFuJwpTRVJWRVJfUE9SVCA9ICc4MDAwJwpTRVJWRVJfUFJPVE9DT0wgPSAnSFRUUC8xLjEnClNFUlZFUl9TT0ZUV0FSRSA9ICdXU0dJU2VydmVyLzAuMicKU0VTU0lPTk5BTUUgPSAnQ29uc29sZScKU1lTVEVNRFJJVkUgPSAnQzonClNZU1RFTVJPT1QgPSAnQzpcXFdJTkRPV1MnClRFTVAgPSAnQzpcXFVzZXJzXFxGQVJIQV9+MVxcQXBwRGF0YVxcTG9jYWxcXFRlbXAnClRNUCA9ICdDOlxcVXNlcnNcXEZBUkhBX34xXFxBcHBEYXRhXFxMb2NhbFxcVGVtcCcKVVNFUkRPTUFJTiA9ICdGYXJoYW4nClVTRVJET01BSU5fUk9BTUlOR1BST0ZJTEUgPSAnRmFyaGFuJwpVU0VSTkFNRSA9ICdGYXJoYW4gRmFyYXNkYWsnClVTRVJQUk9GSUxFID0gJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwJwpWQk9YX01TSV9JTlNUQUxMX1BBVEggPSAnQzpcXFByb2dyYW0gRmlsZXNcXE9yYWNsZVxcVmlydHVhbEJveFxcJwpXSU5ESVIgPSAnQzpcXFdJTkRPV1MnCndzZ2kuZXJyb3JzID0gPF9pby5UZXh0SU9XcmFwcGVyIG5hbWU9JzxzdGRlcnI+JyBtb2RlPSd3JyBlbmNvZGluZz0ndXRmLTgnPgp3c2dpLmZpbGVfd3JhcHBlciA9ICcnCndzZ2kuaW5wdXQgPSA8X2lvLkJ1ZmZlcmVkUmVhZGVyIG5hbWU9MTI2ND4Kd3NnaS5tdWx0aXByb2Nlc3MgPSBGYWxzZQp3c2dpLm11bHRpdGhyZWFkID0gVHJ1ZQp3c2dpLnJ1bl9vbmNlID0gRmFsc2UKd3NnaS51cmxfc2NoZW1lID0gJ2h0dHAnCndzZ2kudmVyc2lvbiA9IAoKU2V0dGluZ3M6ClVzaW5nIHNldHRpbmdzIG1vZHVsZSBrYXBlLnNldHRpbmdzCkFCU09MVVRFX1VSTF9PVkVSUklERVMgPSB7fQpBRE1JTlMgPSBbXQpBTExPV0VEX0hPU1RTID0gWydib3QucmVjcnVpdC5pZCcsICcxMDQuMjM2Ljc2LjE2MScsICdsb2NhbGhvc3QnLCAnMTI3LjAuMC4xJ10KQVBQRU5EX1NMQVNIID0gVHJ1ZQpBVVRIRU5USUNBVElPTl9CQUNLRU5EUyA9IFsnZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQnXQpBVVRIX1BBU1NXT1JEX1ZBTElEQVRPUlMgPSAnKioqKioqKioqKioqKioqKioqKionCkFVVEhfVVNFUl9NT0RFTCA9ICdhdXRoLlVzZXInCkJBU0VfRElSID0gJ0Q6XFxQUExBJwpDQUNIRVMgPSB7J2RlZmF1bHQnOiB7J0JBQ0tFTkQnOiAnZGphbmdvLmNvcmUuY2FjaGUuYmFja2VuZHMubG9jbWVtLkxvY01lbUNhY2hlJ319CkNBQ0hFX01JRERMRVdBUkVfQUxJQVMgPSAnZGVmYXVsdCcKQ0FDSEVfTUlERExFV0FSRV9LRVlfUFJFRklYID0gJyoqKioqKioqKioqKioqKioqKioqJwpDQUNIRV9NSURETEVXQVJFX1NFQ09ORFMgPSA2MDAKQ1NSRl9DT09LSUVfQUdFID0gMzE0NDk2MDAKQ1NSRl9DT09LSUVfRE9NQUlOID0gTm9uZQpDU1JGX0NPT0tJRV9IVFRQT05MWSA9IEZhbHNlCkNTUkZfQ09PS0lFX05BTUUgPSAnY3NyZnRva2VuJwpDU1JGX0NPT0tJRV9QQVRIID0gJy8nCkNTUkZfQ09PS0lFX1NFQ1VSRSA9IEZhbHNlCkNTUkZfRkFJTFVSRV9WSUVXID0gJ2RqYW5nby52aWV3cy5jc3JmLmNzcmZfZmFpbHVyZScKQ1NSRl9IRUFERVJfTkFNRSA9ICdIVFRQX1hfQ1NSRlRPS0VOJwpDU1JGX1RSVVNURURfT1JJR0lOUyA9IFtdCkRBVEFCQVNFUyA9IHsnZGVmYXVsdCc6IHsnRU5HSU5FJzogJ2RqYW5nby5kYi5iYWNrZW5kcy5wb3N0Z3Jlc3FsX3BzeWNvcGcyJywgJ05BTUUnOiAna2FwZScsICdVU0VSJzogJ2thcGUnLCAnUEFTU1dPUkQnOiAnKioqKioqKioqKioqKioqKioqKionLCAnSE9TVCc6ICdsb2NhbGhvc3QnLCAnUE9SVCc6ICcnLCAnQVRPTUlDX1JFUVVFU1RTJzogRmFsc2UsICdBVVRPQ09NTUlUJzogVHJ1ZSwgJ0NPTk5fTUFYX0FHRSc6IDAsICdPUFRJT05TJzoge30sICdUSU1FX1pPTkUnOiBOb25lLCAnVEVTVCc6IHsnQ0hBUlNFVCc6IE5vbmUsICdDT0xMQVRJT04nOiBOb25lLCAnTkFNRSc6IE5vbmUsICdNSVJST1InOiBOb25lfX19CkRBVEFCQVNFX1JPVVRFUlMgPSBbXQpEQVRBX1VQTE9BRF9NQVhfTUVNT1JZX1NJWkUgPSAyNjIxNDQwCkRBVEFfVVBMT0FEX01BWF9OVU1CRVJfRklFTERTID0gMTAwMApEQVRFVElNRV9GT1JNQVQgPSAnTiBqLCBZLCBQJwpEQVRFVElNRV9JTlBVVF9GT1JNQVRTID0gWyclWS0lbS0lZCAlSDolTTolUycsICclWS0lbS0lZCAlSDolTTolUy4lZicsICclWS0lbS0lZCAlSDolTScsICclWS0lbS0lZCcsICclbS8lZC8lWSAlSDolTTolUycsICclbS8lZC8lWSAlSDolTTolUy4lZicsICclbS8lZC8lWSAlSDolTScsICclbS8lZC8lWScsICclbS8lZC8leSAlSDolTTolUycsICclbS8lZC8leSAlSDolTTolUy4lZicsICclbS8lZC8leSAlSDolTScsICclbS8lZC8leSddCkRBVEVfRk9STUFUID0gJ04gaiwgWScKREFURV9JTlBVVF9GT1JNQVRTID0gWyclWS0lbS0lZCcsICclbS8lZC8lWScsICclbS8lZC8leScsICclYiAlZCAlWScsICclYiAlZCwgJVknLCAnJWQgJWIgJVknLCAnJWQgJWIsICVZJywgJyVCICVkICVZJywgJyVCICVkLCAlWScsICclZCAlQiAlWScsICclZCAlQiwgJVknXQpERUJVRyA9IFRydWUKREVCVUdfUFJPUEFHQVRFX0VYQ0VQVElPTlMgPSBGYWxzZQpERUNJTUFMX1NFUEFSQVRPUiA9ICcuJwpERUZBVUxUX0NIQVJTRVQgPSAndXRmLTgnCkRFRkFVTFRfQ09OVEVOVF9UWVBFID0gJ3RleHQvaHRtbCcKREVGQVVMVF9FWENFUFRJT05fUkVQT1JURVJfRklMVEVSID0gJ2RqYW5nby52aWV3cy5kZWJ1Zy5TYWZlRXhjZXB0aW9uUmVwb3J0ZXJGaWx0ZXInCkRFRkFVTFRfRklMRV9TVE9SQUdFID0gJ2RqYW5nby5jb3JlLmZpbGVzLnN0b3JhZ2UuRmlsZVN5c3RlbVN0b3JhZ2UnCkRFRkFVTFRfRlJPTV9FTUFJTCA9ICd3ZWJtYXN0ZXJAbG9jYWxob3N0JwpERUZBVUxUX0lOREVYX1RBQkxFU1BBQ0UgPSAnJwpERUZBVUxUX1RBQkxFU1BBQ0UgPSAnJwpESVNBTExPV0VEX1VTRVJfQUdFTlRTID0gW10KRU1BSUxfQkFDS0VORCA9ICdkamFuZ28uY29yZS5tYWlsLmJhY2tlbmRzLnNtdHAuRW1haWxCYWNrZW5kJwpFTUFJTF9IT1NUID0gJ2xvY2FsaG9zdCcKRU1BSUxfSE9TVF9QQVNTV09SRCA9ICcqKioqKioqKioqKioqKioqKioqKicKRU1BSUxfSE9TVF9VU0VSID0gJycKRU1BSUxfUE9SVCA9IDI1CkVNQUlMX1NTTF9DRVJURklMRSA9IE5vbmUKRU1BSUxfU1NMX0tFWUZJTEUgPSAnKioqKioqKioqKioqKioqKioqKionCkVNQUlMX1NVQkpFQ1RfUFJFRklYID0gJ1tEamFuZ29dICcKRU1BSUxfVElNRU9VVCA9IE5vbmUKRU1BSUxfVVNFX1NTTCA9IEZhbHNlCkVNQUlMX1VTRV9UTFMgPSBGYWxzZQpGSUxFX0NIQVJTRVQgPSAndXRmLTgnCkZJTEVfVVBMT0FEX0RJUkVDVE9SWV9QRVJNSVNTSU9OUyA9IE5vbmUKRklMRV9VUExPQURfSEFORExFUlMgPSBbJ2RqYW5nby5jb3JlLmZpbGVzLnVwbG9hZGhhbmRsZXIuTWVtb3J5RmlsZVVwbG9hZEhhbmRsZXInLCAnZGphbmdvLmNvcmUuZmlsZXMudXBsb2FkaGFuZGxlci5UZW1wb3JhcnlGaWxlVXBsb2FkSGFuZGxlciddCkZJTEVfVVBMT0FEX01BWF9NRU1PUllfU0laRSA9IDI2MjE0NDAKRklMRV9VUExPQURfUEVSTUlTU0lPTlMgPSBOb25lCkZJTEVfVVBMT0FEX1RFTVBfRElSID0gTm9uZQpGSVJTVF9EQVlfT0ZfV0VFSyA9IDAKRklYVFVSRV9ESVJTID0gW10KRk9SQ0VfU0NSSVBUX05BTUUgPSBOb25lCkZPUk1BVF9NT0RVTEVfUEFUSCA9IE5vbmUKR1pJUF9DT05URU5UX1RZUEVTID0gCklHTk9SQUJMRV80MDRfVVJMUyA9IFtdCklOU1RBTExFRF9BUFBTID0gWydkamFuZ28uY29udHJpYi5hZG1pbicsICdkamFuZ28uY29udHJpYi5hdXRoJywgJ2RqYW5nby5jb250cmliLmNvbnRlbnR0eXBlcycsICdkamFuZ28uY29udHJpYi5zZXNzaW9ucycsICdkamFuZ28uY29udHJpYi5tZXNzYWdlcycsICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcycsICd3ZWJwYWNrX2xvYWRlcicsICdjb3JlJywgJ3Jlc3RfZnJhbWV3b3JrJywgJ2RqYW5nb19ub3NlJywgJ3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXInLCAnc2lsayddCklOVEVSTkFMX0lQUyA9IFtdCkxBTkdVQUdFUyA9IFsoJ2FmJywgJ0FmcmlrYWFucycpLCAoJ2FyJywgJ0FyYWJpYycpLCAoJ2FzdCcsICdBc3R1cmlhbicpLCAoJ2F6JywgJ0F6ZXJiYWlqYW5pJyksICgnYmcnLCAnQnVsZ2FyaWFuJyksICgnYmUnLCAnQmVsYXJ1c2lhbicpLCAoJ2JuJywgJ0JlbmdhbGknKSwgKCdicicsICdCcmV0b24nKSwgKCdicycsICdCb3NuaWFuJyksICgnY2EnLCAnQ2F0YWxhbicpLCAoJ2NzJywgJ0N6ZWNoJyksICgnY3knLCAnV2Vsc2gnKSwgKCdkYScsICdEYW5pc2gnKSwgKCdkZScsICdHZXJtYW4nKSwgKCdkc2InLCAnTG93ZXIgU29yYmlhbicpLCAoJ2VsJywgJ0dyZWVrJyksICgnZW4nLCAnRW5nbGlzaCcpLCAoJ2VuLWF1JywgJ0F1c3RyYWxpYW4gRW5nbGlzaCcpLCAoJ2VuLWdiJywgJ0JyaXRpc2ggRW5nbGlzaCcpLCAoJ2VvJywgJ0VzcGVyYW50bycpLCAoJ2VzJywgJ1NwYW5pc2gnKSwgKCdlcy1hcicsICdBcmdlbnRpbmlhbiBTcGFuaXNoJyksICgnZXMtY28nLCAnQ29sb21iaWFuIFNwYW5pc2gnKSwgKCdlcy1teCcsICdNZXhpY2FuIFNwYW5pc2gnKSwgKCdlcy1uaScsICdOaWNhcmFndWFuIFNwYW5pc2gnKSwgKCdlcy12ZScsICdWZW5lenVlbGFuIFNwYW5pc2gnKSwgKCdldCcsICdFc3RvbmlhbicpLCAoJ2V1JywgJ0Jhc3F1ZScpLCAoJ2ZhJywgJ1BlcnNpYW4nKSwgKCdmaScsICdGaW5uaXNoJyksICgnZnInLCAnRnJlbmNoJyksICgnZnknLCAnRnJpc2lhbicpLCAoJ2dhJywgJ0lyaXNoJyksICgnZ2QnLCAnU2NvdHRpc2ggR2FlbGljJyksICgnZ2wnLCAnR2FsaWNpYW4nKSwgKCdoZScsICdIZWJyZXcnKSwgKCdoaScsICdIaW5kaScpLCAoJ2hyJywgJ0Nyb2F0aWFuJyksICgnaHNiJywgJ1VwcGVyIFNvcmJpYW4nKSwgKCdodScsICdIdW5nYXJpYW4nKSwgKCdpYScsICdJbnRlcmxpbmd1YScpLCAoJ2lkJywgJ0luZG9uZXNpYW4nKSwgKCdpbycsICdJZG8nKSwgKCdpcycsICdJY2VsYW5kaWMnKSwgKCdpdCcsICdJdGFsaWFuJyksICgnamEnLCAnSmFwYW5lc2UnKSwgKCdrYScsICdHZW9yZ2lhbicpLCAoJ2trJywgJ0themFraCcpLCAoJ2ttJywgJ0tobWVyJyksICgna24nLCAnS2FubmFkYScpLCAoJ2tvJywgJ0tvcmVhbicpLCAoJ2xiJywgJ0x1eGVtYm91cmdpc2gnKSwgKCdsdCcsICdMaXRodWFuaWFuJyksICgnbHYnLCAnTGF0dmlhbicpLCAoJ21rJywgJ01hY2Vkb25pYW4nKSwgKCdtbCcsICdNYWxheWFsYW0nKSwgKCdtbicsICdNb25nb2xpYW4nKSwgKCdtcicsICdNYXJhdGhpJyksICgnbXknLCAnQnVybWVzZScpLCAoJ25iJywgJ05vcndlZ2lhbiBCb2ttw6VsJyksICgnbmUnLCAnTmVwYWxpJyksICgnbmwnLCAnRHV0Y2gnKSwgKCdubicsICdOb3J3ZWdpYW4gTnlub3JzaycpLCAoJ29zJywgJ09zc2V0aWMnKSwgKCdwYScsICdQdW5qYWJpJyksICgncGwnLCAnUG9saXNoJyksICgncHQnLCAnUG9ydHVndWVzZScpLCAoJ3B0LWJyJywgJ0JyYXppbGlhbiBQb3J0dWd1ZXNlJyksICgncm8nLCAnUm9tYW5pYW4nKSwgKCdydScsICdSdXNzaWFuJyksICgnc2snLCAnU2xvdmFrJyksICgnc2wnLCAnU2xvdmVuaWFuJyksICgnc3EnLCAnQWxiYW5pYW4nKSwgKCdzcicsICdTZXJiaWFuJyksICgnc3ItbGF0bicsICdTZXJiaWFuIExhdGluJyksICgnc3YnLCAnU3dlZGlzaCcpLCAoJ3N3JywgJ1N3YWhpbGknKSwgKCd0YScsICdUYW1pbCcpLCAoJ3RlJywgJ1RlbHVndScpLCAoJ3RoJywgJ1RoYWknKSwgKCd0cicsICdUdXJraXNoJyksICgndHQnLCAnVGF0YXInKSwgKCd1ZG0nLCAnVWRtdXJ0JyksICgndWsnLCAnVWtyYWluaWFuJyksICgndXInLCAnVXJkdScpLCAoJ3ZpJywgJ1ZpZXRuYW1lc2UnKSwgKCd6aC1oYW5zJywgJ1NpbXBsaWZpZWQgQ2hpbmVzZScpLCAoJ3poLWhhbnQnLCAnVHJhZGl0aW9uYWwgQ2hpbmVzZScpXQpMQU5HVUFHRVNfQklESSA9IFsnaGUnLCAnYXInLCAnZmEnLCAndXInXQpMQU5HVUFHRV9DT0RFID0gJ2VuLXVzJwpMQU5HVUFHRV9DT09LSUVfQUdFID0gTm9uZQpMQU5HVUFHRV9DT09LSUVfRE9NQUlOID0gTm9uZQpMQU5HVUFHRV9DT09LSUVfTkFNRSA9ICdkamFuZ29fbGFuZ3VhZ2UnCkxBTkdVQUdFX0NPT0tJRV9QQVRIID0gJy8nCkxPQ0FMRV9QQVRIUyA9IFtdCkxPR0dJTkcgPSB7fQpMT0dHSU5HX0NPTkZJRyA9ICdsb2dnaW5nLmNvbmZpZy5kaWN0Q29uZmlnJwpMT0dJTl9SRURJUkVDVF9VUkwgPSAnL2FjY291bnRzL3Byb2ZpbGUvJwpMT0dJTl9VUkwgPSAnL2FjY291bnRzL2xvZ2luLycKTE9HT1VUX1JFRElSRUNUX1VSTCA9IE5vbmUKTUFOQUdFUlMgPSBbXQpNRURJQV9ST09UID0gJy9ob21lL2ZpbGVzJwpNRURJQV9VUkwgPSAnL2ZpbGVzLycKTUVTU0FHRV9TVE9SQUdFID0gJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzLnN0b3JhZ2UuZmFsbGJhY2suRmFsbGJhY2tTdG9yYWdlJwpNSURETEVXQVJFID0gWydkamFuZ28ubWlkZGxld2FyZS5zZWN1cml0eS5TZWN1cml0eU1pZGRsZXdhcmUnLCAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMubWlkZGxld2FyZS5TZXNzaW9uTWlkZGxld2FyZScsICdkamFuZ28ubWlkZGxld2FyZS5jb21tb24uQ29tbW9uTWlkZGxld2FyZScsICdkamFuZ28ubWlkZGxld2FyZS5jc3JmLkNzcmZWaWV3TWlkZGxld2FyZScsICdkamFuZ28uY29udHJpYi5hdXRoLm1pZGRsZXdhcmUuQXV0aGVudGljYXRpb25NaWRkbGV3YXJlJywgJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzLm1pZGRsZXdhcmUuTWVzc2FnZU1pZGRsZXdhcmUnLCAnZGphbmdvLm1pZGRsZXdhcmUuY2xpY2tqYWNraW5nLlhGcmFtZU9wdGlvbnNNaWRkbGV3YXJlJywgJ3NpbGsubWlkZGxld2FyZS5TaWxreU1pZGRsZXdhcmUnXQpNSURETEVXQVJFX0NMQVNTRVMgPSBbJ2RqYW5nby5taWRkbGV3YXJlLmNvbW1vbi5Db21tb25NaWRkbGV3YXJlJywgJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJ10KTUlHUkFUSU9OX01PRFVMRVMgPSB7fQpNT05USF9EQVlfRk9STUFUID0gJ0YgaicKTk9TRV9BUkdTID0gWyctLXdpdGgtY292ZXJhZ2UnLCAnLS1jb3Zlci1wYWNrYWdlPWNvcmUudmlld3MnLCAnLS1jb3Zlci1odG1sLWRpcj10ZXN0L2JhY2tlbmQnLCAnLS1jb3Zlci1odG1sJ10KTlVNQkVSX0dST1VQSU5HID0gMApQQVNTV09SRF9IQVNIRVJTID0gJyoqKioqKioqKioqKioqKioqKioqJwpQQVNTV09SRF9SRVNFVF9USU1FT1VUX0RBWVMgPSAnKioqKioqKioqKioqKioqKioqKionClBSRVBFTkRfV1dXID0gRmFsc2UKUkVTVF9GUkFNRVdPUksgPSB7J0RFRkFVTFRfUEVSTUlTU0lPTl9DTEFTU0VTJzogWydyZXN0X2ZyYW1ld29yay5wZXJtaXNzaW9ucy5EamFuZ29Nb2RlbFBlcm1pc3Npb25zT3JBbm9uUmVhZE9ubHknXX0KUk9PVF9VUkxDT05GID0gJ2thcGUudXJscycKUlVOTklOR19ERVZTRVJWRVIgPSBUcnVlClNFQ1JFVF9LRVkgPSAnKioqKioqKioqKioqKioqKioqKionClNFQ1VSRV9CUk9XU0VSX1hTU19GSUxURVIgPSBGYWxzZQpTRUNVUkVfQ09OVEVOVF9UWVBFX05PU05JRkYgPSBGYWxzZQpTRUNVUkVfSFNUU19JTkNMVURFX1NVQkRPTUFJTlMgPSBGYWxzZQpTRUNVUkVfSFNUU19TRUNPTkRTID0gMApTRUNVUkVfUFJPWFlfU1NMX0hFQURFUiA9IE5vbmUKU0VDVVJFX1JFRElSRUNUX0VYRU1QVCA9IFtdClNFQ1VSRV9TU0xfSE9TVCA9IE5vbmUKU0VDVVJFX1NTTF9SRURJUkVDVCA9IEZhbHNlClNFUlZFUl9FTUFJTCA9ICdyb290QGxvY2FsaG9zdCcKU0VTU0lPTl9DQUNIRV9BTElBUyA9ICdkZWZhdWx0JwpTRVNTSU9OX0NPT0tJRV9BR0UgPSAxMjA5NjAwClNFU1NJT05fQ09PS0lFX0RPTUFJTiA9IE5vbmUKU0VTU0lPTl9DT09LSUVfSFRUUE9OTFkgPSBGYWxzZQpTRVNTSU9OX0NPT0tJRV9OQU1FID0gJ3Nlc3Npb25pZCcKU0VTU0lPTl9DT09LSUVfUEFUSCA9ICcvJwpTRVNTSU9OX0NPT0tJRV9TRUNVUkUgPSBGYWxzZQpTRVNTSU9OX0VOR0lORSA9ICdkamFuZ28uY29udHJpYi5zZXNzaW9ucy5iYWNrZW5kcy5kYicKU0VTU0lPTl9FWFBJUkVfQVRfQlJPV1NFUl9DTE9TRSA9IEZhbHNlClNFU1NJT05fRklMRV9QQVRIID0gTm9uZQpTRVNTSU9OX1NBVkVfRVZFUllfUkVRVUVTVCA9IEZhbHNlClNFU1NJT05fU0VSSUFMSVpFUiA9ICdkamFuZ28uY29udHJpYi5zZXNzaW9ucy5zZXJpYWxpemVycy5KU09OU2VyaWFsaXplcicKU0VUVElOR1NfTU9EVUxFID0gJ2thcGUuc2V0dGluZ3MnClNIT1JUX0RBVEVUSU1FX0ZPUk1BVCA9ICdtL2QvWSBQJwpTSE9SVF9EQVRFX0ZPUk1BVCA9ICdtL2QvWScKU0lHTklOR19CQUNLRU5EID0gJ2RqYW5nby5jb3JlLnNpZ25pbmcuVGltZXN0YW1wU2lnbmVyJwpTSUxFTkNFRF9TWVNURU1fQ0hFQ0tTID0gW10KU1RBVElDRklMRVNfRElSUyA9ICdEOlxcUFBMQVxcYXNzZXRzJwpTVEFUSUNGSUxFU19GSU5ERVJTID0gWydkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcy5maW5kZXJzLkZpbGVTeXN0ZW1GaW5kZXInLCAnZGphbmdvLmNvbnRyaWIuc3RhdGljZmlsZXMuZmluZGVycy5BcHBEaXJlY3Rvcmllc0ZpbmRlciddClNUQVRJQ0ZJTEVTX1NUT1JBR0UgPSAnZGphbmdvLmNvbnRyaWIuc3RhdGljZmlsZXMuc3RvcmFnZS5TdGF0aWNGaWxlc1N0b3JhZ2UnClNUQVRJQ19ST09UID0gJy9ob21lL2Fzc2V0cycKU1RBVElDX1VSTCA9ICcvYXNzZXRzLycKVEVNUExBVEVTID0gW3snQkFDS0VORCc6ICdkamFuZ28udGVtcGxhdGUuYmFja2VuZHMuZGphbmdvLkRqYW5nb1RlbXBsYXRlcycsICdESVJTJzogW10sICdBUFBfRElSUyc6IFRydWUsICdPUFRJT05TJzogeydjb250ZXh0X3Byb2Nlc3NvcnMnOiBbJ2RqYW5nby50ZW1wbGF0ZS5jb250ZXh0X3Byb2Nlc3NvcnMuZGVidWcnLCAnZGphbmdvLnRlbXBsYXRlLmNvbnRleHRfcHJvY2Vzc29ycy5yZXF1ZXN0JywgJ2RqYW5nby5jb250cmliLmF1dGguY29udGV4dF9wcm9jZXNzb3JzLmF1dGgnLCAnZGphbmdvLmNvbnRyaWIubWVzc2FnZXMuY29udGV4dF9wcm9jZXNzb3JzLm1lc3NhZ2VzJ119fV0KVEVTVF9OT05fU0VSSUFMSVpFRF9BUFBTID0gW10KVEVTVF9SVU5ORVIgPSAnZGphbmdvX25vc2UuTm9zZVRlc3RTdWl0ZVJ1bm5lcicKVEhPVVNBTkRfU0VQQVJBVE9SID0gJywnClRJTUVfRk9STUFUID0gJ1AnClRJTUVfSU5QVVRfRk9STUFUUyA9IFsnJUg6JU06JVMnLCAnJUg6JU06JVMuJWYnLCAnJUg6JU0nXQpUSU1FX1pPTkUgPSAnVVRDJwpVU0VfRVRBR1MgPSBGYWxzZQpVU0VfSTE4TiA9IFRydWUKVVNFX0wxME4gPSBUcnVlClVTRV9USE9VU0FORF9TRVBBUkFUT1IgPSBGYWxzZQpVU0VfVFogPSBUcnVlClVTRV9YX0ZPUldBUkRFRF9IT1NUID0gRmFsc2UKVVNFX1hfRk9SV0FSREVEX1BPUlQgPSBGYWxzZQpXRUJQQUNLX0xPQURFUiA9IHsnREVGQVVMVCc6IHsnQlVORExFX0RJUl9OQU1FJzogJ2J1bmRsZXMvJywgJ1NUQVRTX0ZJTEUnOiAnRDpcXFBQTEFcXHdlYnBhY2stc3RhdHMuanNvbid9fQpXU0dJX0FQUExJQ0FUSU9OID0gJ2thcGUud3NnaS5hcHBsaWNhdGlvbicKWF9GUkFNRV9PUFRJT05TID0gJ1NBTUVPUklHSU4nCllFQVJfTU9OVEhfRk9STUFUID0gJ0YgWScKCgpZb3UncmUgc2VlaW5nIHRoaXMgZXJyb3IgYmVjYXVzZSB5b3UgaGF2ZSBERUJVRyA9IFRydWUgaW4geW91cgpEamFuZ28gc2V0dGluZ3MgZmlsZS4gQ2hhbmdlIHRoYXQgdG8gRmFsc2UsIGFuZCBEamFuZ28gd2lsbApkaXNwbGF5IGEgc3RhbmRhcmQgcGFnZSBnZW5lcmF0ZWQgYnkgdGhlIGhhbmRsZXIgZm9yIHRoaXMgc3RhdHVzIGNvZGUuCgo=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/plain\"}" - } -}, -{ - "model": "silk.response", - "pk": "76814119-7864-4f8a-8ab3-1bd34f23ad8b", - "fields": { - "request": "37dd4b34-7188-4721-bc35-a84a70e00284", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "76c0504c-285b-4a5b-a344-d3ff9ab7b221", - "fields": { - "request": "d95c74b4-3cb6-48d3-b8db-51f1858078db", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "77283722-4344-4e34-b588-c8c59d26414f", - "fields": { - "request": "5581e623-456c-494e-9632-ed0a379a6886", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "77ea595e-fd2c-4028-8266-ee47a2efd0f4", - "fields": { - "request": "b3b902c6-b609-43d9-83bd-49aeb26d562c", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "794aa7ff-7995-4615-91f0-688a32a955bb", - "fields": { - "request": "978c4c7c-3c00-4248-aaef-730c5880e9a5", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPkFkZCB1c2VyIHwgRGphbmdvIHNpdGUgYWRtaW48L3RpdGxlPgo8bGluayByZWw9InN0eWxlc2hlZXQiIHR5cGU9InRleHQvY3NzIiBocmVmPSIvYXNzZXRzL2FkbWluL2Nzcy9iYXNlLmNzcyIgLz4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvZm9ybXMuY3NzIiAvPgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9jb3JlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IvanF1ZXJ5L2pxdWVyeS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvanF1ZXJ5LmluaXQuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2FkbWluL1JlbGF0ZWRPYmplY3RMb29rdXBzLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hY3Rpb25zLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy91cmxpZnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL3ByZXBvcHVsYXRlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IveHJlZ2V4cC94cmVnZXhwLmpzIj48L3NjcmlwdD4KCjxtZXRhIG5hbWU9InJvYm90cyIgY29udGVudD0iTk9ORSxOT0FSQ0hJVkUiIC8+CjwvaGVhZD4KCgo8Ym9keSBjbGFzcz0iIGFwcC1hdXRoIG1vZGVsLXVzZXIgY2hhbmdlLWZvcm0iCiAgZGF0YS1hZG1pbi11dGMtb2Zmc2V0PSIwIj4KCjwhLS0gQ29udGFpbmVyIC0tPgo8ZGl2IGlkPSJjb250YWluZXIiPgoKICAgIAogICAgPCEtLSBIZWFkZXIgLS0+CiAgICA8ZGl2IGlkPSJoZWFkZXIiPgogICAgICAgIDxkaXYgaWQ9ImJyYW5kaW5nIj4KICAgICAgICAKPGgxIGlkPSJzaXRlLW5hbWUiPjxhIGhyZWY9Ii9hZG1pbi8iPkRqYW5nbyBhZG1pbmlzdHJhdGlvbjwvYT48L2gxPgoKICAgICAgICA8L2Rpdj4KICAgICAgICAKICAgICAgICAKICAgICAgICA8ZGl2IGlkPSJ1c2VyLXRvb2xzIj4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICBXZWxjb21lLAogICAgICAgICAgICAgICAgPHN0cm9uZz5rYXBlPC9zdHJvbmc+LgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvIj5WaWV3IHNpdGU8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL3Bhc3N3b3JkX2NoYW5nZS8iPkNoYW5nZSBwYXNzd29yZDwvYT4gLwogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vbG9nb3V0LyI+TG9nIG91dDwvYT4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgCiAgICA8L2Rpdj4KICAgIDwhLS0gRU5EIEhlYWRlciAtLT4KICAgIAo8ZGl2IGNsYXNzPSJicmVhZGNydW1icyI+CjxhIGhyZWY9Ii9hZG1pbi8iPkhvbWU8L2E+CiZyc2FxdW87IDxhIGhyZWY9Ii9hZG1pbi9hdXRoLyI+QXV0aGVudGljYXRpb24gYW5kIEF1dGhvcml6YXRpb248L2E+CiZyc2FxdW87IDxhIGhyZWY9Ii9hZG1pbi9hdXRoL3VzZXIvIj5Vc2VyczwvYT4KJnJzYXF1bzsgQWRkIHVzZXIKPC9kaXY+CgogICAgCgogICAgCiAgICAgICAgCiAgICAKCiAgICA8IS0tIENvbnRlbnQgLS0+CiAgICA8ZGl2IGlkPSJjb250ZW50IiBjbGFzcz0iY29sTSI+CiAgICAgICAgCiAgICAgICAgPGgxPkFkZCB1c2VyPC9oMT4KICAgICAgICA8ZGl2IGlkPSJjb250ZW50LW1haW4iPgoKCgo8Zm9ybSBlbmN0eXBlPSJtdWx0aXBhcnQvZm9ybS1kYXRhIiBhY3Rpb249IiIgbWV0aG9kPSJwb3N0IiBpZD0idXNlcl9mb3JtIiBub3ZhbGlkYXRlPjxpbnB1dCB0eXBlPSdoaWRkZW4nIG5hbWU9J2NzcmZtaWRkbGV3YXJldG9rZW4nIHZhbHVlPSdpaHA4a0g0bXpSTzlvbmpLZnBLTzU0QkN6dE5lSU14WEhud1h3ZFdobU9aeUx2bGNZUWZnWExpbXhvVDMyTXRNJyAvPgogIAogICAgPHA+Rmlyc3QsIGVudGVyIGEgdXNlcm5hbWUgYW5kIHBhc3N3b3JkLiBUaGVuLCB5b3UnbGwgYmUgYWJsZSB0byBlZGl0IG1vcmUgdXNlciBvcHRpb25zLjwvcD4KICAKCjxkaXY+CgoKCgoKCgogIDxmaWVsZHNldCBjbGFzcz0ibW9kdWxlIGFsaWduZWQgd2lkZSI+CiAgICAKICAgIAogICAgCiAgICAgICAgPGRpdiBjbGFzcz0iZm9ybS1yb3cgZmllbGQtdXNlcm5hbWUiPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgY2xhc3M9InJlcXVpcmVkIiBmb3I9ImlkX3VzZXJuYW1lIj5Vc2VybmFtZTo8L2xhYmVsPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxpbnB1dCBhdXRvZm9jdXM9IiIgY2xhc3M9InZUZXh0RmllbGQiIGlkPSJpZF91c2VybmFtZSIgbWF4bGVuZ3RoPSIxNTAiIG5hbWU9InVzZXJuYW1lIiB0eXBlPSJ0ZXh0IiByZXF1aXJlZCAvPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPHAgY2xhc3M9ImhlbHAiPlJlcXVpcmVkLiAxNTAgY2hhcmFjdGVycyBvciBmZXdlci4gTGV0dGVycywgZGlnaXRzIGFuZCBALy4vKy8tL18gb25seS48L3A+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC1wYXNzd29yZDEiPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgY2xhc3M9InJlcXVpcmVkIiBmb3I9ImlkX3Bhc3N3b3JkMSI+UGFzc3dvcmQ6PC9sYWJlbD4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8aW5wdXQgaWQ9ImlkX3Bhc3N3b3JkMSIgbmFtZT0icGFzc3dvcmQxIiB0eXBlPSJwYXNzd29yZCIgcmVxdWlyZWQgLz4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC1wYXNzd29yZDIiPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgY2xhc3M9InJlcXVpcmVkIiBmb3I9ImlkX3Bhc3N3b3JkMiI+UGFzc3dvcmQgY29uZmlybWF0aW9uOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgPGlucHV0IGlkPSJpZF9wYXNzd29yZDIiIG5hbWU9InBhc3N3b3JkMiIgdHlwZT0icGFzc3dvcmQiIHJlcXVpcmVkIC8+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8cCBjbGFzcz0iaGVscCI+RW50ZXIgdGhlIHNhbWUgcGFzc3dvcmQgYXMgYmVmb3JlLCBmb3IgdmVyaWZpY2F0aW9uLjwvcD4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDwvZGl2PgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgIAo8L2ZpZWxkc2V0PgoKCgoKCgoKCgoKCgoKPGRpdiBjbGFzcz0ic3VibWl0LXJvdyI+CjxpbnB1dCB0eXBlPSJzdWJtaXQiIHZhbHVlPSJTYXZlIiBjbGFzcz0iZGVmYXVsdCIgbmFtZT0iX3NhdmUiIC8+CgoKPGlucHV0IHR5cGU9InN1Ym1pdCIgdmFsdWU9IlNhdmUgYW5kIGFkZCBhbm90aGVyIiBuYW1lPSJfYWRkYW5vdGhlciIgLz4KPGlucHV0IHR5cGU9InN1Ym1pdCIgdmFsdWU9IlNhdmUgYW5kIGNvbnRpbnVlIGVkaXRpbmciIG5hbWU9Il9jb250aW51ZSIgLz4KPC9kaXY+CgoKCiAgICA8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIKICAgICAgICAgICAgaWQ9ImRqYW5nby1hZG1pbi1mb3JtLWFkZC1jb25zdGFudHMiCiAgICAgICAgICAgIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9jaGFuZ2VfZm9ybS5qcyIKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICBkYXRhLW1vZGVsLW5hbWU9InVzZXIiCiAgICAgICAgICAgID4KICAgIDwvc2NyaXB0PgoKCgoKPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiCiAgICAgICAgaWQ9ImRqYW5nby1hZG1pbi1wcmVwb3B1bGF0ZWQtZmllbGRzLWNvbnN0YW50cyIKICAgICAgICBzcmM9Ii9hc3NldHMvYWRtaW4vanMvcHJlcG9wdWxhdGVfaW5pdC5qcyIKICAgICAgICBkYXRhLXByZXBvcHVsYXRlZC1maWVsZHM9IltdIj4KPC9zY3JpcHQ+CgoKPC9kaXY+CjwvZm9ybT48L2Rpdj4KCiAgICAgICAgCiAgICAgICAgPGJyIGNsYXNzPSJjbGVhciIgLz4KICAgIDwvZGl2PgogICAgPCEtLSBFTkQgQ29udGVudCAtLT4KCiAgICA8ZGl2IGlkPSJmb290ZXIiPjwvZGl2Pgo8L2Rpdj4KPCEtLSBFTkQgQ29udGFpbmVyIC0tPgoKPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 14:53:00 GMT\", \"Expires\": \"Mon, 27 Mar 2017 14:53:00 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "79d21195-6381-4303-815f-2dfe0f69122c", - "fields": { - "request": "f0578b22-8d60-4fb1-ab15-d876fc737597", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "79e72e34-35eb-4f94-9dad-64a4ba2368a9", - "fields": { - "request": "37523ba5-773f-4f0e-a6a9-4c465c61b235", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "7ae29e86-6b6e-42fd-9243-56efa427de58", - "fields": { - "request": "6b6c0a5d-8201-4c70-9973-37d57abf4b75", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "7bb47a50-0cd6-4eab-88e3-bcca8da9886c", - "fields": { - "request": "a6997517-dee8-4522-86bf-1ab24188f745", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPkNoYW5nZSB1c2VyIHwgRGphbmdvIHNpdGUgYWRtaW48L3RpdGxlPgo8bGluayByZWw9InN0eWxlc2hlZXQiIHR5cGU9InRleHQvY3NzIiBocmVmPSIvYXNzZXRzL2FkbWluL2Nzcy9iYXNlLmNzcyIgLz4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvZm9ybXMuY3NzIiAvPgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9jb3JlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IvanF1ZXJ5L2pxdWVyeS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvanF1ZXJ5LmluaXQuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2FkbWluL1JlbGF0ZWRPYmplY3RMb29rdXBzLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hY3Rpb25zLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy91cmxpZnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL3ByZXBvcHVsYXRlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IveHJlZ2V4cC94cmVnZXhwLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9TZWxlY3RCb3guanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL1NlbGVjdEZpbHRlcjIuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2NhbGVuZGFyLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hZG1pbi9EYXRlVGltZVNob3J0Y3V0cy5qcyI+PC9zY3JpcHQ+Cgo8bWV0YSBuYW1lPSJyb2JvdHMiIGNvbnRlbnQ9Ik5PTkUsTk9BUkNISVZFIiAvPgo8L2hlYWQ+CgoKPGJvZHkgY2xhc3M9IiBhcHAtYXV0aCBtb2RlbC11c2VyIGNoYW5nZS1mb3JtIgogIGRhdGEtYWRtaW4tdXRjLW9mZnNldD0iMCI+Cgo8IS0tIENvbnRhaW5lciAtLT4KPGRpdiBpZD0iY29udGFpbmVyIj4KCiAgICAKICAgIDwhLS0gSGVhZGVyIC0tPgogICAgPGRpdiBpZD0iaGVhZGVyIj4KICAgICAgICA8ZGl2IGlkPSJicmFuZGluZyI+CiAgICAgICAgCjxoMSBpZD0ic2l0ZS1uYW1lIj48YSBocmVmPSIvYWRtaW4vIj5EamFuZ28gYWRtaW5pc3RyYXRpb248L2E+PC9oMT4KCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgPGRpdiBpZD0idXNlci10b29scyI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgV2VsY29tZSwKICAgICAgICAgICAgICAgIDxzdHJvbmc+a2FwZTwvc3Ryb25nPi4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iLyI+VmlldyBzaXRlPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9wYXNzd29yZF9jaGFuZ2UvIj5DaGFuZ2UgcGFzc3dvcmQ8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2xvZ291dC8iPkxvZyBvdXQ8L2E+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIAogICAgPC9kaXY+CiAgICA8IS0tIEVORCBIZWFkZXIgLS0+CiAgICAKPGRpdiBjbGFzcz0iYnJlYWRjcnVtYnMiPgo8YSBocmVmPSIvYWRtaW4vIj5Ib21lPC9hPgomcnNhcXVvOyA8YSBocmVmPSIvYWRtaW4vYXV0aC8iPkF1dGhlbnRpY2F0aW9uIGFuZCBBdXRob3JpemF0aW9uPC9hPgomcnNhcXVvOyA8YSBocmVmPSIvYWRtaW4vYXV0aC91c2VyLyI+VXNlcnM8L2E+CiZyc2FxdW87IGZhcmhhbgo8L2Rpdj4KCiAgICAKCiAgICAKICAgICAgICAKICAgIAoKICAgIDwhLS0gQ29udGVudCAtLT4KICAgIDxkaXYgaWQ9ImNvbnRlbnQiIGNsYXNzPSJjb2xNIj4KICAgICAgICAKICAgICAgICA8aDE+Q2hhbmdlIHVzZXI8L2gxPgogICAgICAgIDxkaXYgaWQ9ImNvbnRlbnQtbWFpbiI+CgoKICA8dWwgY2xhc3M9Im9iamVjdC10b29scyI+CiAgICAKICAgIDxsaT4KICAgICAgICAKICAgICAgICA8YSBocmVmPSIvYWRtaW4vYXV0aC91c2VyLzIvaGlzdG9yeS8iIGNsYXNzPSJoaXN0b3J5bGluayI+SGlzdG9yeTwvYT4KICAgIDwvbGk+CiAgICAKICAgIAogIDwvdWw+CgoKPGZvcm0gZW5jdHlwZT0ibXVsdGlwYXJ0L2Zvcm0tZGF0YSIgYWN0aW9uPSIiIG1ldGhvZD0icG9zdCIgaWQ9InVzZXJfZm9ybSIgbm92YWxpZGF0ZT48aW5wdXQgdHlwZT0naGlkZGVuJyBuYW1lPSdjc3JmbWlkZGxld2FyZXRva2VuJyB2YWx1ZT0nRnNRTFJKa0dPVlYwUzBSQXFHbzFXOUxVR2JjbkVWVVg0eVhBM2ZjQkJTNnBmOFQyOTdUdE9Rc0VFNmljWVZRTScgLz4KPGRpdj4KCgoKCgoKCiAgPGZpZWxkc2V0IGNsYXNzPSJtb2R1bGUgYWxpZ25lZCAiPgogICAgCiAgICAKICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImZvcm0tcm93IGZpZWxkLXVzZXJuYW1lIj4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGRpdj4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPGxhYmVsIGNsYXNzPSJyZXF1aXJlZCIgZm9yPSJpZF91c2VybmFtZSI+VXNlcm5hbWU6PC9sYWJlbD4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8aW5wdXQgY2xhc3M9InZUZXh0RmllbGQiIGlkPSJpZF91c2VybmFtZSIgbWF4bGVuZ3RoPSIxNTAiIG5hbWU9InVzZXJuYW1lIiB0eXBlPSJ0ZXh0IiB2YWx1ZT0iZmFyaGFuIiByZXF1aXJlZCAvPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPHAgY2xhc3M9ImhlbHAiPlJlcXVpcmVkLiAxNTAgY2hhcmFjdGVycyBvciBmZXdlci4gTGV0dGVycywgZGlnaXRzIGFuZCBALy4vKy8tL18gb25seS48L3A+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC1wYXNzd29yZCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXY+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxsYWJlbCBmb3I9ImlkX3Bhc3N3b3JkIj5QYXNzd29yZDo8L2xhYmVsPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxkaXYgaWQ9ImlkX3Bhc3N3b3JkIj48c3Ryb25nPmFsZ29yaXRobTwvc3Ryb25nPjogcGJrZGYyX3NoYTI1NiA8c3Ryb25nPml0ZXJhdGlvbnM8L3N0cm9uZz46IDMwMDAwIDxzdHJvbmc+c2FsdDwvc3Ryb25nPjogbnhMSWE3KioqKioqIDxzdHJvbmc+aGFzaDwvc3Ryb25nPjogZjJLUUZIKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKiogPC9kaXY+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8cCBjbGFzcz0iaGVscCI+UmF3IHBhc3N3b3JkcyBhcmUgbm90IHN0b3JlZCwgc28gdGhlcmUgaXMgbm8gd2F5IHRvIHNlZSB0aGlzIHVzZXIncyBwYXNzd29yZCwgYnV0IHlvdSBjYW4gY2hhbmdlIHRoZSBwYXNzd29yZCB1c2luZyA8YSBocmVmPSIuLi9wYXNzd29yZC8iPnRoaXMgZm9ybTwvYT4uPC9wPgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPC9kaXY+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgCjwvZmllbGRzZXQ+CgoKICA8ZmllbGRzZXQgY2xhc3M9Im1vZHVsZSBhbGlnbmVkICI+CiAgICA8aDI+UGVyc29uYWwgaW5mbzwvaDI+CiAgICAKICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImZvcm0tcm93IGZpZWxkLWZpcnN0X25hbWUiPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgZm9yPSJpZF9maXJzdF9uYW1lIj5GaXJzdCBuYW1lOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgPGlucHV0IGNsYXNzPSJ2VGV4dEZpZWxkIiBpZD0iaWRfZmlyc3RfbmFtZSIgbWF4bGVuZ3RoPSIzMCIgbmFtZT0iZmlyc3RfbmFtZSIgdHlwZT0idGV4dCIgLz4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC1sYXN0X25hbWUiPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgZm9yPSJpZF9sYXN0X25hbWUiPkxhc3QgbmFtZTo8L2xhYmVsPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxpbnB1dCBjbGFzcz0idlRleHRGaWVsZCIgaWQ9ImlkX2xhc3RfbmFtZSIgbWF4bGVuZ3RoPSIzMCIgbmFtZT0ibGFzdF9uYW1lIiB0eXBlPSJ0ZXh0IiAvPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDwvZGl2PgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImZvcm0tcm93IGZpZWxkLWVtYWlsIj4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGRpdj4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPGxhYmVsIGZvcj0iaWRfZW1haWwiPkVtYWlsIGFkZHJlc3M6PC9sYWJlbD4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8aW5wdXQgY2xhc3M9InZUZXh0RmllbGQiIGlkPSJpZF9lbWFpbCIgbWF4bGVuZ3RoPSIyNTQiIG5hbWU9ImVtYWlsIiB0eXBlPSJlbWFpbCIgLz4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKPC9maWVsZHNldD4KCgogIDxmaWVsZHNldCBjbGFzcz0ibW9kdWxlIGFsaWduZWQgIj4KICAgIDxoMj5QZXJtaXNzaW9uczwvaDI+CiAgICAKICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImZvcm0tcm93IGZpZWxkLWlzX2FjdGl2ZSI+CiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9ImNoZWNrYm94LXJvdyI+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxpbnB1dCBjaGVja2VkPSJjaGVja2VkIiBpZD0iaWRfaXNfYWN0aXZlIiBuYW1lPSJpc19hY3RpdmUiIHR5cGU9ImNoZWNrYm94IiAvPjxsYWJlbCBjbGFzcz0idkNoZWNrYm94TGFiZWwiIGZvcj0iaWRfaXNfYWN0aXZlIj5BY3RpdmU8L2xhYmVsPgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8cCBjbGFzcz0iaGVscCI+RGVzaWduYXRlcyB3aGV0aGVyIHRoaXMgdXNlciBzaG91bGQgYmUgdHJlYXRlZCBhcyBhY3RpdmUuIFVuc2VsZWN0IHRoaXMgaW5zdGVhZCBvZiBkZWxldGluZyBhY2NvdW50cy48L3A+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC1pc19zdGFmZiI+CiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9ImNoZWNrYm94LXJvdyI+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxpbnB1dCBpZD0iaWRfaXNfc3RhZmYiIG5hbWU9ImlzX3N0YWZmIiB0eXBlPSJjaGVja2JveCIgLz48bGFiZWwgY2xhc3M9InZDaGVja2JveExhYmVsIiBmb3I9ImlkX2lzX3N0YWZmIj5TdGFmZiBzdGF0dXM8L2xhYmVsPgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8cCBjbGFzcz0iaGVscCI+RGVzaWduYXRlcyB3aGV0aGVyIHRoZSB1c2VyIGNhbiBsb2cgaW50byB0aGlzIGFkbWluIHNpdGUuPC9wPgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPC9kaXY+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgCiAgICAgICAgPGRpdiBjbGFzcz0iZm9ybS1yb3cgZmllbGQtaXNfc3VwZXJ1c2VyIj4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGRpdiBjbGFzcz0iY2hlY2tib3gtcm93Ij4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPGlucHV0IGlkPSJpZF9pc19zdXBlcnVzZXIiIG5hbWU9ImlzX3N1cGVydXNlciIgdHlwZT0iY2hlY2tib3giIC8+PGxhYmVsIGNsYXNzPSJ2Q2hlY2tib3hMYWJlbCIgZm9yPSJpZF9pc19zdXBlcnVzZXIiPlN1cGVydXNlciBzdGF0dXM8L2xhYmVsPgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8cCBjbGFzcz0iaGVscCI+RGVzaWduYXRlcyB0aGF0IHRoaXMgdXNlciBoYXMgYWxsIHBlcm1pc3Npb25zIHdpdGhvdXQgZXhwbGljaXRseSBhc3NpZ25pbmcgdGhlbS48L3A+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC1ncm91cHMiPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgZm9yPSJpZF9ncm91cHMiPkdyb3Vwczo8L2xhYmVsPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIAo8ZGl2IGNsYXNzPSJyZWxhdGVkLXdpZGdldC13cmFwcGVyIj4KICAgIDxzZWxlY3QgbXVsdGlwbGU9Im11bHRpcGxlIiBjbGFzcz0ic2VsZWN0ZmlsdGVyIiBkYXRhLWZpZWxkLW5hbWU9Imdyb3VwcyIgZGF0YS1pcy1zdGFja2VkPSIwIiBpZD0iaWRfZ3JvdXBzIiBuYW1lPSJncm91cHMiPgo8L3NlbGVjdD4KICAgIAogICAgICAgIAogICAgICAgIAogICAgICAgIDxhIGNsYXNzPSJyZWxhdGVkLXdpZGdldC13cmFwcGVyLWxpbmsgYWRkLXJlbGF0ZWQiIGlkPSJhZGRfaWRfZ3JvdXBzIgogICAgICAgICAgICBocmVmPSIvYWRtaW4vYXV0aC9ncm91cC9hZGQvP190b19maWVsZD1pZCZhbXA7X3BvcHVwPTEiCiAgICAgICAgICAgIHRpdGxlPSJBZGQgYW5vdGhlciBncm91cCI+CiAgICAgICAgICAgIDxpbWcgc3JjPSIvYXNzZXRzL2FkbWluL2ltZy9pY29uLWFkZGxpbmsuc3ZnIiBhbHQ9IkFkZCIvPgogICAgICAgIDwvYT4KICAgICAgICAKICAgICAgICAKICAgIAo8L2Rpdj4KCiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8cCBjbGFzcz0iaGVscCI+VGhlIGdyb3VwcyB0aGlzIHVzZXIgYmVsb25ncyB0by4gQSB1c2VyIHdpbGwgZ2V0IGFsbCBwZXJtaXNzaW9ucyBncmFudGVkIHRvIGVhY2ggb2YgdGhlaXIgZ3JvdXBzLiBIb2xkIGRvd24gIkNvbnRyb2wiLCBvciAiQ29tbWFuZCIgb24gYSBNYWMsIHRvIHNlbGVjdCBtb3JlIHRoYW4gb25lLjwvcD4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDwvZGl2PgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImZvcm0tcm93IGZpZWxkLXVzZXJfcGVybWlzc2lvbnMiPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgZm9yPSJpZF91c2VyX3Blcm1pc3Npb25zIj5Vc2VyIHBlcm1pc3Npb25zOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgCjxkaXYgY2xhc3M9InJlbGF0ZWQtd2lkZ2V0LXdyYXBwZXIiPgogICAgPHNlbGVjdCBtdWx0aXBsZT0ibXVsdGlwbGUiIGNsYXNzPSJzZWxlY3RmaWx0ZXIiIGRhdGEtZmllbGQtbmFtZT0idXNlciBwZXJtaXNzaW9ucyIgZGF0YS1pcy1zdGFja2VkPSIwIiBpZD0iaWRfdXNlcl9wZXJtaXNzaW9ucyIgbmFtZT0idXNlcl9wZXJtaXNzaW9ucyI+CjxvcHRpb24gdmFsdWU9IjEiPmFkbWluIHwgbG9nIGVudHJ5IHwgQ2FuIGFkZCBsb2cgZW50cnk8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMiI+YWRtaW4gfCBsb2cgZW50cnkgfCBDYW4gY2hhbmdlIGxvZyBlbnRyeTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIzIj5hZG1pbiB8IGxvZyBlbnRyeSB8IENhbiBkZWxldGUgbG9nIGVudHJ5PC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjEwIj5hdXRoIHwgZ3JvdXAgfCBDYW4gYWRkIGdyb3VwPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjExIj5hdXRoIHwgZ3JvdXAgfCBDYW4gY2hhbmdlIGdyb3VwPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjEyIj5hdXRoIHwgZ3JvdXAgfCBDYW4gZGVsZXRlIGdyb3VwPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjQiPmF1dGggfCBwZXJtaXNzaW9uIHwgQ2FuIGFkZCBwZXJtaXNzaW9uPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjUiPmF1dGggfCBwZXJtaXNzaW9uIHwgQ2FuIGNoYW5nZSBwZXJtaXNzaW9uPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjYiPmF1dGggfCBwZXJtaXNzaW9uIHwgQ2FuIGRlbGV0ZSBwZXJtaXNzaW9uPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjciPmF1dGggfCB1c2VyIHwgQ2FuIGFkZCB1c2VyPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjgiPmF1dGggfCB1c2VyIHwgQ2FuIGNoYW5nZSB1c2VyPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjkiPmF1dGggfCB1c2VyIHwgQ2FuIGRlbGV0ZSB1c2VyPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjEzIj5jb250ZW50dHlwZXMgfCBjb250ZW50IHR5cGUgfCBDYW4gYWRkIGNvbnRlbnQgdHlwZTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIxNCI+Y29udGVudHR5cGVzIHwgY29udGVudCB0eXBlIHwgQ2FuIGNoYW5nZSBjb250ZW50IHR5cGU8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMTUiPmNvbnRlbnR0eXBlcyB8IGNvbnRlbnQgdHlwZSB8IENhbiBkZWxldGUgY29udGVudCB0eXBlPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjI1Ij5jb3JlIHwgYXBwbGljYXRpb24gfCBDYW4gYWRkIGFwcGxpY2F0aW9uPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjI2Ij5jb3JlIHwgYXBwbGljYXRpb24gfCBDYW4gY2hhbmdlIGFwcGxpY2F0aW9uPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjI3Ij5jb3JlIHwgYXBwbGljYXRpb24gfCBDYW4gZGVsZXRlIGFwcGxpY2F0aW9uPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjE5Ij5jb3JlIHwgY29tcGFueSB8IENhbiBhZGQgY29tcGFueTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIyMCI+Y29yZSB8IGNvbXBhbnkgfCBDYW4gY2hhbmdlIGNvbXBhbnk8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMjEiPmNvcmUgfCBjb21wYW55IHwgQ2FuIGRlbGV0ZSBjb21wYW55PC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjIyIj5jb3JlIHwgc3R1ZGVudCB8IENhbiBhZGQgc3R1ZGVudDwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIyMyI+Y29yZSB8IHN0dWRlbnQgfCBDYW4gY2hhbmdlIHN0dWRlbnQ8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMjQiPmNvcmUgfCBzdHVkZW50IHwgQ2FuIGRlbGV0ZSBzdHVkZW50PC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjI4Ij5jb3JlIHwgc3VwZXJ2aXNvciB8IENhbiBhZGQgc3VwZXJ2aXNvcjwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIyOSI+Y29yZSB8IHN1cGVydmlzb3IgfCBDYW4gY2hhbmdlIHN1cGVydmlzb3I8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMzAiPmNvcmUgfCBzdXBlcnZpc29yIHwgQ2FuIGRlbGV0ZSBzdXBlcnZpc29yPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjMxIj5jb3JlIHwgdmFjYW5jeSB8IENhbiBhZGQgdmFjYW5jeTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIzMiI+Y29yZSB8IHZhY2FuY3kgfCBDYW4gY2hhbmdlIHZhY2FuY3k8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMzMiPmNvcmUgfCB2YWNhbmN5IHwgQ2FuIGRlbGV0ZSB2YWNhbmN5PC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjE2Ij5zZXNzaW9ucyB8IHNlc3Npb24gfCBDYW4gYWRkIHNlc3Npb248L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMTciPnNlc3Npb25zIHwgc2Vzc2lvbiB8IENhbiBjaGFuZ2Ugc2Vzc2lvbjwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIxOCI+c2Vzc2lvbnMgfCBzZXNzaW9uIHwgQ2FuIGRlbGV0ZSBzZXNzaW9uPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjQzIj5zaWxrIHwgcHJvZmlsZSB8IENhbiBhZGQgcHJvZmlsZTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSI0NCI+c2lsayB8IHByb2ZpbGUgfCBDYW4gY2hhbmdlIHByb2ZpbGU8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iNDUiPnNpbGsgfCBwcm9maWxlIHwgQ2FuIGRlbGV0ZSBwcm9maWxlPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjM0Ij5zaWxrIHwgcmVxdWVzdCB8IENhbiBhZGQgcmVxdWVzdDwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIzNSI+c2lsayB8IHJlcXVlc3QgfCBDYW4gY2hhbmdlIHJlcXVlc3Q8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMzYiPnNpbGsgfCByZXF1ZXN0IHwgQ2FuIGRlbGV0ZSByZXF1ZXN0PC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjQwIj5zaWxrIHwgcmVzcG9uc2UgfCBDYW4gYWRkIHJlc3BvbnNlPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjQxIj5zaWxrIHwgcmVzcG9uc2UgfCBDYW4gY2hhbmdlIHJlc3BvbnNlPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjQyIj5zaWxrIHwgcmVzcG9uc2UgfCBDYW4gZGVsZXRlIHJlc3BvbnNlPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjM3Ij5zaWxrIHwgc3FsIHF1ZXJ5IHwgQ2FuIGFkZCBzcWwgcXVlcnk8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMzgiPnNpbGsgfCBzcWwgcXVlcnkgfCBDYW4gY2hhbmdlIHNxbCBxdWVyeTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIzOSI+c2lsayB8IHNxbCBxdWVyeSB8IENhbiBkZWxldGUgc3FsIHF1ZXJ5PC9vcHRpb24+Cjwvc2VsZWN0PgogICAgCiAgICAgICAgCiAgICAgICAgCiAgICAgICAgCiAgICAKPC9kaXY+CgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPHAgY2xhc3M9ImhlbHAiPlNwZWNpZmljIHBlcm1pc3Npb25zIGZvciB0aGlzIHVzZXIuIEhvbGQgZG93biAiQ29udHJvbCIsIG9yICJDb21tYW5kIiBvbiBhIE1hYywgdG8gc2VsZWN0IG1vcmUgdGhhbiBvbmUuPC9wPgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPC9kaXY+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgCjwvZmllbGRzZXQ+CgoKICA8ZmllbGRzZXQgY2xhc3M9Im1vZHVsZSBhbGlnbmVkICI+CiAgICA8aDI+SW1wb3J0YW50IGRhdGVzPC9oMj4KICAgIAogICAgCiAgICAgICAgPGRpdiBjbGFzcz0iZm9ybS1yb3cgZmllbGQtbGFzdF9sb2dpbiI+CiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXY+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxsYWJlbCBmb3I9ImlkX2xhc3RfbG9naW5fMCI+TGFzdCBsb2dpbjo8L2xhYmVsPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxwIGNsYXNzPSJkYXRldGltZSI+RGF0ZTogPGlucHV0IGNsYXNzPSJ2RGF0ZUZpZWxkIiBpZD0iaWRfbGFzdF9sb2dpbl8wIiBuYW1lPSJsYXN0X2xvZ2luXzAiIHNpemU9IjEwIiB0eXBlPSJ0ZXh0IiAvPjxiciAvPlRpbWU6IDxpbnB1dCBjbGFzcz0idlRpbWVGaWVsZCIgaWQ9ImlkX2xhc3RfbG9naW5fMSIgbmFtZT0ibGFzdF9sb2dpbl8xIiBzaXplPSI4IiB0eXBlPSJ0ZXh0IiAvPjwvcD4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC1kYXRlX2pvaW5lZCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXY+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxsYWJlbCBjbGFzcz0icmVxdWlyZWQiIGZvcj0iaWRfZGF0ZV9qb2luZWRfMCI+RGF0ZSBqb2luZWQ6PC9sYWJlbD4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8cCBjbGFzcz0iZGF0ZXRpbWUiPkRhdGU6IDxpbnB1dCBjbGFzcz0idkRhdGVGaWVsZCIgaWQ9ImlkX2RhdGVfam9pbmVkXzAiIG5hbWU9ImRhdGVfam9pbmVkXzAiIHNpemU9IjEwIiB0eXBlPSJ0ZXh0IiB2YWx1ZT0iMjAxNy0wMy0yNyIgcmVxdWlyZWQgLz48YnIgLz5UaW1lOiA8aW5wdXQgY2xhc3M9InZUaW1lRmllbGQiIGlkPSJpZF9kYXRlX2pvaW5lZF8xIiBuYW1lPSJkYXRlX2pvaW5lZF8xIiBzaXplPSI4IiB0eXBlPSJ0ZXh0IiB2YWx1ZT0iMTQ6NTI6MzQiIHJlcXVpcmVkIC8+PC9wPjxpbnB1dCBpZD0iaW5pdGlhbC1pZF9kYXRlX2pvaW5lZF8wIiBuYW1lPSJpbml0aWFsLWRhdGVfam9pbmVkXzAiIHR5cGU9ImhpZGRlbiIgdmFsdWU9IjIwMTctMDMtMjciIC8+PGlucHV0IGlkPSJpbml0aWFsLWlkX2RhdGVfam9pbmVkXzEiIG5hbWU9ImluaXRpYWwtZGF0ZV9qb2luZWRfMSIgdHlwZT0iaGlkZGVuIiB2YWx1ZT0iMTQ6NTI6MzQiIC8+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPC9kaXY+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgCjwvZmllbGRzZXQ+CgoKCgoKCgoKCgoKCgo8ZGl2IGNsYXNzPSJzdWJtaXQtcm93Ij4KPGlucHV0IHR5cGU9InN1Ym1pdCIgdmFsdWU9IlNhdmUiIGNsYXNzPSJkZWZhdWx0IiBuYW1lPSJfc2F2ZSIgLz4KCiAgICAKICAgIDxwIGNsYXNzPSJkZWxldGVsaW5rLWJveCI+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8yL2RlbGV0ZS8iIGNsYXNzPSJkZWxldGVsaW5rIj5EZWxldGU8L2E+PC9wPgoKCjxpbnB1dCB0eXBlPSJzdWJtaXQiIHZhbHVlPSJTYXZlIGFuZCBhZGQgYW5vdGhlciIgbmFtZT0iX2FkZGFub3RoZXIiIC8+CjxpbnB1dCB0eXBlPSJzdWJtaXQiIHZhbHVlPSJTYXZlIGFuZCBjb250aW51ZSBlZGl0aW5nIiBuYW1lPSJfY29udGludWUiIC8+CjwvZGl2PgoKCgogICAgPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiCiAgICAgICAgICAgIGlkPSJkamFuZ28tYWRtaW4tZm9ybS1hZGQtY29uc3RhbnRzIgogICAgICAgICAgICBzcmM9Ii9hc3NldHMvYWRtaW4vanMvY2hhbmdlX2Zvcm0uanMiCiAgICAgICAgICAgID4KICAgIDwvc2NyaXB0PgoKCgoKPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiCiAgICAgICAgaWQ9ImRqYW5nby1hZG1pbi1wcmVwb3B1bGF0ZWQtZmllbGRzLWNvbnN0YW50cyIKICAgICAgICBzcmM9Ii9hc3NldHMvYWRtaW4vanMvcHJlcG9wdWxhdGVfaW5pdC5qcyIKICAgICAgICBkYXRhLXByZXBvcHVsYXRlZC1maWVsZHM9IltdIj4KPC9zY3JpcHQ+CgoKPC9kaXY+CjwvZm9ybT48L2Rpdj4KCiAgICAgICAgCiAgICAgICAgPGJyIGNsYXNzPSJjbGVhciIgLz4KICAgIDwvZGl2PgogICAgPCEtLSBFTkQgQ29udGVudCAtLT4KCiAgICA8ZGl2IGlkPSJmb290ZXIiPjwvZGl2Pgo8L2Rpdj4KPCEtLSBFTkQgQ29udGFpbmVyIC0tPgoKPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 17:13:48 GMT\", \"Expires\": \"Mon, 27 Mar 2017 17:13:48 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "7c2b5166-62d5-4a92-80e2-bc52b9c8b2b4", - "fields": { - "request": "7d9874aa-6656-41bd-b63b-ac282f2fa2d7", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "7c9aa8d7-f39e-4288-af15-1bab71dd2b28", - "fields": { - "request": "b8b1550a-e0f0-446d-b5b1-752f34b1d9cb", - "status_code": 200, - "raw_body": "W3siaWQiOjEsInZlcmlmaWVkIjpmYWxzZSwib3Blbl90aW1lIjoiMjAxNy0wMy0yN1QxNToyMzoyMFoiLCJjbG9zZV90aW1lIjoiMjAxNy0wMy0yN1QxNToyMzoyMloiLCJjb21wYW55IjoyfV0=", - "body": "[\n {\n \"close_time\": \"2017-03-27T15:23:22Z\",\n \"company\": 2,\n \"id\": 1,\n \"open_time\": \"2017-03-27T15:23:20Z\",\n \"verified\": false\n }\n]", - "encoded_headers": "{\"Content-Type\": \"application/json\", \"Allow\": \"GET, POST, OPTIONS\", \"Vary\": \"Accept\"}" - } -}, -{ - "model": "silk.response", - "pk": "7cf12d45-a233-415f-a11d-17fc6e19205c", - "fields": { - "request": "d3eca652-eebe-4962-938f-a94a842d84d9", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "7d856a5b-5f6f-4d7d-b30f-16a9e6c8bcf3", - "fields": { - "request": "f94edfdb-6f55-433f-b377-927783328dbf", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPkFkZCB2YWNhbmN5IHwgRGphbmdvIHNpdGUgYWRtaW48L3RpdGxlPgo8bGluayByZWw9InN0eWxlc2hlZXQiIHR5cGU9InRleHQvY3NzIiBocmVmPSIvYXNzZXRzL2FkbWluL2Nzcy9iYXNlLmNzcyIgLz4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvZm9ybXMuY3NzIiAvPgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9jb3JlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IvanF1ZXJ5L2pxdWVyeS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvanF1ZXJ5LmluaXQuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2FkbWluL1JlbGF0ZWRPYmplY3RMb29rdXBzLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hY3Rpb25zLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy91cmxpZnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL3ByZXBvcHVsYXRlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IveHJlZ2V4cC94cmVnZXhwLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9jYWxlbmRhci5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvYWRtaW4vRGF0ZVRpbWVTaG9ydGN1dHMuanMiPjwvc2NyaXB0PgoKPG1ldGEgbmFtZT0icm9ib3RzIiBjb250ZW50PSJOT05FLE5PQVJDSElWRSIgLz4KPC9oZWFkPgoKCjxib2R5IGNsYXNzPSJwb3B1cCAgYXBwLWNvcmUgbW9kZWwtdmFjYW5jeSBjaGFuZ2UtZm9ybSIKICBkYXRhLWFkbWluLXV0Yy1vZmZzZXQ9IjAiPgoKPCEtLSBDb250YWluZXIgLS0+CjxkaXYgaWQ9ImNvbnRhaW5lciI+CgogICAgCgogICAgCiAgICAgICAgCiAgICAKCiAgICA8IS0tIENvbnRlbnQgLS0+CiAgICA8ZGl2IGlkPSJjb250ZW50IiBjbGFzcz0iY29sTSI+CiAgICAgICAgCiAgICAgICAgPGgxPkFkZCB2YWNhbmN5PC9oMT4KICAgICAgICA8ZGl2IGlkPSJjb250ZW50LW1haW4iPgoKCgo8Zm9ybSBlbmN0eXBlPSJtdWx0aXBhcnQvZm9ybS1kYXRhIiBhY3Rpb249IiIgbWV0aG9kPSJwb3N0IiBpZD0idmFjYW5jeV9mb3JtIiBub3ZhbGlkYXRlPjxpbnB1dCB0eXBlPSdoaWRkZW4nIG5hbWU9J2NzcmZtaWRkbGV3YXJldG9rZW4nIHZhbHVlPSdFVTdCdjJsQTV1YThCa0pXVDE5dUdmTnVGcHE5WnpkRjMwZXFIeWR2U3JseFlzTG9Dc0VXeVd1ZURrd1lqejl1JyAvPgo8ZGl2Pgo8aW5wdXQgdHlwZT0iaGlkZGVuIiBuYW1lPSJfcG9wdXAiIHZhbHVlPSIxIiAvPgo8aW5wdXQgdHlwZT0iaGlkZGVuIiBuYW1lPSJfdG9fZmllbGQiIHZhbHVlPSJpZCIgLz4KCgoKCgogIDxmaWVsZHNldCBjbGFzcz0ibW9kdWxlIGFsaWduZWQgIj4KICAgIAogICAgCiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC1jb21wYW55Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGRpdj4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPGxhYmVsIGNsYXNzPSJyZXF1aXJlZCIgZm9yPSJpZF9jb21wYW55Ij5Db21wYW55OjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgCjxkaXYgY2xhc3M9InJlbGF0ZWQtd2lkZ2V0LXdyYXBwZXIiPgogICAgPHNlbGVjdCBpZD0iaWRfY29tcGFueSIgbmFtZT0iY29tcGFueSIgcmVxdWlyZWQ+CjxvcHRpb24gdmFsdWU9IiIgc2VsZWN0ZWQ9InNlbGVjdGVkIj4tLS0tLS0tLS08L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMiI+Q29tcGFueSBvYmplY3Q8L29wdGlvbj4KPC9zZWxlY3Q+CiAgICAKICAgICAgICAKICAgICAgICA8YSBjbGFzcz0icmVsYXRlZC13aWRnZXQtd3JhcHBlci1saW5rIGNoYW5nZS1yZWxhdGVkIiBpZD0iY2hhbmdlX2lkX2NvbXBhbnkiCiAgICAgICAgICAgIGRhdGEtaHJlZi10ZW1wbGF0ZT0iL2FkbWluL2NvcmUvY29tcGFueS9fX2ZrX18vY2hhbmdlLz9fdG9fZmllbGQ9aWQmYW1wO19wb3B1cD0xIgogICAgICAgICAgICB0aXRsZT0iQ2hhbmdlIHNlbGVjdGVkIGNvbXBhbnkiPgogICAgICAgICAgICA8aW1nIHNyYz0iL2Fzc2V0cy9hZG1pbi9pbWcvaWNvbi1jaGFuZ2VsaW5rLnN2ZyIgYWx0PSJDaGFuZ2UiLz4KICAgICAgICA8L2E+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgPGEgY2xhc3M9InJlbGF0ZWQtd2lkZ2V0LXdyYXBwZXItbGluayBhZGQtcmVsYXRlZCIgaWQ9ImFkZF9pZF9jb21wYW55IgogICAgICAgICAgICBocmVmPSIvYWRtaW4vY29yZS9jb21wYW55L2FkZC8/X3RvX2ZpZWxkPWlkJmFtcDtfcG9wdXA9MSIKICAgICAgICAgICAgdGl0bGU9IkFkZCBhbm90aGVyIGNvbXBhbnkiPgogICAgICAgICAgICA8aW1nIHNyYz0iL2Fzc2V0cy9hZG1pbi9pbWcvaWNvbi1hZGRsaW5rLnN2ZyIgYWx0PSJBZGQiLz4KICAgICAgICA8L2E+CiAgICAgICAgCiAgICAgICAgCiAgICAKPC9kaXY+CgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDwvZGl2PgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImZvcm0tcm93IGZpZWxkLXZlcmlmaWVkIj4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGRpdiBjbGFzcz0iY2hlY2tib3gtcm93Ij4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPGlucHV0IGlkPSJpZF92ZXJpZmllZCIgbmFtZT0idmVyaWZpZWQiIHR5cGU9ImNoZWNrYm94IiAvPjxsYWJlbCBjbGFzcz0idkNoZWNrYm94TGFiZWwiIGZvcj0iaWRfdmVyaWZpZWQiPlZlcmlmaWVkPC9sYWJlbD4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDwvZGl2PgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImZvcm0tcm93IGZpZWxkLW9wZW5fdGltZSI+CiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXY+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxsYWJlbCBjbGFzcz0icmVxdWlyZWQiIGZvcj0iaWRfb3Blbl90aW1lXzAiPk9wZW4gdGltZTo8L2xhYmVsPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxwIGNsYXNzPSJkYXRldGltZSI+RGF0ZTogPGlucHV0IGNsYXNzPSJ2RGF0ZUZpZWxkIiBpZD0iaWRfb3Blbl90aW1lXzAiIG5hbWU9Im9wZW5fdGltZV8wIiBzaXplPSIxMCIgdHlwZT0idGV4dCIgcmVxdWlyZWQgLz48YnIgLz5UaW1lOiA8aW5wdXQgY2xhc3M9InZUaW1lRmllbGQiIGlkPSJpZF9vcGVuX3RpbWVfMSIgbmFtZT0ib3Blbl90aW1lXzEiIHNpemU9IjgiIHR5cGU9InRleHQiIHJlcXVpcmVkIC8+PC9wPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDwvZGl2PgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImZvcm0tcm93IGZpZWxkLWNsb3NlX3RpbWUiPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgY2xhc3M9InJlcXVpcmVkIiBmb3I9ImlkX2Nsb3NlX3RpbWVfMCI+Q2xvc2UgdGltZTo8L2xhYmVsPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxwIGNsYXNzPSJkYXRldGltZSI+RGF0ZTogPGlucHV0IGNsYXNzPSJ2RGF0ZUZpZWxkIiBpZD0iaWRfY2xvc2VfdGltZV8wIiBuYW1lPSJjbG9zZV90aW1lXzAiIHNpemU9IjEwIiB0eXBlPSJ0ZXh0IiByZXF1aXJlZCAvPjxiciAvPlRpbWU6IDxpbnB1dCBjbGFzcz0idlRpbWVGaWVsZCIgaWQ9ImlkX2Nsb3NlX3RpbWVfMSIgbmFtZT0iY2xvc2VfdGltZV8xIiBzaXplPSI4IiB0eXBlPSJ0ZXh0IiByZXF1aXJlZCAvPjwvcD4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKPC9maWVsZHNldD4KCgoKCgoKCgoKCgoKCjxkaXYgY2xhc3M9InN1Ym1pdC1yb3ciPgo8aW5wdXQgdHlwZT0ic3VibWl0IiB2YWx1ZT0iU2F2ZSIgY2xhc3M9ImRlZmF1bHQiIG5hbWU9Il9zYXZlIiAvPgoKCgoKPC9kaXY+CgoKCiAgICA8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIKICAgICAgICAgICAgaWQ9ImRqYW5nby1hZG1pbi1mb3JtLWFkZC1jb25zdGFudHMiCiAgICAgICAgICAgIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9jaGFuZ2VfZm9ybS5qcyIKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICBkYXRhLW1vZGVsLW5hbWU9InZhY2FuY3kiCiAgICAgICAgICAgID4KICAgIDwvc2NyaXB0PgoKCgoKPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiCiAgICAgICAgaWQ9ImRqYW5nby1hZG1pbi1wcmVwb3B1bGF0ZWQtZmllbGRzLWNvbnN0YW50cyIKICAgICAgICBzcmM9Ii9hc3NldHMvYWRtaW4vanMvcHJlcG9wdWxhdGVfaW5pdC5qcyIKICAgICAgICBkYXRhLXByZXBvcHVsYXRlZC1maWVsZHM9IltdIj4KPC9zY3JpcHQ+CgoKPC9kaXY+CjwvZm9ybT48L2Rpdj4KCiAgICAgICAgCiAgICAgICAgPGJyIGNsYXNzPSJjbGVhciIgLz4KICAgIDwvZGl2PgogICAgPCEtLSBFTkQgQ29udGVudCAtLT4KCiAgICA8ZGl2IGlkPSJmb290ZXIiPjwvZGl2Pgo8L2Rpdj4KPCEtLSBFTkQgQ29udGFpbmVyIC0tPgoKPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 14:57:02 GMT\", \"Expires\": \"Mon, 27 Mar 2017 14:57:02 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "7e3955d6-d4ba-4097-b293-df1f1fc94521", - "fields": { - "request": "1a1d8f6a-127e-4703-a67c-571b332d20f6", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "7e61a997-24e1-4c29-a8bf-2c3a6b08c4ad", - "fields": { - "request": "c05580d8-d759-4972-866d-07fe13405ed6", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "7e82c5f9-3452-4af2-bdd8-552a0e8b2fa3", - "fields": { - "request": "f12da9a5-3ac7-4783-b3cc-ecd92dbb6faf", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "806be46f-c17f-4213-9439-89af95b749c3", - "fields": { - "request": "bd5ccf4a-59a3-4192-8175-d9f931ed7408", - "status_code": 200, - "raw_body": "eyJpZCI6MSwidmVyaWZpZWQiOmZhbHNlLCJvcGVuX3RpbWUiOiIyMDE3LTAzLTI3VDE1OjIzOjIwWiIsImNsb3NlX3RpbWUiOiIyMDE3LTAzLTI3VDE1OjIzOjIyWiIsImNvbXBhbnkiOjJ9", - "body": "{\n \"close_time\": \"2017-03-27T15:23:22Z\",\n \"company\": 2,\n \"id\": 1,\n \"open_time\": \"2017-03-27T15:23:20Z\",\n \"verified\": false\n}", - "encoded_headers": "{\"Content-Type\": \"application/json\", \"Allow\": \"GET, PUT, PATCH, DELETE, OPTIONS\", \"Vary\": \"Accept\"}" - } -}, -{ - "model": "silk.response", - "pk": "812225ed-6ac6-43a6-91e4-eb925e611bf4", - "fields": { - "request": "58d82982-284d-458b-901f-bc175c938fe1", - "status_code": 500, - "raw_body": "QXR0cmlidXRlRXJyb3IgYXQgL2FwaS9zdHVkZW50cy8xL2Jvb2ttYXJrZWQtdmFjYW5jaWVzLwonbGlzdCcgb2JqZWN0IGhhcyBubyBhdHRyaWJ1dGUgJ2lkJwoKUmVxdWVzdCBNZXRob2Q6IFBPU1QKUmVxdWVzdCBVUkw6IGh0dHA6Ly8xMjcuMC4wLjE6ODAwMC9hcGkvc3R1ZGVudHMvMS9ib29rbWFya2VkLXZhY2FuY2llcy8KRGphbmdvIFZlcnNpb246IDEuMTAuNQpQeXRob24gRXhlY3V0YWJsZTogQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXHB5dGhvbi5leGUKUHl0aG9uIFZlcnNpb246IDMuNi4wClB5dGhvbiBQYXRoOiBbJ0Q6XFxQUExBJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXHB5dGhvbjM2LnppcCcsICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyXFxETExzJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXGxpYicsICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXGxpYlxcc2l0ZS1wYWNrYWdlcyddClNlcnZlciB0aW1lOiBNb24sIDI3IE1hciAyMDE3IDE1OjU2OjA0ICswMDAwCkluc3RhbGxlZCBBcHBsaWNhdGlvbnM6ClsnZGphbmdvLmNvbnRyaWIuYWRtaW4nLAogJ2RqYW5nby5jb250cmliLmF1dGgnLAogJ2RqYW5nby5jb250cmliLmNvbnRlbnR0eXBlcycsCiAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMnLAogJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzJywKICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcycsCiAnd2VicGFja19sb2FkZXInLAogJ2NvcmUnLAogJ3Jlc3RfZnJhbWV3b3JrJywKICdkamFuZ29fbm9zZScsCiAncmVzdF9mcmFtZXdvcmtfc3dhZ2dlcicsCiAnc2lsayddCkluc3RhbGxlZCBNaWRkbGV3YXJlOgpbJ2RqYW5nby5taWRkbGV3YXJlLnNlY3VyaXR5LlNlY3VyaXR5TWlkZGxld2FyZScsCiAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMubWlkZGxld2FyZS5TZXNzaW9uTWlkZGxld2FyZScsCiAnZGphbmdvLm1pZGRsZXdhcmUuY29tbW9uLkNvbW1vbk1pZGRsZXdhcmUnLAogJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5hdXRoLm1pZGRsZXdhcmUuQXV0aGVudGljYXRpb25NaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5tZXNzYWdlcy5taWRkbGV3YXJlLk1lc3NhZ2VNaWRkbGV3YXJlJywKICdkamFuZ28ubWlkZGxld2FyZS5jbGlja2phY2tpbmcuWEZyYW1lT3B0aW9uc01pZGRsZXdhcmUnLAogJ3NpbGsubWlkZGxld2FyZS5TaWxreU1pZGRsZXdhcmUnXQoKClRyYWNlYmFjazogIAoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXGRqYW5nb1xjb3JlXGhhbmRsZXJzXGV4Y2VwdGlvbi5weSIgaW4gaW5uZXIKICAzOS4gICAgICAgICAgICAgcmVzcG9uc2UgPSBnZXRfcmVzcG9uc2UocmVxdWVzdCkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cY29yZVxoYW5kbGVyc1xiYXNlLnB5IiBpbiBfZ2V0X3Jlc3BvbnNlCiAgMTg3LiAgICAgICAgICAgICAgICAgcmVzcG9uc2UgPSBzZWxmLnByb2Nlc3NfZXhjZXB0aW9uX2J5X21pZGRsZXdhcmUoZSwgcmVxdWVzdCkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cY29yZVxoYW5kbGVyc1xiYXNlLnB5IiBpbiBfZ2V0X3Jlc3BvbnNlCiAgMTg1LiAgICAgICAgICAgICAgICAgcmVzcG9uc2UgPSB3cmFwcGVkX2NhbGxiYWNrKHJlcXVlc3QsICpjYWxsYmFja19hcmdzLCAqKmNhbGxiYWNrX2t3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cdmlld3NcZGVjb3JhdG9yc1xjc3JmLnB5IiBpbiB3cmFwcGVkX3ZpZXcKICA1OC4gICAgICAgICByZXR1cm4gdmlld19mdW5jKCphcmdzLCAqKmt3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3c2V0cy5weSIgaW4gdmlldwogIDgzLiAgICAgICAgICAgICByZXR1cm4gc2VsZi5kaXNwYXRjaChyZXF1ZXN0LCAqYXJncywgKiprd2FyZ3MpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNccmVzdF9mcmFtZXdvcmtcdmlld3MucHkiIGluIGRpc3BhdGNoCiAgNDgzLiAgICAgICAgICAgICByZXNwb25zZSA9IHNlbGYuaGFuZGxlX2V4Y2VwdGlvbihleGMpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNccmVzdF9mcmFtZXdvcmtcdmlld3MucHkiIGluIGhhbmRsZV9leGNlcHRpb24KICA0NDMuICAgICAgICAgICAgIHNlbGYucmFpc2VfdW5jYXVnaHRfZXhjZXB0aW9uKGV4YykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3cy5weSIgaW4gZGlzcGF0Y2gKICA0ODAuICAgICAgICAgICAgIHJlc3BvbnNlID0gaGFuZGxlcihyZXF1ZXN0LCAqYXJncywgKiprd2FyZ3MpCgpGaWxlICJEOlxQUExBXGNvcmVcdmlld3NcYWNjb3VudHMucHkiIGluIGJvb2ttYXJrX3ZhY2FuY2llcwogIDMwLiAgICAgICAgIHZhY2FuY3kgPSBnZXRfb2JqZWN0X29yXzQwNChWYWNhbmN5Lm9iamVjdHMuYWxsKCksIHBrPXJlcXVlc3QuZGF0YS5pZCkKCkV4Y2VwdGlvbiBUeXBlOiBBdHRyaWJ1dGVFcnJvciBhdCAvYXBpL3N0dWRlbnRzLzEvYm9va21hcmtlZC12YWNhbmNpZXMvCkV4Y2VwdGlvbiBWYWx1ZTogJ2xpc3QnIG9iamVjdCBoYXMgbm8gYXR0cmlidXRlICdpZCcKUmVxdWVzdCBpbmZvcm1hdGlvbjoKVVNFUjoga2FwZQoKR0VUOiBObyBHRVQgZGF0YQoKUE9TVDogTm8gUE9TVCBkYXRhCgpGSUxFUzogTm8gRklMRVMgZGF0YQoKQ09PS0lFUzoKc2Vzc2lvbmlkID0gJ2JsdDg3N2c1ZmptdWN4eTNkZDV1eGNpemF2YjlvcG92Jwpjc3JmdG9rZW4gPSAnMUVFUDJTd0t0MUs5UWJXbkZQU3lXUElpYnRPN01BYVZxS0xFZW9vRmdZVnlkallQb2duME93cDI5b1VXNkE2SycKCk1FVEE6CkFMTFVTRVJTUFJPRklMRSA9ICdDOlxcUHJvZ3JhbURhdGEnCkFQUERBVEEgPSAnQzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmcnCkNPTU1PTlBST0dSQU1GSUxFUyA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcQ29tbW9uIEZpbGVzJwpDT01NT05QUk9HUkFNRklMRVMoWDg2KSA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcQ29tbW9uIEZpbGVzJwpDT01NT05QUk9HUkFNVzY0MzIgPSAnQzpcXFByb2dyYW0gRmlsZXNcXENvbW1vbiBGaWxlcycKQ09NUFVURVJOQU1FID0gJ0ZBUkhBTicKQ09NU1BFQyA9ICdDOlxcV0lORE9XU1xcc3lzdGVtMzJcXGNtZC5leGUnCkNPTlRFTlRfTEVOR1RIID0gJzE0NycKQ09OVEVOVF9UWVBFID0gJ2FwcGxpY2F0aW9uL2pzb24nCkNTUkZfQ09PS0lFID0gJzFFRVAyU3dLdDFLOVFiV25GUFN5V1BJaWJ0TzdNQWFWcUtMRWVvb0ZnWVZ5ZGpZUG9nbjBPd3AyOW9VVzZBNksnCkRKQU5HT19TRVRUSU5HU19NT0RVTEUgPSAna2FwZS5zZXR0aW5ncycKRlBTX0JST1dTRVJfQVBQX1BST0ZJTEVfU1RSSU5HID0gJ0ludGVybmV0IEV4cGxvcmVyJwpGUFNfQlJPV1NFUl9VU0VSX1BST0ZJTEVfU1RSSU5HID0gJ0RlZmF1bHQnCkZQX05PX0hPU1RfQ0hFQ0sgPSAnTk8nCkdBVEVXQVlfSU5URVJGQUNFID0gJ0NHSS8xLjEnCkhPTUVEUklWRSA9ICdDOicKSE9NRVBBVEggPSAnXFxVc2Vyc1xcZmFyaGFfMDAwJwpIVFRQX0FDQ0VQVCA9ICdhcHBsaWNhdGlvbi9qc29uJwpIVFRQX0FDQ0VQVF9FTkNPRElORyA9ICdnemlwLCBkZWZsYXRlLCBicicKSFRUUF9BQ0NFUFRfTEFOR1VBR0UgPSAnaWQtSUQsaWQ7cT0wLjgsZW4tVVM7cT0wLjYsZW47cT0wLjQnCkhUVFBfQ09OTkVDVElPTiA9ICdrZWVwLWFsaXZlJwpIVFRQX0NPT0tJRSA9ICdzZXNzaW9uaWQ9Ymx0ODc3ZzVmam11Y3h5M2RkNXV4Y2l6YXZiOW9wb3Y7IGNzcmZ0b2tlbj0xRUVQMlN3S3QxSzlRYlduRlBTeVdQSWlidE83TUFhVnFLTEVlb29GZ1lWeWRqWVBvZ24wT3dwMjlvVVc2QTZLJwpIVFRQX0hPU1QgPSAnMTI3LjAuMC4xOjgwMDAnCkhUVFBfT1JJR0lOID0gJ2h0dHA6Ly8xMjcuMC4wLjE6ODAwMCcKSFRUUF9SRUZFUkVSID0gJ2h0dHA6Ly8xMjcuMC4wLjE6ODAwMC9hcGknCkhUVFBfVVNFUl9BR0VOVCA9ICdNb3ppbGxhLzUuMCAoV2luZG93cyBOVCAxMC4wOyBXT1c2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzU2LjAuMjkyNC44NyBTYWZhcmkvNTM3LjM2JwpIVFRQX1hfQ1NSRlRPS0VOID0gJ2pxOTFCdUY1ZTVSN1NqTUZSYzJUTmZ2V1U4bERPNnd5SXdnUU4weDAxMjJ3ZnJPN0FEeGxGV2NHUzNyczg2c24nCkxPQ0FMQVBQREFUQSA9ICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWwnCkxPR09OU0VSVkVSID0gJ1xcXFxGQVJIQU4nCk5VTUJFUl9PRl9QUk9DRVNTT1JTID0gJzInCk9ORURSSVZFID0gJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxPbmVEcml2ZScKT1MgPSAnV2luZG93c19OVCcKUEFUSCA9ICdDOlxcUHJvZ3JhbURhdGFcXE9yYWNsZVxcSmF2YVxcamF2YXBhdGg7QzpcXFByb2dyYW0gRmlsZXNcXEhhc2tlbGxcXGJpbjtDOlxcUHJvZ3JhbSBGaWxlc1xcSGFza2VsbCBQbGF0Zm9ybVxcNy4xMC4zXFxsaWJcXGV4dHJhbGlic1xcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxIYXNrZWxsIFBsYXRmb3JtXFw3LjEwLjNcXGJpbjtDOlxcV0lORE9XU1xcc3lzdGVtMzI7QzpcXFdJTkRPV1M7QzpcXFdJTkRPV1NcXFN5c3RlbTMyXFxXYmVtO0M6XFxXSU5ET1dTXFxTeXN0ZW0zMlxcV2luZG93c1Bvd2VyU2hlbGxcXHYxLjBcXDtDOlxcUHJvZ3JhbSBGaWxlc1xcSGFza2VsbCBQbGF0Zm9ybVxcNy4xMC4zXFxtaW5nd1xcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxKYXZhXFxqZGsxLjguMF83N1xcYmluO0M6XFxjeWd3aW42NFxcYmluOyVsb2NhbGFwcGRhdGElXFxNaWNyb3NvZnRcXFdpbmRvd3NBcHBzO0Q6XFxYQU1QUFxccGhwO0M6XFxQcm9ncmFtIEZpbGVzXFxHaXRcXGNtZDtDOlxceGFtcHBcXHBocDtDOlxcUHJvZ3JhbURhdGFcXENvbXBvc2VyU2V0dXBcXGJpbjtDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcbm9kZWpzXFw7QzpcXFByb2dyYW0gRmlsZXNcXFBvc3RncmVTUUxcXDkuNlxcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxNQVRMQUJcXFIyMDE3YVxcYmluO0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXFNjcmlwdHNcXDtDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyXFw7QzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmdcXGNhYmFsXFxiaW47RDpcXFhBTVBQXFxwaHA7QzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmdcXENvbXBvc2VyXFx2ZW5kb3JcXGJpbjtDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXE1pY3Jvc29mdFxcV2luZG93c0FwcHM7QzpcXHB5dGhvbi0zLjYuMCcKUEFUSEVYVCA9ICcuQ09NOy5FWEU7LkJBVDsuQ01EOy5WQlM7LlZCRTsuSlM7LkpTRTsuV1NGOy5XU0g7Lk1TQycKUEFUSF9JTkZPID0gJy9hcGkvc3R1ZGVudHMvMS9ib29rbWFya2VkLXZhY2FuY2llcy8nClBST0NFU1NPUl9BUkNISVRFQ1RVUkUgPSAneDg2JwpQUk9DRVNTT1JfQVJDSElURVc2NDMyID0gJ0FNRDY0JwpQUk9DRVNTT1JfSURFTlRJRklFUiA9ICdJbnRlbDY0IEZhbWlseSA2IE1vZGVsIDU4IFN0ZXBwaW5nIDksIEdlbnVpbmVJbnRlbCcKUFJPQ0VTU09SX0xFVkVMID0gJzYnClBST0NFU1NPUl9SRVZJU0lPTiA9ICczYTA5JwpQUk9HUkFNREFUQSA9ICdDOlxcUHJvZ3JhbURhdGEnClBST0dSQU1GSUxFUyA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KScKUFJPR1JBTUZJTEVTKFg4NikgPSAnQzpcXFByb2dyYW0gRmlsZXMgKHg4NiknClBST0dSQU1XNjQzMiA9ICdDOlxcUHJvZ3JhbSBGaWxlcycKUFJPTVBUID0gJyRQJEcnClBTTU9EVUxFUEFUSCA9ICdDOlxcV0lORE9XU1xcc3lzdGVtMzJcXFdpbmRvd3NQb3dlclNoZWxsXFx2MS4wXFxNb2R1bGVzXFwnClBVQkxJQyA9ICdDOlxcVXNlcnNcXFB1YmxpYycKUVVFUllfU1RSSU5HID0gJycKUkVNT1RFX0FERFIgPSAnMTI3LjAuMC4xJwpSRU1PVEVfSE9TVCA9ICcnClJFUVVFU1RfTUVUSE9EID0gJ1BPU1QnClJVTl9NQUlOID0gJ3RydWUnClNDUklQVF9OQU1FID0gJycKU0VSVkVSX05BTUUgPSAnRmFyaGFuJwpTRVJWRVJfUE9SVCA9ICc4MDAwJwpTRVJWRVJfUFJPVE9DT0wgPSAnSFRUUC8xLjEnClNFUlZFUl9TT0ZUV0FSRSA9ICdXU0dJU2VydmVyLzAuMicKU0VTU0lPTk5BTUUgPSAnQ29uc29sZScKU1lTVEVNRFJJVkUgPSAnQzonClNZU1RFTVJPT1QgPSAnQzpcXFdJTkRPV1MnClRFTVAgPSAnQzpcXFVzZXJzXFxGQVJIQV9+MVxcQXBwRGF0YVxcTG9jYWxcXFRlbXAnClRNUCA9ICdDOlxcVXNlcnNcXEZBUkhBX34xXFxBcHBEYXRhXFxMb2NhbFxcVGVtcCcKVVNFUkRPTUFJTiA9ICdGYXJoYW4nClVTRVJET01BSU5fUk9BTUlOR1BST0ZJTEUgPSAnRmFyaGFuJwpVU0VSTkFNRSA9ICdGYXJoYW4gRmFyYXNkYWsnClVTRVJQUk9GSUxFID0gJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwJwpWQk9YX01TSV9JTlNUQUxMX1BBVEggPSAnQzpcXFByb2dyYW0gRmlsZXNcXE9yYWNsZVxcVmlydHVhbEJveFxcJwpXSU5ESVIgPSAnQzpcXFdJTkRPV1MnCndzZ2kuZXJyb3JzID0gPF9pby5UZXh0SU9XcmFwcGVyIG5hbWU9JzxzdGRlcnI+JyBtb2RlPSd3JyBlbmNvZGluZz0ndXRmLTgnPgp3c2dpLmZpbGVfd3JhcHBlciA9ICcnCndzZ2kuaW5wdXQgPSA8X2lvLkJ1ZmZlcmVkUmVhZGVyIG5hbWU9MTc3Mj4Kd3NnaS5tdWx0aXByb2Nlc3MgPSBGYWxzZQp3c2dpLm11bHRpdGhyZWFkID0gVHJ1ZQp3c2dpLnJ1bl9vbmNlID0gRmFsc2UKd3NnaS51cmxfc2NoZW1lID0gJ2h0dHAnCndzZ2kudmVyc2lvbiA9IAoKU2V0dGluZ3M6ClVzaW5nIHNldHRpbmdzIG1vZHVsZSBrYXBlLnNldHRpbmdzCkFCU09MVVRFX1VSTF9PVkVSUklERVMgPSB7fQpBRE1JTlMgPSBbXQpBTExPV0VEX0hPU1RTID0gWydib3QucmVjcnVpdC5pZCcsICcxMDQuMjM2Ljc2LjE2MScsICdsb2NhbGhvc3QnLCAnMTI3LjAuMC4xJ10KQVBQRU5EX1NMQVNIID0gVHJ1ZQpBVVRIRU5USUNBVElPTl9CQUNLRU5EUyA9IFsnZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQnXQpBVVRIX1BBU1NXT1JEX1ZBTElEQVRPUlMgPSAnKioqKioqKioqKioqKioqKioqKionCkFVVEhfVVNFUl9NT0RFTCA9ICdhdXRoLlVzZXInCkJBU0VfRElSID0gJ0Q6XFxQUExBJwpDQUNIRVMgPSB7J2RlZmF1bHQnOiB7J0JBQ0tFTkQnOiAnZGphbmdvLmNvcmUuY2FjaGUuYmFja2VuZHMubG9jbWVtLkxvY01lbUNhY2hlJ319CkNBQ0hFX01JRERMRVdBUkVfQUxJQVMgPSAnZGVmYXVsdCcKQ0FDSEVfTUlERExFV0FSRV9LRVlfUFJFRklYID0gJyoqKioqKioqKioqKioqKioqKioqJwpDQUNIRV9NSURETEVXQVJFX1NFQ09ORFMgPSA2MDAKQ1NSRl9DT09LSUVfQUdFID0gMzE0NDk2MDAKQ1NSRl9DT09LSUVfRE9NQUlOID0gTm9uZQpDU1JGX0NPT0tJRV9IVFRQT05MWSA9IEZhbHNlCkNTUkZfQ09PS0lFX05BTUUgPSAnY3NyZnRva2VuJwpDU1JGX0NPT0tJRV9QQVRIID0gJy8nCkNTUkZfQ09PS0lFX1NFQ1VSRSA9IEZhbHNlCkNTUkZfRkFJTFVSRV9WSUVXID0gJ2RqYW5nby52aWV3cy5jc3JmLmNzcmZfZmFpbHVyZScKQ1NSRl9IRUFERVJfTkFNRSA9ICdIVFRQX1hfQ1NSRlRPS0VOJwpDU1JGX1RSVVNURURfT1JJR0lOUyA9IFtdCkRBVEFCQVNFUyA9IHsnZGVmYXVsdCc6IHsnRU5HSU5FJzogJ2RqYW5nby5kYi5iYWNrZW5kcy5wb3N0Z3Jlc3FsX3BzeWNvcGcyJywgJ05BTUUnOiAna2FwZScsICdVU0VSJzogJ2thcGUnLCAnUEFTU1dPUkQnOiAnKioqKioqKioqKioqKioqKioqKionLCAnSE9TVCc6ICdsb2NhbGhvc3QnLCAnUE9SVCc6ICcnLCAnQVRPTUlDX1JFUVVFU1RTJzogRmFsc2UsICdBVVRPQ09NTUlUJzogVHJ1ZSwgJ0NPTk5fTUFYX0FHRSc6IDAsICdPUFRJT05TJzoge30sICdUSU1FX1pPTkUnOiBOb25lLCAnVEVTVCc6IHsnQ0hBUlNFVCc6IE5vbmUsICdDT0xMQVRJT04nOiBOb25lLCAnTkFNRSc6IE5vbmUsICdNSVJST1InOiBOb25lfX19CkRBVEFCQVNFX1JPVVRFUlMgPSBbXQpEQVRBX1VQTE9BRF9NQVhfTUVNT1JZX1NJWkUgPSAyNjIxNDQwCkRBVEFfVVBMT0FEX01BWF9OVU1CRVJfRklFTERTID0gMTAwMApEQVRFVElNRV9GT1JNQVQgPSAnTiBqLCBZLCBQJwpEQVRFVElNRV9JTlBVVF9GT1JNQVRTID0gWyclWS0lbS0lZCAlSDolTTolUycsICclWS0lbS0lZCAlSDolTTolUy4lZicsICclWS0lbS0lZCAlSDolTScsICclWS0lbS0lZCcsICclbS8lZC8lWSAlSDolTTolUycsICclbS8lZC8lWSAlSDolTTolUy4lZicsICclbS8lZC8lWSAlSDolTScsICclbS8lZC8lWScsICclbS8lZC8leSAlSDolTTolUycsICclbS8lZC8leSAlSDolTTolUy4lZicsICclbS8lZC8leSAlSDolTScsICclbS8lZC8leSddCkRBVEVfRk9STUFUID0gJ04gaiwgWScKREFURV9JTlBVVF9GT1JNQVRTID0gWyclWS0lbS0lZCcsICclbS8lZC8lWScsICclbS8lZC8leScsICclYiAlZCAlWScsICclYiAlZCwgJVknLCAnJWQgJWIgJVknLCAnJWQgJWIsICVZJywgJyVCICVkICVZJywgJyVCICVkLCAlWScsICclZCAlQiAlWScsICclZCAlQiwgJVknXQpERUJVRyA9IFRydWUKREVCVUdfUFJPUEFHQVRFX0VYQ0VQVElPTlMgPSBGYWxzZQpERUNJTUFMX1NFUEFSQVRPUiA9ICcuJwpERUZBVUxUX0NIQVJTRVQgPSAndXRmLTgnCkRFRkFVTFRfQ09OVEVOVF9UWVBFID0gJ3RleHQvaHRtbCcKREVGQVVMVF9FWENFUFRJT05fUkVQT1JURVJfRklMVEVSID0gJ2RqYW5nby52aWV3cy5kZWJ1Zy5TYWZlRXhjZXB0aW9uUmVwb3J0ZXJGaWx0ZXInCkRFRkFVTFRfRklMRV9TVE9SQUdFID0gJ2RqYW5nby5jb3JlLmZpbGVzLnN0b3JhZ2UuRmlsZVN5c3RlbVN0b3JhZ2UnCkRFRkFVTFRfRlJPTV9FTUFJTCA9ICd3ZWJtYXN0ZXJAbG9jYWxob3N0JwpERUZBVUxUX0lOREVYX1RBQkxFU1BBQ0UgPSAnJwpERUZBVUxUX1RBQkxFU1BBQ0UgPSAnJwpESVNBTExPV0VEX1VTRVJfQUdFTlRTID0gW10KRU1BSUxfQkFDS0VORCA9ICdkamFuZ28uY29yZS5tYWlsLmJhY2tlbmRzLnNtdHAuRW1haWxCYWNrZW5kJwpFTUFJTF9IT1NUID0gJ2xvY2FsaG9zdCcKRU1BSUxfSE9TVF9QQVNTV09SRCA9ICcqKioqKioqKioqKioqKioqKioqKicKRU1BSUxfSE9TVF9VU0VSID0gJycKRU1BSUxfUE9SVCA9IDI1CkVNQUlMX1NTTF9DRVJURklMRSA9IE5vbmUKRU1BSUxfU1NMX0tFWUZJTEUgPSAnKioqKioqKioqKioqKioqKioqKionCkVNQUlMX1NVQkpFQ1RfUFJFRklYID0gJ1tEamFuZ29dICcKRU1BSUxfVElNRU9VVCA9IE5vbmUKRU1BSUxfVVNFX1NTTCA9IEZhbHNlCkVNQUlMX1VTRV9UTFMgPSBGYWxzZQpGSUxFX0NIQVJTRVQgPSAndXRmLTgnCkZJTEVfVVBMT0FEX0RJUkVDVE9SWV9QRVJNSVNTSU9OUyA9IE5vbmUKRklMRV9VUExPQURfSEFORExFUlMgPSBbJ2RqYW5nby5jb3JlLmZpbGVzLnVwbG9hZGhhbmRsZXIuTWVtb3J5RmlsZVVwbG9hZEhhbmRsZXInLCAnZGphbmdvLmNvcmUuZmlsZXMudXBsb2FkaGFuZGxlci5UZW1wb3JhcnlGaWxlVXBsb2FkSGFuZGxlciddCkZJTEVfVVBMT0FEX01BWF9NRU1PUllfU0laRSA9IDI2MjE0NDAKRklMRV9VUExPQURfUEVSTUlTU0lPTlMgPSBOb25lCkZJTEVfVVBMT0FEX1RFTVBfRElSID0gTm9uZQpGSVJTVF9EQVlfT0ZfV0VFSyA9IDAKRklYVFVSRV9ESVJTID0gW10KRk9SQ0VfU0NSSVBUX05BTUUgPSBOb25lCkZPUk1BVF9NT0RVTEVfUEFUSCA9IE5vbmUKR1pJUF9DT05URU5UX1RZUEVTID0gCklHTk9SQUJMRV80MDRfVVJMUyA9IFtdCklOU1RBTExFRF9BUFBTID0gWydkamFuZ28uY29udHJpYi5hZG1pbicsICdkamFuZ28uY29udHJpYi5hdXRoJywgJ2RqYW5nby5jb250cmliLmNvbnRlbnR0eXBlcycsICdkamFuZ28uY29udHJpYi5zZXNzaW9ucycsICdkamFuZ28uY29udHJpYi5tZXNzYWdlcycsICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcycsICd3ZWJwYWNrX2xvYWRlcicsICdjb3JlJywgJ3Jlc3RfZnJhbWV3b3JrJywgJ2RqYW5nb19ub3NlJywgJ3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXInLCAnc2lsayddCklOVEVSTkFMX0lQUyA9IFtdCkxBTkdVQUdFUyA9IFsoJ2FmJywgJ0FmcmlrYWFucycpLCAoJ2FyJywgJ0FyYWJpYycpLCAoJ2FzdCcsICdBc3R1cmlhbicpLCAoJ2F6JywgJ0F6ZXJiYWlqYW5pJyksICgnYmcnLCAnQnVsZ2FyaWFuJyksICgnYmUnLCAnQmVsYXJ1c2lhbicpLCAoJ2JuJywgJ0JlbmdhbGknKSwgKCdicicsICdCcmV0b24nKSwgKCdicycsICdCb3NuaWFuJyksICgnY2EnLCAnQ2F0YWxhbicpLCAoJ2NzJywgJ0N6ZWNoJyksICgnY3knLCAnV2Vsc2gnKSwgKCdkYScsICdEYW5pc2gnKSwgKCdkZScsICdHZXJtYW4nKSwgKCdkc2InLCAnTG93ZXIgU29yYmlhbicpLCAoJ2VsJywgJ0dyZWVrJyksICgnZW4nLCAnRW5nbGlzaCcpLCAoJ2VuLWF1JywgJ0F1c3RyYWxpYW4gRW5nbGlzaCcpLCAoJ2VuLWdiJywgJ0JyaXRpc2ggRW5nbGlzaCcpLCAoJ2VvJywgJ0VzcGVyYW50bycpLCAoJ2VzJywgJ1NwYW5pc2gnKSwgKCdlcy1hcicsICdBcmdlbnRpbmlhbiBTcGFuaXNoJyksICgnZXMtY28nLCAnQ29sb21iaWFuIFNwYW5pc2gnKSwgKCdlcy1teCcsICdNZXhpY2FuIFNwYW5pc2gnKSwgKCdlcy1uaScsICdOaWNhcmFndWFuIFNwYW5pc2gnKSwgKCdlcy12ZScsICdWZW5lenVlbGFuIFNwYW5pc2gnKSwgKCdldCcsICdFc3RvbmlhbicpLCAoJ2V1JywgJ0Jhc3F1ZScpLCAoJ2ZhJywgJ1BlcnNpYW4nKSwgKCdmaScsICdGaW5uaXNoJyksICgnZnInLCAnRnJlbmNoJyksICgnZnknLCAnRnJpc2lhbicpLCAoJ2dhJywgJ0lyaXNoJyksICgnZ2QnLCAnU2NvdHRpc2ggR2FlbGljJyksICgnZ2wnLCAnR2FsaWNpYW4nKSwgKCdoZScsICdIZWJyZXcnKSwgKCdoaScsICdIaW5kaScpLCAoJ2hyJywgJ0Nyb2F0aWFuJyksICgnaHNiJywgJ1VwcGVyIFNvcmJpYW4nKSwgKCdodScsICdIdW5nYXJpYW4nKSwgKCdpYScsICdJbnRlcmxpbmd1YScpLCAoJ2lkJywgJ0luZG9uZXNpYW4nKSwgKCdpbycsICdJZG8nKSwgKCdpcycsICdJY2VsYW5kaWMnKSwgKCdpdCcsICdJdGFsaWFuJyksICgnamEnLCAnSmFwYW5lc2UnKSwgKCdrYScsICdHZW9yZ2lhbicpLCAoJ2trJywgJ0themFraCcpLCAoJ2ttJywgJ0tobWVyJyksICgna24nLCAnS2FubmFkYScpLCAoJ2tvJywgJ0tvcmVhbicpLCAoJ2xiJywgJ0x1eGVtYm91cmdpc2gnKSwgKCdsdCcsICdMaXRodWFuaWFuJyksICgnbHYnLCAnTGF0dmlhbicpLCAoJ21rJywgJ01hY2Vkb25pYW4nKSwgKCdtbCcsICdNYWxheWFsYW0nKSwgKCdtbicsICdNb25nb2xpYW4nKSwgKCdtcicsICdNYXJhdGhpJyksICgnbXknLCAnQnVybWVzZScpLCAoJ25iJywgJ05vcndlZ2lhbiBCb2ttw6VsJyksICgnbmUnLCAnTmVwYWxpJyksICgnbmwnLCAnRHV0Y2gnKSwgKCdubicsICdOb3J3ZWdpYW4gTnlub3JzaycpLCAoJ29zJywgJ09zc2V0aWMnKSwgKCdwYScsICdQdW5qYWJpJyksICgncGwnLCAnUG9saXNoJyksICgncHQnLCAnUG9ydHVndWVzZScpLCAoJ3B0LWJyJywgJ0JyYXppbGlhbiBQb3J0dWd1ZXNlJyksICgncm8nLCAnUm9tYW5pYW4nKSwgKCdydScsICdSdXNzaWFuJyksICgnc2snLCAnU2xvdmFrJyksICgnc2wnLCAnU2xvdmVuaWFuJyksICgnc3EnLCAnQWxiYW5pYW4nKSwgKCdzcicsICdTZXJiaWFuJyksICgnc3ItbGF0bicsICdTZXJiaWFuIExhdGluJyksICgnc3YnLCAnU3dlZGlzaCcpLCAoJ3N3JywgJ1N3YWhpbGknKSwgKCd0YScsICdUYW1pbCcpLCAoJ3RlJywgJ1RlbHVndScpLCAoJ3RoJywgJ1RoYWknKSwgKCd0cicsICdUdXJraXNoJyksICgndHQnLCAnVGF0YXInKSwgKCd1ZG0nLCAnVWRtdXJ0JyksICgndWsnLCAnVWtyYWluaWFuJyksICgndXInLCAnVXJkdScpLCAoJ3ZpJywgJ1ZpZXRuYW1lc2UnKSwgKCd6aC1oYW5zJywgJ1NpbXBsaWZpZWQgQ2hpbmVzZScpLCAoJ3poLWhhbnQnLCAnVHJhZGl0aW9uYWwgQ2hpbmVzZScpXQpMQU5HVUFHRVNfQklESSA9IFsnaGUnLCAnYXInLCAnZmEnLCAndXInXQpMQU5HVUFHRV9DT0RFID0gJ2VuLXVzJwpMQU5HVUFHRV9DT09LSUVfQUdFID0gTm9uZQpMQU5HVUFHRV9DT09LSUVfRE9NQUlOID0gTm9uZQpMQU5HVUFHRV9DT09LSUVfTkFNRSA9ICdkamFuZ29fbGFuZ3VhZ2UnCkxBTkdVQUdFX0NPT0tJRV9QQVRIID0gJy8nCkxPQ0FMRV9QQVRIUyA9IFtdCkxPR0dJTkcgPSB7fQpMT0dHSU5HX0NPTkZJRyA9ICdsb2dnaW5nLmNvbmZpZy5kaWN0Q29uZmlnJwpMT0dJTl9SRURJUkVDVF9VUkwgPSAnL2FjY291bnRzL3Byb2ZpbGUvJwpMT0dJTl9VUkwgPSAnL2FjY291bnRzL2xvZ2luLycKTE9HT1VUX1JFRElSRUNUX1VSTCA9IE5vbmUKTUFOQUdFUlMgPSBbXQpNRURJQV9ST09UID0gJy9ob21lL2ZpbGVzJwpNRURJQV9VUkwgPSAnL2ZpbGVzLycKTUVTU0FHRV9TVE9SQUdFID0gJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzLnN0b3JhZ2UuZmFsbGJhY2suRmFsbGJhY2tTdG9yYWdlJwpNSURETEVXQVJFID0gWydkamFuZ28ubWlkZGxld2FyZS5zZWN1cml0eS5TZWN1cml0eU1pZGRsZXdhcmUnLCAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMubWlkZGxld2FyZS5TZXNzaW9uTWlkZGxld2FyZScsICdkamFuZ28ubWlkZGxld2FyZS5jb21tb24uQ29tbW9uTWlkZGxld2FyZScsICdkamFuZ28ubWlkZGxld2FyZS5jc3JmLkNzcmZWaWV3TWlkZGxld2FyZScsICdkamFuZ28uY29udHJpYi5hdXRoLm1pZGRsZXdhcmUuQXV0aGVudGljYXRpb25NaWRkbGV3YXJlJywgJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzLm1pZGRsZXdhcmUuTWVzc2FnZU1pZGRsZXdhcmUnLCAnZGphbmdvLm1pZGRsZXdhcmUuY2xpY2tqYWNraW5nLlhGcmFtZU9wdGlvbnNNaWRkbGV3YXJlJywgJ3NpbGsubWlkZGxld2FyZS5TaWxreU1pZGRsZXdhcmUnXQpNSURETEVXQVJFX0NMQVNTRVMgPSBbJ2RqYW5nby5taWRkbGV3YXJlLmNvbW1vbi5Db21tb25NaWRkbGV3YXJlJywgJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJ10KTUlHUkFUSU9OX01PRFVMRVMgPSB7fQpNT05USF9EQVlfRk9STUFUID0gJ0YgaicKTk9TRV9BUkdTID0gWyctLXdpdGgtY292ZXJhZ2UnLCAnLS1jb3Zlci1wYWNrYWdlPWNvcmUudmlld3MnLCAnLS1jb3Zlci1odG1sLWRpcj10ZXN0L2JhY2tlbmQnLCAnLS1jb3Zlci1odG1sJ10KTlVNQkVSX0dST1VQSU5HID0gMApQQVNTV09SRF9IQVNIRVJTID0gJyoqKioqKioqKioqKioqKioqKioqJwpQQVNTV09SRF9SRVNFVF9USU1FT1VUX0RBWVMgPSAnKioqKioqKioqKioqKioqKioqKionClBSRVBFTkRfV1dXID0gRmFsc2UKUkVTVF9GUkFNRVdPUksgPSB7J0RFRkFVTFRfUEVSTUlTU0lPTl9DTEFTU0VTJzogWydyZXN0X2ZyYW1ld29yay5wZXJtaXNzaW9ucy5EamFuZ29Nb2RlbFBlcm1pc3Npb25zT3JBbm9uUmVhZE9ubHknXX0KUk9PVF9VUkxDT05GID0gJ2thcGUudXJscycKUlVOTklOR19ERVZTRVJWRVIgPSBUcnVlClNFQ1JFVF9LRVkgPSAnKioqKioqKioqKioqKioqKioqKionClNFQ1VSRV9CUk9XU0VSX1hTU19GSUxURVIgPSBGYWxzZQpTRUNVUkVfQ09OVEVOVF9UWVBFX05PU05JRkYgPSBGYWxzZQpTRUNVUkVfSFNUU19JTkNMVURFX1NVQkRPTUFJTlMgPSBGYWxzZQpTRUNVUkVfSFNUU19TRUNPTkRTID0gMApTRUNVUkVfUFJPWFlfU1NMX0hFQURFUiA9IE5vbmUKU0VDVVJFX1JFRElSRUNUX0VYRU1QVCA9IFtdClNFQ1VSRV9TU0xfSE9TVCA9IE5vbmUKU0VDVVJFX1NTTF9SRURJUkVDVCA9IEZhbHNlClNFUlZFUl9FTUFJTCA9ICdyb290QGxvY2FsaG9zdCcKU0VTU0lPTl9DQUNIRV9BTElBUyA9ICdkZWZhdWx0JwpTRVNTSU9OX0NPT0tJRV9BR0UgPSAxMjA5NjAwClNFU1NJT05fQ09PS0lFX0RPTUFJTiA9IE5vbmUKU0VTU0lPTl9DT09LSUVfSFRUUE9OTFkgPSBGYWxzZQpTRVNTSU9OX0NPT0tJRV9OQU1FID0gJ3Nlc3Npb25pZCcKU0VTU0lPTl9DT09LSUVfUEFUSCA9ICcvJwpTRVNTSU9OX0NPT0tJRV9TRUNVUkUgPSBGYWxzZQpTRVNTSU9OX0VOR0lORSA9ICdkamFuZ28uY29udHJpYi5zZXNzaW9ucy5iYWNrZW5kcy5kYicKU0VTU0lPTl9FWFBJUkVfQVRfQlJPV1NFUl9DTE9TRSA9IEZhbHNlClNFU1NJT05fRklMRV9QQVRIID0gTm9uZQpTRVNTSU9OX1NBVkVfRVZFUllfUkVRVUVTVCA9IEZhbHNlClNFU1NJT05fU0VSSUFMSVpFUiA9ICdkamFuZ28uY29udHJpYi5zZXNzaW9ucy5zZXJpYWxpemVycy5KU09OU2VyaWFsaXplcicKU0VUVElOR1NfTU9EVUxFID0gJ2thcGUuc2V0dGluZ3MnClNIT1JUX0RBVEVUSU1FX0ZPUk1BVCA9ICdtL2QvWSBQJwpTSE9SVF9EQVRFX0ZPUk1BVCA9ICdtL2QvWScKU0lHTklOR19CQUNLRU5EID0gJ2RqYW5nby5jb3JlLnNpZ25pbmcuVGltZXN0YW1wU2lnbmVyJwpTSUxFTkNFRF9TWVNURU1fQ0hFQ0tTID0gW10KU1RBVElDRklMRVNfRElSUyA9ICdEOlxcUFBMQVxcYXNzZXRzJwpTVEFUSUNGSUxFU19GSU5ERVJTID0gWydkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcy5maW5kZXJzLkZpbGVTeXN0ZW1GaW5kZXInLCAnZGphbmdvLmNvbnRyaWIuc3RhdGljZmlsZXMuZmluZGVycy5BcHBEaXJlY3Rvcmllc0ZpbmRlciddClNUQVRJQ0ZJTEVTX1NUT1JBR0UgPSAnZGphbmdvLmNvbnRyaWIuc3RhdGljZmlsZXMuc3RvcmFnZS5TdGF0aWNGaWxlc1N0b3JhZ2UnClNUQVRJQ19ST09UID0gJy9ob21lL2Fzc2V0cycKU1RBVElDX1VSTCA9ICcvYXNzZXRzLycKVEVNUExBVEVTID0gW3snQkFDS0VORCc6ICdkamFuZ28udGVtcGxhdGUuYmFja2VuZHMuZGphbmdvLkRqYW5nb1RlbXBsYXRlcycsICdESVJTJzogW10sICdBUFBfRElSUyc6IFRydWUsICdPUFRJT05TJzogeydjb250ZXh0X3Byb2Nlc3NvcnMnOiBbJ2RqYW5nby50ZW1wbGF0ZS5jb250ZXh0X3Byb2Nlc3NvcnMuZGVidWcnLCAnZGphbmdvLnRlbXBsYXRlLmNvbnRleHRfcHJvY2Vzc29ycy5yZXF1ZXN0JywgJ2RqYW5nby5jb250cmliLmF1dGguY29udGV4dF9wcm9jZXNzb3JzLmF1dGgnLCAnZGphbmdvLmNvbnRyaWIubWVzc2FnZXMuY29udGV4dF9wcm9jZXNzb3JzLm1lc3NhZ2VzJ119fV0KVEVTVF9OT05fU0VSSUFMSVpFRF9BUFBTID0gW10KVEVTVF9SVU5ORVIgPSAnZGphbmdvX25vc2UuTm9zZVRlc3RTdWl0ZVJ1bm5lcicKVEhPVVNBTkRfU0VQQVJBVE9SID0gJywnClRJTUVfRk9STUFUID0gJ1AnClRJTUVfSU5QVVRfRk9STUFUUyA9IFsnJUg6JU06JVMnLCAnJUg6JU06JVMuJWYnLCAnJUg6JU0nXQpUSU1FX1pPTkUgPSAnVVRDJwpVU0VfRVRBR1MgPSBGYWxzZQpVU0VfSTE4TiA9IFRydWUKVVNFX0wxME4gPSBUcnVlClVTRV9USE9VU0FORF9TRVBBUkFUT1IgPSBGYWxzZQpVU0VfVFogPSBUcnVlClVTRV9YX0ZPUldBUkRFRF9IT1NUID0gRmFsc2UKVVNFX1hfRk9SV0FSREVEX1BPUlQgPSBGYWxzZQpXRUJQQUNLX0xPQURFUiA9IHsnREVGQVVMVCc6IHsnQlVORExFX0RJUl9OQU1FJzogJ2J1bmRsZXMvJywgJ1NUQVRTX0ZJTEUnOiAnRDpcXFBQTEFcXHdlYnBhY2stc3RhdHMuanNvbid9fQpXU0dJX0FQUExJQ0FUSU9OID0gJ2thcGUud3NnaS5hcHBsaWNhdGlvbicKWF9GUkFNRV9PUFRJT05TID0gJ1NBTUVPUklHSU4nCllFQVJfTU9OVEhfRk9STUFUID0gJ0YgWScKCgpZb3UncmUgc2VlaW5nIHRoaXMgZXJyb3IgYmVjYXVzZSB5b3UgaGF2ZSBERUJVRyA9IFRydWUgaW4geW91cgpEamFuZ28gc2V0dGluZ3MgZmlsZS4gQ2hhbmdlIHRoYXQgdG8gRmFsc2UsIGFuZCBEamFuZ28gd2lsbApkaXNwbGF5IGEgc3RhbmRhcmQgcGFnZSBnZW5lcmF0ZWQgYnkgdGhlIGhhbmRsZXIgZm9yIHRoaXMgc3RhdHVzIGNvZGUuCgo=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/plain\"}" - } -}, -{ - "model": "silk.response", - "pk": "815c7b42-edeb-4526-afa7-0531af0188d4", - "fields": { - "request": "77f011df-993c-460a-a23f-8c5dcbb71aea", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPlNpdGUgYWRtaW5pc3RyYXRpb24gfCBEamFuZ28gc2l0ZSBhZG1pbjwvdGl0bGU+CjxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvYWRtaW4vY3NzL2Jhc2UuY3NzIiAvPgo8bGluayByZWw9InN0eWxlc2hlZXQiIHR5cGU9InRleHQvY3NzIiBocmVmPSIvYXNzZXRzL2FkbWluL2Nzcy9kYXNoYm9hcmQuY3NzIiAvPgoKCjxtZXRhIG5hbWU9InJvYm90cyIgY29udGVudD0iTk9ORSxOT0FSQ0hJVkUiIC8+CjwvaGVhZD4KCgo8Ym9keSBjbGFzcz0iIGRhc2hib2FyZCIKICBkYXRhLWFkbWluLXV0Yy1vZmZzZXQ9IjAiPgoKPCEtLSBDb250YWluZXIgLS0+CjxkaXYgaWQ9ImNvbnRhaW5lciI+CgogICAgCiAgICA8IS0tIEhlYWRlciAtLT4KICAgIDxkaXYgaWQ9ImhlYWRlciI+CiAgICAgICAgPGRpdiBpZD0iYnJhbmRpbmciPgogICAgICAgIAo8aDEgaWQ9InNpdGUtbmFtZSI+PGEgaHJlZj0iL2FkbWluLyI+RGphbmdvIGFkbWluaXN0cmF0aW9uPC9hPjwvaDE+CgogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIDxkaXYgaWQ9InVzZXItdG9vbHMiPgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIFdlbGNvbWUsCiAgICAgICAgICAgICAgICA8c3Ryb25nPmthcGU8L3N0cm9uZz4uCiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii8iPlZpZXcgc2l0ZTwvYT4gLwogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vcGFzc3dvcmRfY2hhbmdlLyI+Q2hhbmdlIHBhc3N3b3JkPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9sb2dvdXQvIj5Mb2cgb3V0PC9hPgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgICAgICAKICAgICAgICAKICAgICAgICAKICAgIDwvZGl2PgogICAgPCEtLSBFTkQgSGVhZGVyIC0tPgogICAgCiAgICAKCiAgICAKICAgICAgICAKICAgIAoKICAgIDwhLS0gQ29udGVudCAtLT4KICAgIDxkaXYgaWQ9ImNvbnRlbnQiIGNsYXNzPSJjb2xNUyI+CiAgICAgICAgCiAgICAgICAgPGgxPlNpdGUgYWRtaW5pc3RyYXRpb248L2gxPgogICAgICAgIAo8ZGl2IGlkPSJjb250ZW50LW1haW4iPgoKCiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJhcHAtYXV0aCBtb2R1bGUiPgogICAgICAgIDx0YWJsZT4KICAgICAgICA8Y2FwdGlvbj4KICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2F1dGgvIiBjbGFzcz0ic2VjdGlvbiIgdGl0bGU9Ik1vZGVscyBpbiB0aGUgQXV0aGVudGljYXRpb24gYW5kIEF1dGhvcml6YXRpb24gYXBwbGljYXRpb24iPkF1dGhlbnRpY2F0aW9uIGFuZCBBdXRob3JpemF0aW9uPC9hPgogICAgICAgIDwvY2FwdGlvbj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1ncm91cCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL2dyb3VwLyI+R3JvdXBzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvZ3JvdXAvYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL2dyb3VwLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC11c2VyIj4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8iPlVzZXJzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgPC90YWJsZT4KICAgICAgICA8L2Rpdj4KICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImFwcC1jb3JlIG1vZHVsZSI+CiAgICAgICAgPHRhYmxlPgogICAgICAgIDxjYXB0aW9uPgogICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS8iIGNsYXNzPSJzZWN0aW9uIiB0aXRsZT0iTW9kZWxzIGluIHRoZSBDb3JlIGFwcGxpY2F0aW9uIj5Db3JlPC9hPgogICAgICAgIDwvY2FwdGlvbj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1hcHBsaWNhdGlvbiI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL2FwcGxpY2F0aW9uLyI+QXBwbGljYXRpb25zPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvYXBwbGljYXRpb24vYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL2FwcGxpY2F0aW9uLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1jb21wYW55Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8iPkNvbXBhbnlzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgICAgIDx0ciBjbGFzcz0ibW9kZWwtc3R1ZGVudCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvIj5TdHVkZW50czwvYT48L3RoPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvIiBjbGFzcz0iY2hhbmdlbGluayI+Q2hhbmdlPC9hPjwvdGQ+CiAgICAgICAgICAgIAogICAgICAgICAgICA8L3RyPgogICAgICAgIAogICAgICAgICAgICA8dHIgY2xhc3M9Im1vZGVsLXN1cGVydmlzb3IiPgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0aCBzY29wZT0icm93Ij48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yLyI+U3VwZXJ2aXNvcnM8L2E+PC90aD4KICAgICAgICAgICAgCgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0ZD48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yL2FkZC8iIGNsYXNzPSJhZGRsaW5rIj5BZGQ8L2E+PC90ZD4KICAgICAgICAgICAgCgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0ZD48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC12YWNhbmN5Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS8iPlZhY2FuY3lzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgPC90YWJsZT4KICAgICAgICA8L2Rpdj4KICAgIAoKPC9kaXY+CgogICAgICAgIAo8ZGl2IGlkPSJjb250ZW50LXJlbGF0ZWQiPgogICAgPGRpdiBjbGFzcz0ibW9kdWxlIiBpZD0icmVjZW50LWFjdGlvbnMtbW9kdWxlIj4KICAgICAgICA8aDI+UmVjZW50IGFjdGlvbnM8L2gyPgogICAgICAgIDxoMz5NeSBhY3Rpb25zPC9oMz4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgPHVsIGNsYXNzPSJhY3Rpb25saXN0Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaSBjbGFzcz0iYWRkbGluayI+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vYXV0aC91c2VyLzIvY2hhbmdlLyI+ZmFyaGFuPC9hPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YnIvPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9Im1pbmkgcXVpZXQiPlVzZXI8L3NwYW4+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgPC9saT4KICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaSBjbGFzcz0iYWRkbGluayI+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS9jb21wYW55LzEvY2hhbmdlLyI+Q29tcGFueSBvYmplY3Q8L2E+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxici8+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz0ibWluaSBxdWlldCI+Q29tcGFueTwvc3Bhbj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgICAgPC91bD4KICAgICAgICAgICAgCiAgICA8L2Rpdj4KPC9kaXY+CgogICAgICAgIDxiciBjbGFzcz0iY2xlYXIiIC8+CiAgICA8L2Rpdj4KICAgIDwhLS0gRU5EIENvbnRlbnQgLS0+CgogICAgPGRpdiBpZD0iZm9vdGVyIj48L2Rpdj4KPC9kaXY+CjwhLS0gRU5EIENvbnRhaW5lciAtLT4KCjwvYm9keT4KPC9odG1sPgo=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 14:52:50 GMT\", \"Expires\": \"Mon, 27 Mar 2017 14:52:50 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\"}" - } -}, -{ - "model": "silk.response", - "pk": "82ca0b8b-c449-44da-9daf-d9ae677cd98e", - "fields": { - "request": "097a3a7f-fd94-4874-b3fa-e9c7268e2d4f", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "838d059f-6752-498b-8de5-35ca843d37c2", - "fields": { - "request": "eb7a6270-e3ff-456b-a8c9-af31f290ddc9", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "8397ef65-dae3-4b46-a9a8-e4018e43a4e2", - "fields": { - "request": "3bc5dce1-c38c-4853-b8da-b5f8f1f1eca9", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "841620c8-9ac2-4c10-a41e-6f33fd6376c1", - "fields": { - "request": "a56a37dd-7926-4dd4-a7d6-5e9664938c9e", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "84558f35-c936-4da3-97eb-5a977311befe", - "fields": { - "request": "f8594dc7-e235-4788-ba44-ef3e0831827c", - "status_code": 404, - "raw_body": "CjwhRE9DVFlQRSBodG1sPgo8aHRtbCBsYW5nPSJlbiI+CjxoZWFkPgogIDxtZXRhIGh0dHAtZXF1aXY9ImNvbnRlbnQtdHlwZSIgY29udGVudD0idGV4dC9odG1sOyBjaGFyc2V0PXV0Zi04Ij4KICA8dGl0bGU+UGFnZSBub3QgZm91bmQgYXQgL2FkbWluL2NvcmUvdmFjYW5jeS8yL2NoYW5nZS88L3RpdGxlPgogIDxtZXRhIG5hbWU9InJvYm90cyIgY29udGVudD0iTk9ORSxOT0FSQ0hJVkUiPgogIDxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+CiAgICBodG1sICogeyBwYWRkaW5nOjA7IG1hcmdpbjowOyB9CiAgICBib2R5ICogeyBwYWRkaW5nOjEwcHggMjBweDsgfQogICAgYm9keSAqICogeyBwYWRkaW5nOjA7IH0KICAgIGJvZHkgeyBmb250OnNtYWxsIHNhbnMtc2VyaWY7IGJhY2tncm91bmQ6I2VlZTsgfQogICAgYm9keT5kaXYgeyBib3JkZXItYm90dG9tOjFweCBzb2xpZCAjZGRkOyB9CiAgICBoMSB7IGZvbnQtd2VpZ2h0Om5vcm1hbDsgbWFyZ2luLWJvdHRvbTouNGVtOyB9CiAgICBoMSBzcGFuIHsgZm9udC1zaXplOjYwJTsgY29sb3I6IzY2NjsgZm9udC13ZWlnaHQ6bm9ybWFsOyB9CiAgICB0YWJsZSB7IGJvcmRlcjpub25lOyBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOyB3aWR0aDoxMDAlOyB9CiAgICB0ZCwgdGggeyB2ZXJ0aWNhbC1hbGlnbjp0b3A7IHBhZGRpbmc6MnB4IDNweDsgfQogICAgdGggeyB3aWR0aDoxMmVtOyB0ZXh0LWFsaWduOnJpZ2h0OyBjb2xvcjojNjY2OyBwYWRkaW5nLXJpZ2h0Oi41ZW07IH0KICAgICNpbmZvIHsgYmFja2dyb3VuZDojZjZmNmY2OyB9CiAgICAjaW5mbyBvbCB7IG1hcmdpbjogMC41ZW0gNGVtOyB9CiAgICAjaW5mbyBvbCBsaSB7IGZvbnQtZmFtaWx5OiBtb25vc3BhY2U7IH0KICAgICNzdW1tYXJ5IHsgYmFja2dyb3VuZDogI2ZmYzsgfQogICAgI2V4cGxhbmF0aW9uIHsgYmFja2dyb3VuZDojZWVlOyBib3JkZXItYm90dG9tOiAwcHggbm9uZTsgfQogIDwvc3R5bGU+CjwvaGVhZD4KPGJvZHk+CiAgPGRpdiBpZD0ic3VtbWFyeSI+CiAgICA8aDE+UGFnZSBub3QgZm91bmQgPHNwYW4+KDQwNCk8L3NwYW4+PC9oMT4KICAgIDx0YWJsZSBjbGFzcz0ibWV0YSI+CiAgICAgIDx0cj4KICAgICAgICA8dGg+UmVxdWVzdCBNZXRob2Q6PC90aD4KICAgICAgICA8dGQ+R0VUPC90ZD4KICAgICAgPC90cj4KICAgICAgPHRyPgogICAgICAgIDx0aD5SZXF1ZXN0IFVSTDo8L3RoPgogICAgICAgIDx0ZD5odHRwOi8vMTI3LjAuMC4xOjgwMDAvYWRtaW4vY29yZS92YWNhbmN5LzIvY2hhbmdlLzwvdGQ+CiAgICAgIDwvdHI+CiAgICAgIAogICAgICA8dHI+CiAgICAgICAgPHRoPlJhaXNlZCBieTo8L3RoPgogICAgICAgIDx0ZD5kamFuZ28uY29udHJpYi5hZG1pbi5vcHRpb25zLmNoYW5nZV92aWV3PC90ZD4KICAgICAgPC90cj4KICAgICAgCiAgICA8L3RhYmxlPgogIDwvZGl2PgogIDxkaXYgaWQ9ImluZm8iPgogICAgCiAgICAgIDxwPnZhY2FuY3kgb2JqZWN0IHdpdGggcHJpbWFyeSBrZXkgJiMzOTsyJiMzOTsgZG9lcyBub3QgZXhpc3QuPC9wPgogICAgCiAgPC9kaXY+CgogIDxkaXYgaWQ9ImV4cGxhbmF0aW9uIj4KICAgIDxwPgogICAgICBZb3UncmUgc2VlaW5nIHRoaXMgZXJyb3IgYmVjYXVzZSB5b3UgaGF2ZSA8Y29kZT5ERUJVRyA9IFRydWU8L2NvZGU+IGluCiAgICAgIHlvdXIgRGphbmdvIHNldHRpbmdzIGZpbGUuIENoYW5nZSB0aGF0IHRvIDxjb2RlPkZhbHNlPC9jb2RlPiwgYW5kIERqYW5nbwogICAgICB3aWxsIGRpc3BsYXkgYSBzdGFuZGFyZCA0MDQgcGFnZS4KICAgIDwvcD4KICA8L2Rpdj4KPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html\"}" - } -}, -{ - "model": "silk.response", - "pk": "854f7825-ac8e-4f07-a918-e240e39a46df", - "fields": { - "request": "5978749e-4754-47ee-b18d-e12924dee357", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPlNlbGVjdCBjb21wYW55IHRvIGNoYW5nZSB8IERqYW5nbyBzaXRlIGFkbWluPC90aXRsZT4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvYmFzZS5jc3MiIC8+CgogIAogIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvYWRtaW4vY3NzL2NoYW5nZWxpc3RzLmNzcyIgLz4KICAKICAKICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KICAKICAKICAKCgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvY29yZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL2pxdWVyeS9qcXVlcnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2pxdWVyeS5pbml0LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hZG1pbi9SZWxhdGVkT2JqZWN0TG9va3Vwcy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvYWN0aW9ucy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdXJsaWZ5LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9wcmVwb3B1bGF0ZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL3hyZWdleHAveHJlZ2V4cC5qcyI+PC9zY3JpcHQ+Cgo8bWV0YSBuYW1lPSJyb2JvdHMiIGNvbnRlbnQ9Ik5PTkUsTk9BUkNISVZFIiAvPgo8L2hlYWQ+CgoKPGJvZHkgY2xhc3M9IiBhcHAtY29yZSBtb2RlbC1jb21wYW55IGNoYW5nZS1saXN0IgogIGRhdGEtYWRtaW4tdXRjLW9mZnNldD0iMCI+Cgo8IS0tIENvbnRhaW5lciAtLT4KPGRpdiBpZD0iY29udGFpbmVyIj4KCiAgICAKICAgIDwhLS0gSGVhZGVyIC0tPgogICAgPGRpdiBpZD0iaGVhZGVyIj4KICAgICAgICA8ZGl2IGlkPSJicmFuZGluZyI+CiAgICAgICAgCjxoMSBpZD0ic2l0ZS1uYW1lIj48YSBocmVmPSIvYWRtaW4vIj5EamFuZ28gYWRtaW5pc3RyYXRpb248L2E+PC9oMT4KCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgPGRpdiBpZD0idXNlci10b29scyI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgV2VsY29tZSwKICAgICAgICAgICAgICAgIDxzdHJvbmc+a2FwZTwvc3Ryb25nPi4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iLyI+VmlldyBzaXRlPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9wYXNzd29yZF9jaGFuZ2UvIj5DaGFuZ2UgcGFzc3dvcmQ8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2xvZ291dC8iPkxvZyBvdXQ8L2E+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIAogICAgPC9kaXY+CiAgICA8IS0tIEVORCBIZWFkZXIgLS0+CiAgICAKPGRpdiBjbGFzcz0iYnJlYWRjcnVtYnMiPgo8YSBocmVmPSIvYWRtaW4vIj5Ib21lPC9hPgomcnNhcXVvOyA8YSBocmVmPSIvYWRtaW4vY29yZS8iPkNvcmU8L2E+CiZyc2FxdW87IENvbXBhbnlzCjwvZGl2PgoKICAgIAoKICAgIAogICAgICAgIAogICAgCgogICAgPCEtLSBDb250ZW50IC0tPgogICAgPGRpdiBpZD0iY29udGVudCIgY2xhc3M9ImZsZXgiPgogICAgICAgIAogICAgICAgIDxoMT5TZWxlY3QgY29tcGFueSB0byBjaGFuZ2U8L2gxPgogICAgICAgIAogIDxkaXYgaWQ9ImNvbnRlbnQtbWFpbiI+CiAgICAKICAgICAgICA8dWwgY2xhc3M9Im9iamVjdC10b29scyI+CiAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaT4KICAgICAgICAgICAgICAKICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS9jb21wYW55L2FkZC8iIGNsYXNzPSJhZGRsaW5rIj4KICAgICAgICAgICAgICAgIEFkZCBjb21wYW55CiAgICAgICAgICAgICAgPC9hPgogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgIAogICAgICAgIDwvdWw+CiAgICAKICAgIAogICAgPGRpdiBjbGFzcz0ibW9kdWxlIiBpZD0iY2hhbmdlbGlzdCI+CiAgICAgIAoKCiAgICAgIAoKCiAgICAgIAogICAgICAgIAogICAgICAKCiAgICAgIDxmb3JtIGlkPSJjaGFuZ2VsaXN0LWZvcm0iIG1ldGhvZD0icG9zdCIgbm92YWxpZGF0ZT48aW5wdXQgdHlwZT0naGlkZGVuJyBuYW1lPSdjc3JmbWlkZGxld2FyZXRva2VuJyB2YWx1ZT0ncTlRWnozbzNEOGJsUDlvMmVOM0d6MjJnTjlJTnFXbllQZlhPTHpnWXE1bUtjaHF1WGV5OHJKSjBMNE9DS1dqTicgLz4KICAgICAgCgogICAgICAKICAgICAgICAgIAo8ZGl2IGNsYXNzPSJhY3Rpb25zIj4KICAgIDxsYWJlbD5BY3Rpb246IDxzZWxlY3QgbmFtZT0iYWN0aW9uIiByZXF1aXJlZD4KPG9wdGlvbiB2YWx1ZT0iIiBzZWxlY3RlZD0ic2VsZWN0ZWQiPi0tLS0tLS0tLTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSJkZWxldGVfc2VsZWN0ZWQiPkRlbGV0ZSBzZWxlY3RlZCBjb21wYW55czwvb3B0aW9uPgo8L3NlbGVjdD48L2xhYmVsPjxpbnB1dCBjbGFzcz0ic2VsZWN0LWFjcm9zcyIgbmFtZT0ic2VsZWN0X2Fjcm9zcyIgdHlwZT0iaGlkZGVuIiB2YWx1ZT0iMCIgLz4KICAgIDxidXR0b24gdHlwZT0ic3VibWl0IiBjbGFzcz0iYnV0dG9uIiB0aXRsZT0iUnVuIHRoZSBzZWxlY3RlZCBhY3Rpb24iIG5hbWU9ImluZGV4IiB2YWx1ZT0iMCI+R288L2J1dHRvbj4KICAgIAogICAgICAgIDxzcGFuIGNsYXNzPSJhY3Rpb24tY291bnRlciIgZGF0YS1hY3Rpb25zLWljbnQ9IjEiPjAgb2YgMSBzZWxlY3RlZDwvc3Bhbj4KICAgICAgICAKICAgIAo8L2Rpdj4KCiAgICAgICAgICAKCgo8ZGl2IGNsYXNzPSJyZXN1bHRzIj4KPHRhYmxlIGlkPSJyZXN1bHRfbGlzdCI+Cjx0aGVhZD4KPHRyPgoKPHRoIHNjb3BlPSJjb2wiICBjbGFzcz0iYWN0aW9uLWNoZWNrYm94LWNvbHVtbiI+CiAgIAogICA8ZGl2IGNsYXNzPSJ0ZXh0Ij48c3Bhbj48aW5wdXQgdHlwZT0iY2hlY2tib3giIGlkPSJhY3Rpb24tdG9nZ2xlIiAvPjwvc3Bhbj48L2Rpdj4KICAgPGRpdiBjbGFzcz0iY2xlYXIiPjwvZGl2Pgo8L3RoPgo8dGggc2NvcGU9ImNvbCIgIGNsYXNzPSJjb2x1bW4tX19zdHJfXyI+CiAgIAogICA8ZGl2IGNsYXNzPSJ0ZXh0Ij48c3Bhbj5Db21wYW55PC9zcGFuPjwvZGl2PgogICA8ZGl2IGNsYXNzPSJjbGVhciI+PC9kaXY+CjwvdGg+CjwvdHI+CjwvdGhlYWQ+Cjx0Ym9keT4KCgo8dHIgY2xhc3M9InJvdzEiPjx0ZCBjbGFzcz0iYWN0aW9uLWNoZWNrYm94Ij48aW5wdXQgY2xhc3M9ImFjdGlvbi1zZWxlY3QiIG5hbWU9Il9zZWxlY3RlZF9hY3Rpb24iIHR5cGU9ImNoZWNrYm94IiB2YWx1ZT0iMiIgLz48L3RkPjx0aCBjbGFzcz0iZmllbGQtX19zdHJfXyI+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8yL2NoYW5nZS8iPkNvbXBhbnkgb2JqZWN0PC9hPjwvdGg+PC90cj4KCjwvdGJvZHk+CjwvdGFibGU+CjwvZGl2PgoKCiAgICAgICAgICAKICAgICAgCiAgICAgIAoKPHAgY2xhc3M9InBhZ2luYXRvciI+CgoxIGNvbXBhbnkKCgo8L3A+CgogICAgICA8L2Zvcm0+CiAgICA8L2Rpdj4KICA8L2Rpdj4KCiAgICAgICAgCiAgICAgICAgPGJyIGNsYXNzPSJjbGVhciIgLz4KICAgIDwvZGl2PgogICAgPCEtLSBFTkQgQ29udGVudCAtLT4KCiAgICA8ZGl2IGlkPSJmb290ZXIiPjwvZGl2Pgo8L2Rpdj4KPCEtLSBFTkQgQ29udGFpbmVyIC0tPgoKPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 15:22:07 GMT\", \"Expires\": \"Mon, 27 Mar 2017 15:22:07 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "859b0cec-8ba9-4ef7-a15f-d98589ccacb1", - "fields": { - "request": "48414e6e-676a-4fc1-b468-03ff7de2e324", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPlNpdGUgYWRtaW5pc3RyYXRpb24gfCBEamFuZ28gc2l0ZSBhZG1pbjwvdGl0bGU+CjxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvYWRtaW4vY3NzL2Jhc2UuY3NzIiAvPgo8bGluayByZWw9InN0eWxlc2hlZXQiIHR5cGU9InRleHQvY3NzIiBocmVmPSIvYXNzZXRzL2FkbWluL2Nzcy9kYXNoYm9hcmQuY3NzIiAvPgoKCjxtZXRhIG5hbWU9InJvYm90cyIgY29udGVudD0iTk9ORSxOT0FSQ0hJVkUiIC8+CjwvaGVhZD4KCgo8Ym9keSBjbGFzcz0iIGRhc2hib2FyZCIKICBkYXRhLWFkbWluLXV0Yy1vZmZzZXQ9IjAiPgoKPCEtLSBDb250YWluZXIgLS0+CjxkaXYgaWQ9ImNvbnRhaW5lciI+CgogICAgCiAgICA8IS0tIEhlYWRlciAtLT4KICAgIDxkaXYgaWQ9ImhlYWRlciI+CiAgICAgICAgPGRpdiBpZD0iYnJhbmRpbmciPgogICAgICAgIAo8aDEgaWQ9InNpdGUtbmFtZSI+PGEgaHJlZj0iL2FkbWluLyI+RGphbmdvIGFkbWluaXN0cmF0aW9uPC9hPjwvaDE+CgogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIDxkaXYgaWQ9InVzZXItdG9vbHMiPgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIFdlbGNvbWUsCiAgICAgICAgICAgICAgICA8c3Ryb25nPmthcGU8L3N0cm9uZz4uCiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii8iPlZpZXcgc2l0ZTwvYT4gLwogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vcGFzc3dvcmRfY2hhbmdlLyI+Q2hhbmdlIHBhc3N3b3JkPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9sb2dvdXQvIj5Mb2cgb3V0PC9hPgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgICAgICAKICAgICAgICAKICAgICAgICAKICAgIDwvZGl2PgogICAgPCEtLSBFTkQgSGVhZGVyIC0tPgogICAgCiAgICAKCiAgICAKICAgICAgICAKICAgIAoKICAgIDwhLS0gQ29udGVudCAtLT4KICAgIDxkaXYgaWQ9ImNvbnRlbnQiIGNsYXNzPSJjb2xNUyI+CiAgICAgICAgCiAgICAgICAgPGgxPlNpdGUgYWRtaW5pc3RyYXRpb248L2gxPgogICAgICAgIAo8ZGl2IGlkPSJjb250ZW50LW1haW4iPgoKCiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJhcHAtYXV0aCBtb2R1bGUiPgogICAgICAgIDx0YWJsZT4KICAgICAgICA8Y2FwdGlvbj4KICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2F1dGgvIiBjbGFzcz0ic2VjdGlvbiIgdGl0bGU9Ik1vZGVscyBpbiB0aGUgQXV0aGVudGljYXRpb24gYW5kIEF1dGhvcml6YXRpb24gYXBwbGljYXRpb24iPkF1dGhlbnRpY2F0aW9uIGFuZCBBdXRob3JpemF0aW9uPC9hPgogICAgICAgIDwvY2FwdGlvbj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1ncm91cCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL2dyb3VwLyI+R3JvdXBzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvZ3JvdXAvYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL2dyb3VwLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC11c2VyIj4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8iPlVzZXJzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgPC90YWJsZT4KICAgICAgICA8L2Rpdj4KICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImFwcC1jb3JlIG1vZHVsZSI+CiAgICAgICAgPHRhYmxlPgogICAgICAgIDxjYXB0aW9uPgogICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS8iIGNsYXNzPSJzZWN0aW9uIiB0aXRsZT0iTW9kZWxzIGluIHRoZSBDb3JlIGFwcGxpY2F0aW9uIj5Db3JlPC9hPgogICAgICAgIDwvY2FwdGlvbj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1hcHBsaWNhdGlvbiI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL2FwcGxpY2F0aW9uLyI+QXBwbGljYXRpb25zPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvYXBwbGljYXRpb24vYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL2FwcGxpY2F0aW9uLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1jb21wYW55Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8iPkNvbXBhbnlzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgICAgIDx0ciBjbGFzcz0ibW9kZWwtc3R1ZGVudCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvIj5TdHVkZW50czwvYT48L3RoPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvIiBjbGFzcz0iY2hhbmdlbGluayI+Q2hhbmdlPC9hPjwvdGQ+CiAgICAgICAgICAgIAogICAgICAgICAgICA8L3RyPgogICAgICAgIAogICAgICAgICAgICA8dHIgY2xhc3M9Im1vZGVsLXN1cGVydmlzb3IiPgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0aCBzY29wZT0icm93Ij48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yLyI+U3VwZXJ2aXNvcnM8L2E+PC90aD4KICAgICAgICAgICAgCgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0ZD48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yL2FkZC8iIGNsYXNzPSJhZGRsaW5rIj5BZGQ8L2E+PC90ZD4KICAgICAgICAgICAgCgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0ZD48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC12YWNhbmN5Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS8iPlZhY2FuY3lzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgPC90YWJsZT4KICAgICAgICA8L2Rpdj4KICAgIAoKPC9kaXY+CgogICAgICAgIAo8ZGl2IGlkPSJjb250ZW50LXJlbGF0ZWQiPgogICAgPGRpdiBjbGFzcz0ibW9kdWxlIiBpZD0icmVjZW50LWFjdGlvbnMtbW9kdWxlIj4KICAgICAgICA8aDI+UmVjZW50IGFjdGlvbnM8L2gyPgogICAgICAgIDxoMz5NeSBhY3Rpb25zPC9oMz4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgPHVsIGNsYXNzPSJhY3Rpb25saXN0Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaSBjbGFzcz0iYWRkbGluayI+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS9hcHBsaWNhdGlvbi8xL2NoYW5nZS8iPkFwcGxpY2F0aW9uIG9iamVjdDwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5BcHBsaWNhdGlvbjwvc3Bhbj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgICAgPGxpIGNsYXNzPSJhZGRsaW5rIj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9jb3JlL3ZhY2FuY3kvMS9jaGFuZ2UvIj5WYWNhbmN5IG9iamVjdDwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5WYWNhbmN5PC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8bGkgY2xhc3M9ImFkZGxpbmsiPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2NvcmUvc3VwZXJ2aXNvci8xL2NoYW5nZS8iPlN1cGVydmlzb3Igb2JqZWN0PC9hPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YnIvPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9Im1pbmkgcXVpZXQiPlN1cGVydmlzb3I8L3NwYW4+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgPC9saT4KICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaSBjbGFzcz0iYWRkbGluayI+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS9zdHVkZW50LzEvY2hhbmdlLyI+U3R1ZGVudCBvYmplY3Q8L2E+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxici8+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz0ibWluaSBxdWlldCI+U3R1ZGVudDwvc3Bhbj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgICAgPGxpIGNsYXNzPSJhZGRsaW5rIj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9jb3JlL2NvbXBhbnkvMi9jaGFuZ2UvIj5Db21wYW55IG9iamVjdDwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5Db21wYW55PC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8bGkgY2xhc3M9ImRlbGV0ZWxpbmsiPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgQ29tcGFueSBvYmplY3QKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5Db21wYW55PC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8bGkgY2xhc3M9ImFkZGxpbmsiPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci80L2NoYW5nZS8iPmZhcmhhbnN1cGVyPC9hPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YnIvPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9Im1pbmkgcXVpZXQiPlVzZXI8L3NwYW4+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgPC9saT4KICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaSBjbGFzcz0iYWRkbGluayI+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vYXV0aC91c2VyLzMvY2hhbmdlLyI+ZmFyaGFuY29ycDwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5Vc2VyPC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8bGkgY2xhc3M9ImFkZGxpbmsiPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8yL2NoYW5nZS8iPmZhcmhhbjwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5Vc2VyPC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8bGkgY2xhc3M9ImFkZGxpbmsiPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8xL2NoYW5nZS8iPkNvbXBhbnkgb2JqZWN0PC9hPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YnIvPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9Im1pbmkgcXVpZXQiPkNvbXBhbnk8L3NwYW4+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgPC9saT4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdWw+CiAgICAgICAgICAgIAogICAgPC9kaXY+CjwvZGl2PgoKICAgICAgICA8YnIgY2xhc3M9ImNsZWFyIiAvPgogICAgPC9kaXY+CiAgICA8IS0tIEVORCBDb250ZW50IC0tPgoKICAgIDxkaXYgaWQ9ImZvb3RlciI+PC9kaXY+CjwvZGl2Pgo8IS0tIEVORCBDb250YWluZXIgLS0+Cgo8L2JvZHk+CjwvaHRtbD4K", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 17:13:34 GMT\", \"Expires\": \"Mon, 27 Mar 2017 17:13:34 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\"}" - } -}, -{ - "model": "silk.response", - "pk": "86b709fe-941c-46e7-823c-09919eb29b32", - "fields": { - "request": "d3dc6386-5b58-49cc-baa0-e265c6e6d51e", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPlNlbGVjdCB1c2VyIHRvIGNoYW5nZSB8IERqYW5nbyBzaXRlIGFkbWluPC90aXRsZT4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvYmFzZS5jc3MiIC8+CgogIAogIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvYWRtaW4vY3NzL2NoYW5nZWxpc3RzLmNzcyIgLz4KICAKICAKICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KICAKICAKICAKCgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvY29yZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL2pxdWVyeS9qcXVlcnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2pxdWVyeS5pbml0LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hZG1pbi9SZWxhdGVkT2JqZWN0TG9va3Vwcy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvYWN0aW9ucy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdXJsaWZ5LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9wcmVwb3B1bGF0ZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL3hyZWdleHAveHJlZ2V4cC5qcyI+PC9zY3JpcHQ+Cgo8bWV0YSBuYW1lPSJyb2JvdHMiIGNvbnRlbnQ9Ik5PTkUsTk9BUkNISVZFIiAvPgo8L2hlYWQ+CgoKPGJvZHkgY2xhc3M9IiBhcHAtYXV0aCBtb2RlbC11c2VyIGNoYW5nZS1saXN0IgogIGRhdGEtYWRtaW4tdXRjLW9mZnNldD0iMCI+Cgo8IS0tIENvbnRhaW5lciAtLT4KPGRpdiBpZD0iY29udGFpbmVyIj4KCiAgICAKICAgIDwhLS0gSGVhZGVyIC0tPgogICAgPGRpdiBpZD0iaGVhZGVyIj4KICAgICAgICA8ZGl2IGlkPSJicmFuZGluZyI+CiAgICAgICAgCjxoMSBpZD0ic2l0ZS1uYW1lIj48YSBocmVmPSIvYWRtaW4vIj5EamFuZ28gYWRtaW5pc3RyYXRpb248L2E+PC9oMT4KCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgPGRpdiBpZD0idXNlci10b29scyI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgV2VsY29tZSwKICAgICAgICAgICAgICAgIDxzdHJvbmc+a2FwZTwvc3Ryb25nPi4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iLyI+VmlldyBzaXRlPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9wYXNzd29yZF9jaGFuZ2UvIj5DaGFuZ2UgcGFzc3dvcmQ8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2xvZ291dC8iPkxvZyBvdXQ8L2E+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIAogICAgPC9kaXY+CiAgICA8IS0tIEVORCBIZWFkZXIgLS0+CiAgICAKPGRpdiBjbGFzcz0iYnJlYWRjcnVtYnMiPgo8YSBocmVmPSIvYWRtaW4vIj5Ib21lPC9hPgomcnNhcXVvOyA8YSBocmVmPSIvYWRtaW4vYXV0aC8iPkF1dGhlbnRpY2F0aW9uIGFuZCBBdXRob3JpemF0aW9uPC9hPgomcnNhcXVvOyBVc2Vycwo8L2Rpdj4KCiAgICAKCiAgICAKICAgICAgICAKICAgIAoKICAgIDwhLS0gQ29udGVudCAtLT4KICAgIDxkaXYgaWQ9ImNvbnRlbnQiIGNsYXNzPSJmbGV4Ij4KICAgICAgICAKICAgICAgICA8aDE+U2VsZWN0IHVzZXIgdG8gY2hhbmdlPC9oMT4KICAgICAgICAKICA8ZGl2IGlkPSJjb250ZW50LW1haW4iPgogICAgCiAgICAgICAgPHVsIGNsYXNzPSJvYmplY3QtdG9vbHMiPgogICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICA8bGk+CiAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci9hZGQvIiBjbGFzcz0iYWRkbGluayI+CiAgICAgICAgICAgICAgICBBZGQgdXNlcgogICAgICAgICAgICAgIDwvYT4KICAgICAgICAgICAgPC9saT4KICAgICAgICAgICAgCiAgICAgICAgICAKICAgICAgICA8L3VsPgogICAgCiAgICAKICAgIDxkaXYgY2xhc3M9Im1vZHVsZSBmaWx0ZXJlZCIgaWQ9ImNoYW5nZWxpc3QiPgogICAgICAKCjxkaXYgaWQ9InRvb2xiYXIiPjxmb3JtIGlkPSJjaGFuZ2VsaXN0LXNlYXJjaCIgbWV0aG9kPSJnZXQiPgo8ZGl2PjwhLS0gRElWIG5lZWRlZCBmb3IgdmFsaWQgSFRNTCAtLT4KPGxhYmVsIGZvcj0ic2VhcmNoYmFyIj48aW1nIHNyYz0iL2Fzc2V0cy9hZG1pbi9pbWcvc2VhcmNoLnN2ZyIgYWx0PSJTZWFyY2giIC8+PC9sYWJlbD4KPGlucHV0IHR5cGU9InRleHQiIHNpemU9IjQwIiBuYW1lPSJxIiB2YWx1ZT0iIiBpZD0ic2VhcmNoYmFyIiBhdXRvZm9jdXMgLz4KPGlucHV0IHR5cGU9InN1Ym1pdCIgdmFsdWU9IlNlYXJjaCIgLz4KCgo8L2Rpdj4KPC9mb3JtPjwvZGl2PgoKCiAgICAgIAoKCiAgICAgIAogICAgICAgIAogICAgICAgICAgPGRpdiBpZD0iY2hhbmdlbGlzdC1maWx0ZXIiPgogICAgICAgICAgICA8aDI+RmlsdGVyPC9oMj4KICAgICAgICAgICAgCjxoMz4gQnkgc3RhZmYgc3RhdHVzIDwvaDM+Cjx1bD4KCiAgICA8bGkgY2xhc3M9InNlbGVjdGVkIj4KICAgIDxhIGhyZWY9Ij8iPkFsbDwvYT48L2xpPgoKICAgIDxsaT4KICAgIDxhIGhyZWY9Ij9pc19zdGFmZl9fZXhhY3Q9MSI+WWVzPC9hPjwvbGk+CgogICAgPGxpPgogICAgPGEgaHJlZj0iP2lzX3N0YWZmX19leGFjdD0wIj5ObzwvYT48L2xpPgoKPC91bD4KCjxoMz4gQnkgc3VwZXJ1c2VyIHN0YXR1cyA8L2gzPgo8dWw+CgogICAgPGxpIGNsYXNzPSJzZWxlY3RlZCI+CiAgICA8YSBocmVmPSI/Ij5BbGw8L2E+PC9saT4KCiAgICA8bGk+CiAgICA8YSBocmVmPSI/aXNfc3VwZXJ1c2VyX19leGFjdD0xIj5ZZXM8L2E+PC9saT4KCiAgICA8bGk+CiAgICA8YSBocmVmPSI/aXNfc3VwZXJ1c2VyX19leGFjdD0wIj5ObzwvYT48L2xpPgoKPC91bD4KCjxoMz4gQnkgYWN0aXZlIDwvaDM+Cjx1bD4KCiAgICA8bGkgY2xhc3M9InNlbGVjdGVkIj4KICAgIDxhIGhyZWY9Ij8iPkFsbDwvYT48L2xpPgoKICAgIDxsaT4KICAgIDxhIGhyZWY9Ij9pc19hY3RpdmVfX2V4YWN0PTEiPlllczwvYT48L2xpPgoKICAgIDxsaT4KICAgIDxhIGhyZWY9Ij9pc19hY3RpdmVfX2V4YWN0PTAiPk5vPC9hPjwvbGk+Cgo8L3VsPgoKICAgICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAKCiAgICAgIDxmb3JtIGlkPSJjaGFuZ2VsaXN0LWZvcm0iIG1ldGhvZD0icG9zdCIgbm92YWxpZGF0ZT48aW5wdXQgdHlwZT0naGlkZGVuJyBuYW1lPSdjc3JmbWlkZGxld2FyZXRva2VuJyB2YWx1ZT0nZWJxOEtlVjZHbWpYVHZZTmVSQk5mYXRrdzhUT1h6Z0hEaHhYV0tOMXRqdW1nRDBmWGk2ZjdSYTR1M1pEaHpjdycgLz4KICAgICAgCgogICAgICAKICAgICAgICAgIAo8ZGl2IGNsYXNzPSJhY3Rpb25zIj4KICAgIDxsYWJlbD5BY3Rpb246IDxzZWxlY3QgbmFtZT0iYWN0aW9uIiByZXF1aXJlZD4KPG9wdGlvbiB2YWx1ZT0iIiBzZWxlY3RlZD0ic2VsZWN0ZWQiPi0tLS0tLS0tLTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSJkZWxldGVfc2VsZWN0ZWQiPkRlbGV0ZSBzZWxlY3RlZCB1c2Vyczwvb3B0aW9uPgo8L3NlbGVjdD48L2xhYmVsPjxpbnB1dCBjbGFzcz0ic2VsZWN0LWFjcm9zcyIgbmFtZT0ic2VsZWN0X2Fjcm9zcyIgdHlwZT0iaGlkZGVuIiB2YWx1ZT0iMCIgLz4KICAgIDxidXR0b24gdHlwZT0ic3VibWl0IiBjbGFzcz0iYnV0dG9uIiB0aXRsZT0iUnVuIHRoZSBzZWxlY3RlZCBhY3Rpb24iIG5hbWU9ImluZGV4IiB2YWx1ZT0iMCI+R288L2J1dHRvbj4KICAgIAogICAgICAgIDxzcGFuIGNsYXNzPSJhY3Rpb24tY291bnRlciIgZGF0YS1hY3Rpb25zLWljbnQ9IjQiPjAgb2YgNCBzZWxlY3RlZDwvc3Bhbj4KICAgICAgICAKICAgIAo8L2Rpdj4KCiAgICAgICAgICAKCgo8ZGl2IGNsYXNzPSJyZXN1bHRzIj4KPHRhYmxlIGlkPSJyZXN1bHRfbGlzdCI+Cjx0aGVhZD4KPHRyPgoKPHRoIHNjb3BlPSJjb2wiICBjbGFzcz0iYWN0aW9uLWNoZWNrYm94LWNvbHVtbiI+CiAgIAogICA8ZGl2IGNsYXNzPSJ0ZXh0Ij48c3Bhbj48aW5wdXQgdHlwZT0iY2hlY2tib3giIGlkPSJhY3Rpb24tdG9nZ2xlIiAvPjwvc3Bhbj48L2Rpdj4KICAgPGRpdiBjbGFzcz0iY2xlYXIiPjwvZGl2Pgo8L3RoPgo8dGggc2NvcGU9ImNvbCIgIGNsYXNzPSJzb3J0YWJsZSBjb2x1bW4tdXNlcm5hbWUgc29ydGVkIGFzY2VuZGluZyI+CiAgIAogICAgIAogICAgICAgPGRpdiBjbGFzcz0ic29ydG9wdGlvbnMiPgogICAgICAgICA8YSBjbGFzcz0ic29ydHJlbW92ZSIgaHJlZj0iP289IiB0aXRsZT0iUmVtb3ZlIGZyb20gc29ydGluZyI+PC9hPgogICAgICAgICAKICAgICAgICAgPGEgaHJlZj0iP289LTEiIGNsYXNzPSJ0b2dnbGUgYXNjZW5kaW5nIiB0aXRsZT0iVG9nZ2xlIHNvcnRpbmciPjwvYT4KICAgICAgIDwvZGl2PgogICAgIAogICAKICAgPGRpdiBjbGFzcz0idGV4dCI+PGEgaHJlZj0iP289LTEiPlVzZXJuYW1lPC9hPjwvZGl2PgogICA8ZGl2IGNsYXNzPSJjbGVhciI+PC9kaXY+CjwvdGg+Cjx0aCBzY29wZT0iY29sIiAgY2xhc3M9InNvcnRhYmxlIGNvbHVtbi1lbWFpbCI+CiAgIAogICAgIAogICAKICAgPGRpdiBjbGFzcz0idGV4dCI+PGEgaHJlZj0iP289Mi4xIj5FbWFpbCBhZGRyZXNzPC9hPjwvZGl2PgogICA8ZGl2IGNsYXNzPSJjbGVhciI+PC9kaXY+CjwvdGg+Cjx0aCBzY29wZT0iY29sIiAgY2xhc3M9InNvcnRhYmxlIGNvbHVtbi1maXJzdF9uYW1lIj4KICAgCiAgICAgCiAgIAogICA8ZGl2IGNsYXNzPSJ0ZXh0Ij48YSBocmVmPSI/bz0zLjEiPkZpcnN0IG5hbWU8L2E+PC9kaXY+CiAgIDxkaXYgY2xhc3M9ImNsZWFyIj48L2Rpdj4KPC90aD4KPHRoIHNjb3BlPSJjb2wiICBjbGFzcz0ic29ydGFibGUgY29sdW1uLWxhc3RfbmFtZSI+CiAgIAogICAgIAogICAKICAgPGRpdiBjbGFzcz0idGV4dCI+PGEgaHJlZj0iP289NC4xIj5MYXN0IG5hbWU8L2E+PC9kaXY+CiAgIDxkaXYgY2xhc3M9ImNsZWFyIj48L2Rpdj4KPC90aD4KPHRoIHNjb3BlPSJjb2wiICBjbGFzcz0ic29ydGFibGUgY29sdW1uLWlzX3N0YWZmIj4KICAgCiAgICAgCiAgIAogICA8ZGl2IGNsYXNzPSJ0ZXh0Ij48YSBocmVmPSI/bz01LjEiPlN0YWZmIHN0YXR1czwvYT48L2Rpdj4KICAgPGRpdiBjbGFzcz0iY2xlYXIiPjwvZGl2Pgo8L3RoPgo8L3RyPgo8L3RoZWFkPgo8dGJvZHk+CgoKPHRyIGNsYXNzPSJyb3cxIj48dGQgY2xhc3M9ImFjdGlvbi1jaGVja2JveCI+PGlucHV0IGNsYXNzPSJhY3Rpb24tc2VsZWN0IiBuYW1lPSJfc2VsZWN0ZWRfYWN0aW9uIiB0eXBlPSJjaGVja2JveCIgdmFsdWU9IjIiIC8+PC90ZD48dGggY2xhc3M9ImZpZWxkLXVzZXJuYW1lIj48YSBocmVmPSIvYWRtaW4vYXV0aC91c2VyLzIvY2hhbmdlLyI+ZmFyaGFuPC9hPjwvdGg+PHRkIGNsYXNzPSJmaWVsZC1lbWFpbCI+Jm5ic3A7PC90ZD48dGQgY2xhc3M9ImZpZWxkLWZpcnN0X25hbWUiPiZuYnNwOzwvdGQ+PHRkIGNsYXNzPSJmaWVsZC1sYXN0X25hbWUiPiZuYnNwOzwvdGQ+PHRkIGNsYXNzPSJmaWVsZC1pc19zdGFmZiI+PGltZyBzcmM9Ii9hc3NldHMvYWRtaW4vaW1nL2ljb24tbm8uc3ZnIiBhbHQ9IkZhbHNlIiAvPjwvdGQ+PC90cj4KCgo8dHIgY2xhc3M9InJvdzIiPjx0ZCBjbGFzcz0iYWN0aW9uLWNoZWNrYm94Ij48aW5wdXQgY2xhc3M9ImFjdGlvbi1zZWxlY3QiIG5hbWU9Il9zZWxlY3RlZF9hY3Rpb24iIHR5cGU9ImNoZWNrYm94IiB2YWx1ZT0iMyIgLz48L3RkPjx0aCBjbGFzcz0iZmllbGQtdXNlcm5hbWUiPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL3VzZXIvMy9jaGFuZ2UvIj5mYXJoYW5jb3JwPC9hPjwvdGg+PHRkIGNsYXNzPSJmaWVsZC1lbWFpbCI+Jm5ic3A7PC90ZD48dGQgY2xhc3M9ImZpZWxkLWZpcnN0X25hbWUiPiZuYnNwOzwvdGQ+PHRkIGNsYXNzPSJmaWVsZC1sYXN0X25hbWUiPiZuYnNwOzwvdGQ+PHRkIGNsYXNzPSJmaWVsZC1pc19zdGFmZiI+PGltZyBzcmM9Ii9hc3NldHMvYWRtaW4vaW1nL2ljb24tbm8uc3ZnIiBhbHQ9IkZhbHNlIiAvPjwvdGQ+PC90cj4KCgo8dHIgY2xhc3M9InJvdzEiPjx0ZCBjbGFzcz0iYWN0aW9uLWNoZWNrYm94Ij48aW5wdXQgY2xhc3M9ImFjdGlvbi1zZWxlY3QiIG5hbWU9Il9zZWxlY3RlZF9hY3Rpb24iIHR5cGU9ImNoZWNrYm94IiB2YWx1ZT0iNCIgLz48L3RkPjx0aCBjbGFzcz0iZmllbGQtdXNlcm5hbWUiPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL3VzZXIvNC9jaGFuZ2UvIj5mYXJoYW5zdXBlcjwvYT48L3RoPjx0ZCBjbGFzcz0iZmllbGQtZW1haWwiPiZuYnNwOzwvdGQ+PHRkIGNsYXNzPSJmaWVsZC1maXJzdF9uYW1lIj4mbmJzcDs8L3RkPjx0ZCBjbGFzcz0iZmllbGQtbGFzdF9uYW1lIj4mbmJzcDs8L3RkPjx0ZCBjbGFzcz0iZmllbGQtaXNfc3RhZmYiPjxpbWcgc3JjPSIvYXNzZXRzL2FkbWluL2ltZy9pY29uLW5vLnN2ZyIgYWx0PSJGYWxzZSIgLz48L3RkPjwvdHI+CgoKPHRyIGNsYXNzPSJyb3cyIj48dGQgY2xhc3M9ImFjdGlvbi1jaGVja2JveCI+PGlucHV0IGNsYXNzPSJhY3Rpb24tc2VsZWN0IiBuYW1lPSJfc2VsZWN0ZWRfYWN0aW9uIiB0eXBlPSJjaGVja2JveCIgdmFsdWU9IjEiIC8+PC90ZD48dGggY2xhc3M9ImZpZWxkLXVzZXJuYW1lIj48YSBocmVmPSIvYWRtaW4vYXV0aC91c2VyLzEvY2hhbmdlLyI+a2FwZTwvYT48L3RoPjx0ZCBjbGFzcz0iZmllbGQtZW1haWwiPmthcGVAa2FwZS5jb208L3RkPjx0ZCBjbGFzcz0iZmllbGQtZmlyc3RfbmFtZSI+Jm5ic3A7PC90ZD48dGQgY2xhc3M9ImZpZWxkLWxhc3RfbmFtZSI+Jm5ic3A7PC90ZD48dGQgY2xhc3M9ImZpZWxkLWlzX3N0YWZmIj48aW1nIHNyYz0iL2Fzc2V0cy9hZG1pbi9pbWcvaWNvbi15ZXMuc3ZnIiBhbHQ9IlRydWUiIC8+PC90ZD48L3RyPgoKPC90Ym9keT4KPC90YWJsZT4KPC9kaXY+CgoKICAgICAgICAgIAogICAgICAKICAgICAgCgo8cCBjbGFzcz0icGFnaW5hdG9yIj4KCjQgdXNlcnMKCgo8L3A+CgogICAgICA8L2Zvcm0+CiAgICA8L2Rpdj4KICA8L2Rpdj4KCiAgICAgICAgCiAgICAgICAgPGJyIGNsYXNzPSJjbGVhciIgLz4KICAgIDwvZGl2PgogICAgPCEtLSBFTkQgQ29udGVudCAtLT4KCiAgICA8ZGl2IGlkPSJmb290ZXIiPjwvZGl2Pgo8L2Rpdj4KPCEtLSBFTkQgQ29udGFpbmVyIC0tPgoKPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 17:15:34 GMT\", \"Expires\": \"Mon, 27 Mar 2017 17:15:34 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "875095dc-b95d-4675-8924-3c74301d089d", - "fields": { - "request": "9f187370-82f4-4634-8aab-8654b759c561", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "87602212-b0e2-4bdf-ada1-8f29d6c7942b", - "fields": { - "request": "4a0b6fb1-6e00-4d51-983f-cacb9020f4d4", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "87ad6204-35b9-4f0b-87bb-7d9d23021b42", - "fields": { - "request": "5baea9fc-2d19-4ce9-9daa-6911342f79a1", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "88b02444-9677-4772-98e5-6eea6163eaa4", - "fields": { - "request": "6bc8bd32-3324-4a2a-8a9e-53692e4f80a4", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPkFkZCB1c2VyIHwgRGphbmdvIHNpdGUgYWRtaW48L3RpdGxlPgo8bGluayByZWw9InN0eWxlc2hlZXQiIHR5cGU9InRleHQvY3NzIiBocmVmPSIvYXNzZXRzL2FkbWluL2Nzcy9iYXNlLmNzcyIgLz4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvZm9ybXMuY3NzIiAvPgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9jb3JlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IvanF1ZXJ5L2pxdWVyeS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvanF1ZXJ5LmluaXQuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2FkbWluL1JlbGF0ZWRPYmplY3RMb29rdXBzLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hY3Rpb25zLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy91cmxpZnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL3ByZXBvcHVsYXRlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IveHJlZ2V4cC94cmVnZXhwLmpzIj48L3NjcmlwdD4KCjxtZXRhIG5hbWU9InJvYm90cyIgY29udGVudD0iTk9ORSxOT0FSQ0hJVkUiIC8+CjwvaGVhZD4KCgo8Ym9keSBjbGFzcz0iIGFwcC1hdXRoIG1vZGVsLXVzZXIgY2hhbmdlLWZvcm0iCiAgZGF0YS1hZG1pbi11dGMtb2Zmc2V0PSIwIj4KCjwhLS0gQ29udGFpbmVyIC0tPgo8ZGl2IGlkPSJjb250YWluZXIiPgoKICAgIAogICAgPCEtLSBIZWFkZXIgLS0+CiAgICA8ZGl2IGlkPSJoZWFkZXIiPgogICAgICAgIDxkaXYgaWQ9ImJyYW5kaW5nIj4KICAgICAgICAKPGgxIGlkPSJzaXRlLW5hbWUiPjxhIGhyZWY9Ii9hZG1pbi8iPkRqYW5nbyBhZG1pbmlzdHJhdGlvbjwvYT48L2gxPgoKICAgICAgICA8L2Rpdj4KICAgICAgICAKICAgICAgICAKICAgICAgICA8ZGl2IGlkPSJ1c2VyLXRvb2xzIj4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICBXZWxjb21lLAogICAgICAgICAgICAgICAgPHN0cm9uZz5rYXBlPC9zdHJvbmc+LgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvIj5WaWV3IHNpdGU8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL3Bhc3N3b3JkX2NoYW5nZS8iPkNoYW5nZSBwYXNzd29yZDwvYT4gLwogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vbG9nb3V0LyI+TG9nIG91dDwvYT4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgCiAgICA8L2Rpdj4KICAgIDwhLS0gRU5EIEhlYWRlciAtLT4KICAgIAo8ZGl2IGNsYXNzPSJicmVhZGNydW1icyI+CjxhIGhyZWY9Ii9hZG1pbi8iPkhvbWU8L2E+CiZyc2FxdW87IDxhIGhyZWY9Ii9hZG1pbi9hdXRoLyI+QXV0aGVudGljYXRpb24gYW5kIEF1dGhvcml6YXRpb248L2E+CiZyc2FxdW87IDxhIGhyZWY9Ii9hZG1pbi9hdXRoL3VzZXIvIj5Vc2VyczwvYT4KJnJzYXF1bzsgQWRkIHVzZXIKPC9kaXY+CgogICAgCgogICAgCiAgICAgICAgCiAgICAKCiAgICA8IS0tIENvbnRlbnQgLS0+CiAgICA8ZGl2IGlkPSJjb250ZW50IiBjbGFzcz0iY29sTSI+CiAgICAgICAgCiAgICAgICAgPGgxPkFkZCB1c2VyPC9oMT4KICAgICAgICA8ZGl2IGlkPSJjb250ZW50LW1haW4iPgoKCgo8Zm9ybSBlbmN0eXBlPSJtdWx0aXBhcnQvZm9ybS1kYXRhIiBhY3Rpb249IiIgbWV0aG9kPSJwb3N0IiBpZD0idXNlcl9mb3JtIiBub3ZhbGlkYXRlPjxpbnB1dCB0eXBlPSdoaWRkZW4nIG5hbWU9J2NzcmZtaWRkbGV3YXJldG9rZW4nIHZhbHVlPSdjOXlMWjF5RFRjRlZZbFFMQ3FaSHYwSHRJaWN6MnFLSUJmRkFieHF5RzlRa2x0U2RsUnU5bkhvZEdkaW9tcUd4JyAvPgogIAogICAgPHA+Rmlyc3QsIGVudGVyIGEgdXNlcm5hbWUgYW5kIHBhc3N3b3JkLiBUaGVuLCB5b3UnbGwgYmUgYWJsZSB0byBlZGl0IG1vcmUgdXNlciBvcHRpb25zLjwvcD4KICAKCjxkaXY+CgoKCgogICAgPHAgY2xhc3M9ImVycm9ybm90ZSI+CiAgICBQbGVhc2UgY29ycmVjdCB0aGUgZXJyb3IgYmVsb3cuCiAgICA8L3A+CiAgICAKCgoKCiAgPGZpZWxkc2V0IGNsYXNzPSJtb2R1bGUgYWxpZ25lZCB3aWRlIj4KICAgIAogICAgCiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC11c2VybmFtZSI+CiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXY+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxsYWJlbCBjbGFzcz0icmVxdWlyZWQiIGZvcj0iaWRfdXNlcm5hbWUiPlVzZXJuYW1lOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgPGlucHV0IGF1dG9mb2N1cz0iIiBjbGFzcz0idlRleHRGaWVsZCIgaWQ9ImlkX3VzZXJuYW1lIiBtYXhsZW5ndGg9IjE1MCIgbmFtZT0idXNlcm5hbWUiIHR5cGU9InRleHQiIHZhbHVlPSJmYXJoYW5zdXBlciIgcmVxdWlyZWQgLz4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxwIGNsYXNzPSJoZWxwIj5SZXF1aXJlZC4gMTUwIGNoYXJhY3RlcnMgb3IgZmV3ZXIuIExldHRlcnMsIGRpZ2l0cyBhbmQgQC8uLysvLS9fIG9ubHkuPC9wPgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPC9kaXY+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgCiAgICAgICAgPGRpdiBjbGFzcz0iZm9ybS1yb3cgZmllbGQtcGFzc3dvcmQxIj4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGRpdj4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPGxhYmVsIGNsYXNzPSJyZXF1aXJlZCIgZm9yPSJpZF9wYXNzd29yZDEiPlBhc3N3b3JkOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgPGlucHV0IGlkPSJpZF9wYXNzd29yZDEiIG5hbWU9InBhc3N3b3JkMSIgdHlwZT0icGFzc3dvcmQiIHJlcXVpcmVkIC8+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPC9kaXY+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgCiAgICAgICAgPGRpdiBjbGFzcz0iZm9ybS1yb3cgZXJyb3JzIGZpZWxkLXBhc3N3b3JkMiI+CiAgICAgICAgICAgIDx1bCBjbGFzcz0iZXJyb3JsaXN0Ij48bGk+VGhlIHBhc3N3b3JkIGlzIHRvbyBzaW1pbGFyIHRvIHRoZSB1c2VybmFtZS48L2xpPjwvdWw+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGRpdj4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPGxhYmVsIGNsYXNzPSJyZXF1aXJlZCIgZm9yPSJpZF9wYXNzd29yZDIiPlBhc3N3b3JkIGNvbmZpcm1hdGlvbjo8L2xhYmVsPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxpbnB1dCBpZD0iaWRfcGFzc3dvcmQyIiBuYW1lPSJwYXNzd29yZDIiIHR5cGU9InBhc3N3b3JkIiByZXF1aXJlZCAvPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPHAgY2xhc3M9ImhlbHAiPkVudGVyIHRoZSBzYW1lIHBhc3N3b3JkIGFzIGJlZm9yZSwgZm9yIHZlcmlmaWNhdGlvbi48L3A+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKPC9maWVsZHNldD4KCgoKCgoKCgoKCgoKCjxkaXYgY2xhc3M9InN1Ym1pdC1yb3ciPgo8aW5wdXQgdHlwZT0ic3VibWl0IiB2YWx1ZT0iU2F2ZSIgY2xhc3M9ImRlZmF1bHQiIG5hbWU9Il9zYXZlIiAvPgoKCjxpbnB1dCB0eXBlPSJzdWJtaXQiIHZhbHVlPSJTYXZlIGFuZCBhZGQgYW5vdGhlciIgbmFtZT0iX2FkZGFub3RoZXIiIC8+CjxpbnB1dCB0eXBlPSJzdWJtaXQiIHZhbHVlPSJTYXZlIGFuZCBjb250aW51ZSBlZGl0aW5nIiBuYW1lPSJfY29udGludWUiIC8+CjwvZGl2PgoKCgogICAgPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiCiAgICAgICAgICAgIGlkPSJkamFuZ28tYWRtaW4tZm9ybS1hZGQtY29uc3RhbnRzIgogICAgICAgICAgICBzcmM9Ii9hc3NldHMvYWRtaW4vanMvY2hhbmdlX2Zvcm0uanMiCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgZGF0YS1tb2RlbC1uYW1lPSJ1c2VyIgogICAgICAgICAgICA+CiAgICA8L3NjcmlwdD4KCgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IgogICAgICAgIGlkPSJkamFuZ28tYWRtaW4tcHJlcG9wdWxhdGVkLWZpZWxkcy1jb25zdGFudHMiCiAgICAgICAgc3JjPSIvYXNzZXRzL2FkbWluL2pzL3ByZXBvcHVsYXRlX2luaXQuanMiCiAgICAgICAgZGF0YS1wcmVwb3B1bGF0ZWQtZmllbGRzPSJbXSI+Cjwvc2NyaXB0PgoKCjwvZGl2Pgo8L2Zvcm0+PC9kaXY+CgogICAgICAgIAogICAgICAgIDxiciBjbGFzcz0iY2xlYXIiIC8+CiAgICA8L2Rpdj4KICAgIDwhLS0gRU5EIENvbnRlbnQgLS0+CgogICAgPGRpdiBpZD0iZm9vdGVyIj48L2Rpdj4KPC9kaXY+CjwhLS0gRU5EIENvbnRhaW5lciAtLT4KCjwvYm9keT4KPC9odG1sPgo=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 14:54:13 GMT\", \"Expires\": \"Mon, 27 Mar 2017 14:54:13 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "894b23b2-1602-48a1-8cd4-3c9e31a6242a", - "fields": { - "request": "b1e8867d-eb67-4f9f-95af-3cf33a653048", - "status_code": 200, - "raw_body": "eyJzd2FnZ2VyIjogIjIuMCIsICJpbmZvIjogeyJ0aXRsZSI6ICIiLCAidmVyc2lvbiI6ICIifSwgInBhdGhzIjogeyIvYXBpL2FwcGxpY2F0aW9ucy8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAiYXBwbGljYXRpb25zX2xpc3QiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogInBhZ2UiLCAicmVxdWlyZWQiOiBmYWxzZSwgImluIjogInF1ZXJ5IiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbImFwcGxpY2F0aW9ucyJdfSwgInBvc3QiOiB7Im9wZXJhdGlvbklkIjogImFwcGxpY2F0aW9uc19jcmVhdGUiLCAicmVzcG9uc2VzIjogeyIyMDEiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InN0dWRlbnRfbnBtIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgInZhY2FuY3lfaWQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9fSwgInJlcXVpcmVkIjogWyJzdHVkZW50X25wbSIsICJ2YWNhbmN5X2lkIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsiYXBwbGljYXRpb25zIl19fSwgIi9hcGkvYXBwbGljYXRpb25zL3tpZH0vIjogeyJnZXQiOiB7Im9wZXJhdGlvbklkIjogImFwcGxpY2F0aW9uc19yZWFkIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbImFwcGxpY2F0aW9ucyJdfSwgInB1dCI6IHsib3BlcmF0aW9uSWQiOiAiYXBwbGljYXRpb25zX3VwZGF0ZSIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InN0dWRlbnRfbnBtIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgInZhY2FuY3lfaWQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9fSwgInJlcXVpcmVkIjogWyJzdHVkZW50X25wbSIsICJ2YWNhbmN5X2lkIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsiYXBwbGljYXRpb25zIl19LCAicGF0Y2giOiB7Im9wZXJhdGlvbklkIjogImFwcGxpY2F0aW9uc19wYXJ0aWFsX3VwZGF0ZSIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InN0dWRlbnRfbnBtIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgInZhY2FuY3lfaWQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9fX19XSwgImNvbnN1bWVzIjogWyJhcHBsaWNhdGlvbi9qc29uIl0sICJ0YWdzIjogWyJhcHBsaWNhdGlvbnMiXX0sICJkZWxldGUiOiB7Im9wZXJhdGlvbklkIjogImFwcGxpY2F0aW9uc19kZWxldGUiLCAicmVzcG9uc2VzIjogeyIyMDQiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsiYXBwbGljYXRpb25zIl19fSwgIi9hcGkvY29tcGFuaWVzLyI6IHsiZ2V0IjogeyJvcGVyYXRpb25JZCI6ICJjb21wYW5pZXNfbGlzdCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAicGFnZSIsICJyZXF1aXJlZCI6IGZhbHNlLCAiaW4iOiAicXVlcnkiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsiY29tcGFuaWVzIl19LCAicG9zdCI6IHsib3BlcmF0aW9uSWQiOiAiY29tcGFuaWVzX2NyZWF0ZSIsICJyZXNwb25zZXMiOiB7IjIwMSI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidXNlciI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAib2JqZWN0In0sICJkZXNjcmlwdGlvbiI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sICJ2ZXJpZmllZCI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiYm9vbGVhbiJ9fSwgInJlcXVpcmVkIjogWyJ1c2VyIiwgImRlc2NyaXB0aW9uIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsiY29tcGFuaWVzIl19fSwgIi9hcGkvY29tcGFuaWVzL3tpZH0vIjogeyJnZXQiOiB7Im9wZXJhdGlvbklkIjogImNvbXBhbmllc19yZWFkIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbImNvbXBhbmllcyJdfSwgInB1dCI6IHsib3BlcmF0aW9uSWQiOiAiY29tcGFuaWVzX3VwZGF0ZSIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InVzZXIiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogIm9iamVjdCJ9LCAiZGVzY3JpcHRpb24iOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAidmVyaWZpZWQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImJvb2xlYW4ifX0sICJyZXF1aXJlZCI6IFsidXNlciIsICJkZXNjcmlwdGlvbiJdfX1dLCAiY29uc3VtZXMiOiBbImFwcGxpY2F0aW9uL2pzb24iXSwgInRhZ3MiOiBbImNvbXBhbmllcyJdfSwgInBhdGNoIjogeyJvcGVyYXRpb25JZCI6ICJjb21wYW5pZXNfcGFydGlhbF91cGRhdGUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ1c2VyIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJvYmplY3QifSwgImRlc2NyaXB0aW9uIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgInZlcmlmaWVkIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJib29sZWFuIn19fX1dLCAiY29uc3VtZXMiOiBbImFwcGxpY2F0aW9uL2pzb24iXSwgInRhZ3MiOiBbImNvbXBhbmllcyJdfSwgImRlbGV0ZSI6IHsib3BlcmF0aW9uSWQiOiAiY29tcGFuaWVzX2RlbGV0ZSIsICJyZXNwb25zZXMiOiB7IjIwNCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJjb21wYW5pZXMiXX19LCAiL2FwaS9zdHVkZW50cy8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAic3R1ZGVudHNfbGlzdCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAicGFnZSIsICJyZXF1aXJlZCI6IGZhbHNlLCAiaW4iOiAicXVlcnkiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsic3R1ZGVudHMiXX0sICJwb3N0IjogeyJvcGVyYXRpb25JZCI6ICJzdHVkZW50c19jcmVhdGUiLCAicmVzcG9uc2VzIjogeyIyMDEiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InVzZXIiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogIm9iamVjdCJ9LCAibnBtIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJpbnRlZ2VyIn0sICJyZXN1bWUiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImZpbGUifSwgInBob25lX251bWJlciI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sICJib29rbWFya2VkX3ZhY2FuY2llcyI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiYXJyYXkiLCAiaXRlbXMiOiB7InR5cGUiOiAic3RyaW5nIn19fSwgInJlcXVpcmVkIjogWyJ1c2VyIiwgIm5wbSJdfX1dLCAiY29uc3VtZXMiOiBbImFwcGxpY2F0aW9uL2pzb24iXSwgInRhZ3MiOiBbInN0dWRlbnRzIl19fSwgIi9hcGkvc3R1ZGVudHMve2lkfS8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAic3R1ZGVudHNfcmVhZCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJzdHVkZW50cyJdfSwgInB1dCI6IHsib3BlcmF0aW9uSWQiOiAic3R1ZGVudHNfdXBkYXRlIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCB7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidXNlciI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAib2JqZWN0In0sICJucG0iOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImludGVnZXIifSwgInJlc3VtZSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiZmlsZSJ9LCAicGhvbmVfbnVtYmVyIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImJvb2ttYXJrZWRfdmFjYW5jaWVzIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJhcnJheSIsICJpdGVtcyI6IHsidHlwZSI6ICJzdHJpbmcifX19LCAicmVxdWlyZWQiOiBbInVzZXIiLCAibnBtIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsic3R1ZGVudHMiXX0sICJwYXRjaCI6IHsib3BlcmF0aW9uSWQiOiAic3R1ZGVudHNfcGFydGlhbF91cGRhdGUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ1c2VyIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJvYmplY3QifSwgIm5wbSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiaW50ZWdlciJ9LCAicmVzdW1lIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJmaWxlIn0sICJwaG9uZV9udW1iZXIiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiYm9va21hcmtlZF92YWNhbmNpZXMiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImFycmF5IiwgIml0ZW1zIjogeyJ0eXBlIjogInN0cmluZyJ9fX19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsic3R1ZGVudHMiXX0sICJkZWxldGUiOiB7Im9wZXJhdGlvbklkIjogInN0dWRlbnRzX2RlbGV0ZSIsICJyZXNwb25zZXMiOiB7IjIwNCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJzdHVkZW50cyJdfX0sICIvYXBpL3N0dWRlbnRzL3tpZH0vYm9va21hcmtlZC12YWNhbmNpZXMvIjogeyJwb3N0IjogeyJvcGVyYXRpb25JZCI6ICJzdHVkZW50c19ib29rbWFya192YWNhbmNpZXMiLCAicmVzcG9uc2VzIjogeyIyMDEiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ1c2VyIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJvYmplY3QifSwgIm5wbSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiaW50ZWdlciJ9LCAicmVzdW1lIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJmaWxlIn0sICJwaG9uZV9udW1iZXIiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiYm9va21hcmtlZF92YWNhbmNpZXMiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImFycmF5IiwgIml0ZW1zIjogeyJ0eXBlIjogInN0cmluZyJ9fX0sICJyZXF1aXJlZCI6IFsidXNlciIsICJucG0iXX19XSwgImNvbnN1bWVzIjogWyJhcHBsaWNhdGlvbi9qc29uIl0sICJ0YWdzIjogWyJzdHVkZW50cyJdfSwgImRlbGV0ZSI6IHsib3BlcmF0aW9uSWQiOiAic3R1ZGVudHNfdW5ib29rbWFya192YWNhbmNpZXMiLCAicmVzcG9uc2VzIjogeyIyMDQiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsic3R1ZGVudHMiXX19LCAiL2FwaS9zdXBlcnZpc29ycy8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAic3VwZXJ2aXNvcnNfbGlzdCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAicGFnZSIsICJyZXF1aXJlZCI6IGZhbHNlLCAiaW4iOiAicXVlcnkiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsic3VwZXJ2aXNvcnMiXX0sICJwb3N0IjogeyJvcGVyYXRpb25JZCI6ICJzdXBlcnZpc29yc19jcmVhdGUiLCAicmVzcG9uc2VzIjogeyIyMDEiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InVzZXIiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogIm9iamVjdCJ9LCAibmlwIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJpbnRlZ2VyIn19LCAicmVxdWlyZWQiOiBbInVzZXIiLCAibmlwIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsic3VwZXJ2aXNvcnMiXX19LCAiL2FwaS9zdXBlcnZpc29ycy97aWR9LyI6IHsiZ2V0IjogeyJvcGVyYXRpb25JZCI6ICJzdXBlcnZpc29yc19yZWFkIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbInN1cGVydmlzb3JzIl19LCAicHV0IjogeyJvcGVyYXRpb25JZCI6ICJzdXBlcnZpc29yc191cGRhdGUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ1c2VyIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJvYmplY3QifSwgIm5pcCI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiaW50ZWdlciJ9fSwgInJlcXVpcmVkIjogWyJ1c2VyIiwgIm5pcCJdfX1dLCAiY29uc3VtZXMiOiBbImFwcGxpY2F0aW9uL2pzb24iXSwgInRhZ3MiOiBbInN1cGVydmlzb3JzIl19LCAicGF0Y2giOiB7Im9wZXJhdGlvbklkIjogInN1cGVydmlzb3JzX3BhcnRpYWxfdXBkYXRlIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCB7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidXNlciI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAib2JqZWN0In0sICJuaXAiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImludGVnZXIifX19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsic3VwZXJ2aXNvcnMiXX0sICJkZWxldGUiOiB7Im9wZXJhdGlvbklkIjogInN1cGVydmlzb3JzX2RlbGV0ZSIsICJyZXNwb25zZXMiOiB7IjIwNCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJzdXBlcnZpc29ycyJdfX0sICIvYXBpL3VzZXJzLyI6IHsiZ2V0IjogeyJvcGVyYXRpb25JZCI6ICJ1c2Vyc19saXN0IiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJwYWdlIiwgInJlcXVpcmVkIjogZmFsc2UsICJpbiI6ICJxdWVyeSIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJ1c2VycyJdfSwgInBvc3QiOiB7Im9wZXJhdGlvbklkIjogInVzZXJzX2NyZWF0ZSIsICJyZXNwb25zZXMiOiB7IjIwMSI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidXNlcm5hbWUiOiB7ImRlc2NyaXB0aW9uIjogIlJlcXVpcmVkLiAxNTAgY2hhcmFjdGVycyBvciBmZXdlci4gTGV0dGVycywgZGlnaXRzIGFuZCBALy4vKy8tL18gb25seS4iLCAidHlwZSI6ICJzdHJpbmcifSwgImVtYWlsIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImlzX3N0YWZmIjogeyJkZXNjcmlwdGlvbiI6ICJEZXNpZ25hdGVzIHdoZXRoZXIgdGhlIHVzZXIgY2FuIGxvZyBpbnRvIHRoaXMgYWRtaW4gc2l0ZS4iLCAidHlwZSI6ICJib29sZWFuIn19LCAicmVxdWlyZWQiOiBbInVzZXJuYW1lIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsidXNlcnMiXX19LCAiL2FwaS91c2Vycy9tZS8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAidXNlcnNfbWUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbXSwgInRhZ3MiOiBbInVzZXJzIl19fSwgIi9hcGkvdXNlcnMve2lkfS8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAidXNlcnNfcmVhZCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJ1c2VycyJdfSwgInB1dCI6IHsib3BlcmF0aW9uSWQiOiAidXNlcnNfdXBkYXRlIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCB7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidXNlcm5hbWUiOiB7ImRlc2NyaXB0aW9uIjogIlJlcXVpcmVkLiAxNTAgY2hhcmFjdGVycyBvciBmZXdlci4gTGV0dGVycywgZGlnaXRzIGFuZCBALy4vKy8tL18gb25seS4iLCAidHlwZSI6ICJzdHJpbmcifSwgImVtYWlsIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImlzX3N0YWZmIjogeyJkZXNjcmlwdGlvbiI6ICJEZXNpZ25hdGVzIHdoZXRoZXIgdGhlIHVzZXIgY2FuIGxvZyBpbnRvIHRoaXMgYWRtaW4gc2l0ZS4iLCAidHlwZSI6ICJib29sZWFuIn19LCAicmVxdWlyZWQiOiBbInVzZXJuYW1lIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsidXNlcnMiXX0sICJwYXRjaCI6IHsib3BlcmF0aW9uSWQiOiAidXNlcnNfcGFydGlhbF91cGRhdGUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ1c2VybmFtZSI6IHsiZGVzY3JpcHRpb24iOiAiUmVxdWlyZWQuIDE1MCBjaGFyYWN0ZXJzIG9yIGZld2VyLiBMZXR0ZXJzLCBkaWdpdHMgYW5kIEAvLi8rLy0vXyBvbmx5LiIsICJ0eXBlIjogInN0cmluZyJ9LCAiZW1haWwiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiaXNfc3RhZmYiOiB7ImRlc2NyaXB0aW9uIjogIkRlc2lnbmF0ZXMgd2hldGhlciB0aGUgdXNlciBjYW4gbG9nIGludG8gdGhpcyBhZG1pbiBzaXRlLiIsICJ0eXBlIjogImJvb2xlYW4ifX19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsidXNlcnMiXX0sICJkZWxldGUiOiB7Im9wZXJhdGlvbklkIjogInVzZXJzX2RlbGV0ZSIsICJyZXNwb25zZXMiOiB7IjIwNCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJ1c2VycyJdfX0sICIvYXBpL3ZhY2FuY2llcy8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAidmFjYW5jaWVzX2xpc3QiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogInBhZ2UiLCAicmVxdWlyZWQiOiBmYWxzZSwgImluIjogInF1ZXJ5IiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbInZhY2FuY2llcyJdfSwgInBvc3QiOiB7Im9wZXJhdGlvbklkIjogInZhY2FuY2llc19jcmVhdGUiLCAicmVzcG9uc2VzIjogeyIyMDEiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InZlcmlmaWVkIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJib29sZWFuIn0sICJvcGVuX3RpbWUiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiY2xvc2VfdGltZSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sICJjb21wYW55IjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifX0sICJyZXF1aXJlZCI6IFsib3Blbl90aW1lIiwgImNsb3NlX3RpbWUiLCAiY29tcGFueSJdfX1dLCAiY29uc3VtZXMiOiBbImFwcGxpY2F0aW9uL2pzb24iXSwgInRhZ3MiOiBbInZhY2FuY2llcyJdfX0sICIvYXBpL3ZhY2FuY2llcy97aWR9LyI6IHsiZ2V0IjogeyJvcGVyYXRpb25JZCI6ICJ2YWNhbmNpZXNfcmVhZCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJ2YWNhbmNpZXMiXX0sICJwdXQiOiB7Im9wZXJhdGlvbklkIjogInZhY2FuY2llc191cGRhdGUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ2ZXJpZmllZCI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiYm9vbGVhbiJ9LCAib3Blbl90aW1lIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImNsb3NlX3RpbWUiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiY29tcGFueSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn19LCAicmVxdWlyZWQiOiBbIm9wZW5fdGltZSIsICJjbG9zZV90aW1lIiwgImNvbXBhbnkiXX19XSwgImNvbnN1bWVzIjogWyJhcHBsaWNhdGlvbi9qc29uIl0sICJ0YWdzIjogWyJ2YWNhbmNpZXMiXX0sICJwYXRjaCI6IHsib3BlcmF0aW9uSWQiOiAidmFjYW5jaWVzX3BhcnRpYWxfdXBkYXRlIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCB7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidmVyaWZpZWQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImJvb2xlYW4ifSwgIm9wZW5fdGltZSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sICJjbG9zZV90aW1lIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImNvbXBhbnkiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9fX19XSwgImNvbnN1bWVzIjogWyJhcHBsaWNhdGlvbi9qc29uIl0sICJ0YWdzIjogWyJ2YWNhbmNpZXMiXX0sICJkZWxldGUiOiB7Im9wZXJhdGlvbklkIjogInZhY2FuY2llc19kZWxldGUiLCAicmVzcG9uc2VzIjogeyIyMDQiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsidmFjYW5jaWVzIl19fX0sICJzZWN1cml0eURlZmluaXRpb25zIjogeyJiYXNpYyI6IHsidHlwZSI6ICJiYXNpYyJ9fX0=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"application/openapi+json\", \"Allow\": \"GET, HEAD, OPTIONS\", \"Vary\": \"Accept\"}" - } -}, -{ - "model": "silk.response", - "pk": "89dd71c7-3bbc-4d7c-b6a4-242a310744d4", - "fields": { - "request": "8fae749b-0010-4131-89d6-b6ec831b187a", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "89e54fa0-e566-44d0-90f2-38dfedd24c80", - "fields": { - "request": "398ca802-79f5-45fd-897e-067e60d5b8b7", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "8c4f2177-881b-4a4e-90cd-2c291e3915cc", - "fields": { - "request": "cab2f23c-b2da-40e1-a55d-386a9984471c", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "8d8a01f3-a8d1-4ee7-a241-90f089028958", - "fields": { - "request": "82e2135b-5e72-485f-ada1-2905219f609b", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPlNpdGUgYWRtaW5pc3RyYXRpb24gfCBEamFuZ28gc2l0ZSBhZG1pbjwvdGl0bGU+CjxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvYWRtaW4vY3NzL2Jhc2UuY3NzIiAvPgo8bGluayByZWw9InN0eWxlc2hlZXQiIHR5cGU9InRleHQvY3NzIiBocmVmPSIvYXNzZXRzL2FkbWluL2Nzcy9kYXNoYm9hcmQuY3NzIiAvPgoKCjxtZXRhIG5hbWU9InJvYm90cyIgY29udGVudD0iTk9ORSxOT0FSQ0hJVkUiIC8+CjwvaGVhZD4KCgo8Ym9keSBjbGFzcz0iIGRhc2hib2FyZCIKICBkYXRhLWFkbWluLXV0Yy1vZmZzZXQ9IjAiPgoKPCEtLSBDb250YWluZXIgLS0+CjxkaXYgaWQ9ImNvbnRhaW5lciI+CgogICAgCiAgICA8IS0tIEhlYWRlciAtLT4KICAgIDxkaXYgaWQ9ImhlYWRlciI+CiAgICAgICAgPGRpdiBpZD0iYnJhbmRpbmciPgogICAgICAgIAo8aDEgaWQ9InNpdGUtbmFtZSI+PGEgaHJlZj0iL2FkbWluLyI+RGphbmdvIGFkbWluaXN0cmF0aW9uPC9hPjwvaDE+CgogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIDxkaXYgaWQ9InVzZXItdG9vbHMiPgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIFdlbGNvbWUsCiAgICAgICAgICAgICAgICA8c3Ryb25nPmthcGU8L3N0cm9uZz4uCiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii8iPlZpZXcgc2l0ZTwvYT4gLwogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vcGFzc3dvcmRfY2hhbmdlLyI+Q2hhbmdlIHBhc3N3b3JkPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9sb2dvdXQvIj5Mb2cgb3V0PC9hPgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgICAgICAKICAgICAgICAKICAgICAgICAKICAgIDwvZGl2PgogICAgPCEtLSBFTkQgSGVhZGVyIC0tPgogICAgCiAgICAKCiAgICAKICAgICAgICAKICAgIAoKICAgIDwhLS0gQ29udGVudCAtLT4KICAgIDxkaXYgaWQ9ImNvbnRlbnQiIGNsYXNzPSJjb2xNUyI+CiAgICAgICAgCiAgICAgICAgPGgxPlNpdGUgYWRtaW5pc3RyYXRpb248L2gxPgogICAgICAgIAo8ZGl2IGlkPSJjb250ZW50LW1haW4iPgoKCiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJhcHAtYXV0aCBtb2R1bGUiPgogICAgICAgIDx0YWJsZT4KICAgICAgICA8Y2FwdGlvbj4KICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2F1dGgvIiBjbGFzcz0ic2VjdGlvbiIgdGl0bGU9Ik1vZGVscyBpbiB0aGUgQXV0aGVudGljYXRpb24gYW5kIEF1dGhvcml6YXRpb24gYXBwbGljYXRpb24iPkF1dGhlbnRpY2F0aW9uIGFuZCBBdXRob3JpemF0aW9uPC9hPgogICAgICAgIDwvY2FwdGlvbj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1ncm91cCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL2dyb3VwLyI+R3JvdXBzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvZ3JvdXAvYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL2dyb3VwLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC11c2VyIj4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8iPlVzZXJzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgPC90YWJsZT4KICAgICAgICA8L2Rpdj4KICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImFwcC1jb3JlIG1vZHVsZSI+CiAgICAgICAgPHRhYmxlPgogICAgICAgIDxjYXB0aW9uPgogICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS8iIGNsYXNzPSJzZWN0aW9uIiB0aXRsZT0iTW9kZWxzIGluIHRoZSBDb3JlIGFwcGxpY2F0aW9uIj5Db3JlPC9hPgogICAgICAgIDwvY2FwdGlvbj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1hcHBsaWNhdGlvbiI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL2FwcGxpY2F0aW9uLyI+QXBwbGljYXRpb25zPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvYXBwbGljYXRpb24vYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL2FwcGxpY2F0aW9uLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1jb21wYW55Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8iPkNvbXBhbnlzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgICAgIDx0ciBjbGFzcz0ibW9kZWwtc3R1ZGVudCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvIj5TdHVkZW50czwvYT48L3RoPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvIiBjbGFzcz0iY2hhbmdlbGluayI+Q2hhbmdlPC9hPjwvdGQ+CiAgICAgICAgICAgIAogICAgICAgICAgICA8L3RyPgogICAgICAgIAogICAgICAgICAgICA8dHIgY2xhc3M9Im1vZGVsLXN1cGVydmlzb3IiPgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0aCBzY29wZT0icm93Ij48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yLyI+U3VwZXJ2aXNvcnM8L2E+PC90aD4KICAgICAgICAgICAgCgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0ZD48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yL2FkZC8iIGNsYXNzPSJhZGRsaW5rIj5BZGQ8L2E+PC90ZD4KICAgICAgICAgICAgCgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0ZD48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC12YWNhbmN5Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS8iPlZhY2FuY3lzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgPC90YWJsZT4KICAgICAgICA8L2Rpdj4KICAgIAoKPC9kaXY+CgogICAgICAgIAo8ZGl2IGlkPSJjb250ZW50LXJlbGF0ZWQiPgogICAgPGRpdiBjbGFzcz0ibW9kdWxlIiBpZD0icmVjZW50LWFjdGlvbnMtbW9kdWxlIj4KICAgICAgICA8aDI+UmVjZW50IGFjdGlvbnM8L2gyPgogICAgICAgIDxoMz5NeSBhY3Rpb25zPC9oMz4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgPHVsIGNsYXNzPSJhY3Rpb25saXN0Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaSBjbGFzcz0iYWRkbGluayI+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS9jb21wYW55LzIvY2hhbmdlLyI+Q29tcGFueSBvYmplY3Q8L2E+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxici8+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz0ibWluaSBxdWlldCI+Q29tcGFueTwvc3Bhbj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgICAgPGxpIGNsYXNzPSJkZWxldGVsaW5rIj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIENvbXBhbnkgb2JqZWN0CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxici8+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz0ibWluaSBxdWlldCI+Q29tcGFueTwvc3Bhbj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgICAgPGxpIGNsYXNzPSJhZGRsaW5rIj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9hdXRoL3VzZXIvNC9jaGFuZ2UvIj5mYXJoYW5zdXBlcjwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5Vc2VyPC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8bGkgY2xhc3M9ImFkZGxpbmsiPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8zL2NoYW5nZS8iPmZhcmhhbmNvcnA8L2E+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxici8+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz0ibWluaSBxdWlldCI+VXNlcjwvc3Bhbj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgICAgPGxpIGNsYXNzPSJhZGRsaW5rIj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9hdXRoL3VzZXIvMi9jaGFuZ2UvIj5mYXJoYW48L2E+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxici8+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz0ibWluaSBxdWlldCI+VXNlcjwvc3Bhbj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgICAgPGxpIGNsYXNzPSJhZGRsaW5rIj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9jb3JlL2NvbXBhbnkvMS9jaGFuZ2UvIj5Db21wYW55IG9iamVjdDwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5Db21wYW55PC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8L3VsPgogICAgICAgICAgICAKICAgIDwvZGl2Pgo8L2Rpdj4KCiAgICAgICAgPGJyIGNsYXNzPSJjbGVhciIgLz4KICAgIDwvZGl2PgogICAgPCEtLSBFTkQgQ29udGVudCAtLT4KCiAgICA8ZGl2IGlkPSJmb290ZXIiPjwvZGl2Pgo8L2Rpdj4KPCEtLSBFTkQgQ29udGFpbmVyIC0tPgoKPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 15:21:41 GMT\", \"Expires\": \"Mon, 27 Mar 2017 15:21:41 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\"}" - } -}, -{ - "model": "silk.response", - "pk": "8ef1bc29-e062-4d6e-8f27-b2ef21541de4", - "fields": { - "request": "8e802c92-c86f-4c93-a58f-5d0f741c46fd", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPkFkZCB1c2VyIHwgRGphbmdvIHNpdGUgYWRtaW48L3RpdGxlPgo8bGluayByZWw9InN0eWxlc2hlZXQiIHR5cGU9InRleHQvY3NzIiBocmVmPSIvYXNzZXRzL2FkbWluL2Nzcy9iYXNlLmNzcyIgLz4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvZm9ybXMuY3NzIiAvPgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9jb3JlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IvanF1ZXJ5L2pxdWVyeS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvanF1ZXJ5LmluaXQuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2FkbWluL1JlbGF0ZWRPYmplY3RMb29rdXBzLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hY3Rpb25zLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy91cmxpZnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL3ByZXBvcHVsYXRlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IveHJlZ2V4cC94cmVnZXhwLmpzIj48L3NjcmlwdD4KCjxtZXRhIG5hbWU9InJvYm90cyIgY29udGVudD0iTk9ORSxOT0FSQ0hJVkUiIC8+CjwvaGVhZD4KCgo8Ym9keSBjbGFzcz0iIGFwcC1hdXRoIG1vZGVsLXVzZXIgY2hhbmdlLWZvcm0iCiAgZGF0YS1hZG1pbi11dGMtb2Zmc2V0PSIwIj4KCjwhLS0gQ29udGFpbmVyIC0tPgo8ZGl2IGlkPSJjb250YWluZXIiPgoKICAgIAogICAgPCEtLSBIZWFkZXIgLS0+CiAgICA8ZGl2IGlkPSJoZWFkZXIiPgogICAgICAgIDxkaXYgaWQ9ImJyYW5kaW5nIj4KICAgICAgICAKPGgxIGlkPSJzaXRlLW5hbWUiPjxhIGhyZWY9Ii9hZG1pbi8iPkRqYW5nbyBhZG1pbmlzdHJhdGlvbjwvYT48L2gxPgoKICAgICAgICA8L2Rpdj4KICAgICAgICAKICAgICAgICAKICAgICAgICA8ZGl2IGlkPSJ1c2VyLXRvb2xzIj4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICBXZWxjb21lLAogICAgICAgICAgICAgICAgPHN0cm9uZz5rYXBlPC9zdHJvbmc+LgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvIj5WaWV3IHNpdGU8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL3Bhc3N3b3JkX2NoYW5nZS8iPkNoYW5nZSBwYXNzd29yZDwvYT4gLwogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vbG9nb3V0LyI+TG9nIG91dDwvYT4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgCiAgICA8L2Rpdj4KICAgIDwhLS0gRU5EIEhlYWRlciAtLT4KICAgIAo8ZGl2IGNsYXNzPSJicmVhZGNydW1icyI+CjxhIGhyZWY9Ii9hZG1pbi8iPkhvbWU8L2E+CiZyc2FxdW87IDxhIGhyZWY9Ii9hZG1pbi9hdXRoLyI+QXV0aGVudGljYXRpb24gYW5kIEF1dGhvcml6YXRpb248L2E+CiZyc2FxdW87IDxhIGhyZWY9Ii9hZG1pbi9hdXRoL3VzZXIvIj5Vc2VyczwvYT4KJnJzYXF1bzsgQWRkIHVzZXIKPC9kaXY+CgogICAgCgogICAgCiAgICAgICAgCiAgICAKCiAgICA8IS0tIENvbnRlbnQgLS0+CiAgICA8ZGl2IGlkPSJjb250ZW50IiBjbGFzcz0iY29sTSI+CiAgICAgICAgCiAgICAgICAgPGgxPkFkZCB1c2VyPC9oMT4KICAgICAgICA8ZGl2IGlkPSJjb250ZW50LW1haW4iPgoKCgo8Zm9ybSBlbmN0eXBlPSJtdWx0aXBhcnQvZm9ybS1kYXRhIiBhY3Rpb249IiIgbWV0aG9kPSJwb3N0IiBpZD0idXNlcl9mb3JtIiBub3ZhbGlkYXRlPjxpbnB1dCB0eXBlPSdoaWRkZW4nIG5hbWU9J2NzcmZtaWRkbGV3YXJldG9rZW4nIHZhbHVlPSd5VFBBUGpHVGFsMmJKT3JQUVhFcmFBbHFDWDhhdUlrTFhaV3AxUHlPWGlkQTZXdGh6bzlUMmgyYUFTZVpPSWdBJyAvPgogIAogICAgPHA+Rmlyc3QsIGVudGVyIGEgdXNlcm5hbWUgYW5kIHBhc3N3b3JkLiBUaGVuLCB5b3UnbGwgYmUgYWJsZSB0byBlZGl0IG1vcmUgdXNlciBvcHRpb25zLjwvcD4KICAKCjxkaXY+CgoKCgogICAgPHAgY2xhc3M9ImVycm9ybm90ZSI+CiAgICBQbGVhc2UgY29ycmVjdCB0aGUgZXJyb3IgYmVsb3cuCiAgICA8L3A+CiAgICAKCgoKCiAgPGZpZWxkc2V0IGNsYXNzPSJtb2R1bGUgYWxpZ25lZCB3aWRlIj4KICAgIAogICAgCiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC11c2VybmFtZSI+CiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXY+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxsYWJlbCBjbGFzcz0icmVxdWlyZWQiIGZvcj0iaWRfdXNlcm5hbWUiPlVzZXJuYW1lOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgPGlucHV0IGF1dG9mb2N1cz0iIiBjbGFzcz0idlRleHRGaWVsZCIgaWQ9ImlkX3VzZXJuYW1lIiBtYXhsZW5ndGg9IjE1MCIgbmFtZT0idXNlcm5hbWUiIHR5cGU9InRleHQiIHZhbHVlPSJmYXJoYW5jb3JwIiByZXF1aXJlZCAvPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPHAgY2xhc3M9ImhlbHAiPlJlcXVpcmVkLiAxNTAgY2hhcmFjdGVycyBvciBmZXdlci4gTGV0dGVycywgZGlnaXRzIGFuZCBALy4vKy8tL18gb25seS48L3A+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC1wYXNzd29yZDEiPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgY2xhc3M9InJlcXVpcmVkIiBmb3I9ImlkX3Bhc3N3b3JkMSI+UGFzc3dvcmQ6PC9sYWJlbD4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8aW5wdXQgaWQ9ImlkX3Bhc3N3b3JkMSIgbmFtZT0icGFzc3dvcmQxIiB0eXBlPSJwYXNzd29yZCIgcmVxdWlyZWQgLz4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBlcnJvcnMgZmllbGQtcGFzc3dvcmQyIj4KICAgICAgICAgICAgPHVsIGNsYXNzPSJlcnJvcmxpc3QiPjxsaT5UaGUgdHdvIHBhc3N3b3JkIGZpZWxkcyBkaWRuJiMzOTt0IG1hdGNoLjwvbGk+PC91bD4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgY2xhc3M9InJlcXVpcmVkIiBmb3I9ImlkX3Bhc3N3b3JkMiI+UGFzc3dvcmQgY29uZmlybWF0aW9uOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgPGlucHV0IGlkPSJpZF9wYXNzd29yZDIiIG5hbWU9InBhc3N3b3JkMiIgdHlwZT0icGFzc3dvcmQiIHJlcXVpcmVkIC8+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8cCBjbGFzcz0iaGVscCI+RW50ZXIgdGhlIHNhbWUgcGFzc3dvcmQgYXMgYmVmb3JlLCBmb3IgdmVyaWZpY2F0aW9uLjwvcD4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDwvZGl2PgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgIAo8L2ZpZWxkc2V0PgoKCgoKCgoKCgoKCgoKPGRpdiBjbGFzcz0ic3VibWl0LXJvdyI+CjxpbnB1dCB0eXBlPSJzdWJtaXQiIHZhbHVlPSJTYXZlIiBjbGFzcz0iZGVmYXVsdCIgbmFtZT0iX3NhdmUiIC8+CgoKPGlucHV0IHR5cGU9InN1Ym1pdCIgdmFsdWU9IlNhdmUgYW5kIGFkZCBhbm90aGVyIiBuYW1lPSJfYWRkYW5vdGhlciIgLz4KPGlucHV0IHR5cGU9InN1Ym1pdCIgdmFsdWU9IlNhdmUgYW5kIGNvbnRpbnVlIGVkaXRpbmciIG5hbWU9Il9jb250aW51ZSIgLz4KPC9kaXY+CgoKCiAgICA8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIKICAgICAgICAgICAgaWQ9ImRqYW5nby1hZG1pbi1mb3JtLWFkZC1jb25zdGFudHMiCiAgICAgICAgICAgIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9jaGFuZ2VfZm9ybS5qcyIKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICBkYXRhLW1vZGVsLW5hbWU9InVzZXIiCiAgICAgICAgICAgID4KICAgIDwvc2NyaXB0PgoKCgoKPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiCiAgICAgICAgaWQ9ImRqYW5nby1hZG1pbi1wcmVwb3B1bGF0ZWQtZmllbGRzLWNvbnN0YW50cyIKICAgICAgICBzcmM9Ii9hc3NldHMvYWRtaW4vanMvcHJlcG9wdWxhdGVfaW5pdC5qcyIKICAgICAgICBkYXRhLXByZXBvcHVsYXRlZC1maWVsZHM9IltdIj4KPC9zY3JpcHQ+CgoKPC9kaXY+CjwvZm9ybT48L2Rpdj4KCiAgICAgICAgCiAgICAgICAgPGJyIGNsYXNzPSJjbGVhciIgLz4KICAgIDwvZGl2PgogICAgPCEtLSBFTkQgQ29udGVudCAtLT4KCiAgICA8ZGl2IGlkPSJmb290ZXIiPjwvZGl2Pgo8L2Rpdj4KPCEtLSBFTkQgQ29udGFpbmVyIC0tPgoKPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 14:53:28 GMT\", \"Expires\": \"Mon, 27 Mar 2017 14:53:28 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "8f251a48-3a9e-426d-871f-852880fcd643", - "fields": { - "request": "26f89ffa-8e28-43e5-b7d0-ccd322afb002", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPlNpdGUgYWRtaW5pc3RyYXRpb24gfCBEamFuZ28gc2l0ZSBhZG1pbjwvdGl0bGU+CjxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvYWRtaW4vY3NzL2Jhc2UuY3NzIiAvPgo8bGluayByZWw9InN0eWxlc2hlZXQiIHR5cGU9InRleHQvY3NzIiBocmVmPSIvYXNzZXRzL2FkbWluL2Nzcy9kYXNoYm9hcmQuY3NzIiAvPgoKCjxtZXRhIG5hbWU9InJvYm90cyIgY29udGVudD0iTk9ORSxOT0FSQ0hJVkUiIC8+CjwvaGVhZD4KCgo8Ym9keSBjbGFzcz0iIGRhc2hib2FyZCIKICBkYXRhLWFkbWluLXV0Yy1vZmZzZXQ9IjAiPgoKPCEtLSBDb250YWluZXIgLS0+CjxkaXYgaWQ9ImNvbnRhaW5lciI+CgogICAgCiAgICA8IS0tIEhlYWRlciAtLT4KICAgIDxkaXYgaWQ9ImhlYWRlciI+CiAgICAgICAgPGRpdiBpZD0iYnJhbmRpbmciPgogICAgICAgIAo8aDEgaWQ9InNpdGUtbmFtZSI+PGEgaHJlZj0iL2FkbWluLyI+RGphbmdvIGFkbWluaXN0cmF0aW9uPC9hPjwvaDE+CgogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIDxkaXYgaWQ9InVzZXItdG9vbHMiPgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIFdlbGNvbWUsCiAgICAgICAgICAgICAgICA8c3Ryb25nPmthcGU8L3N0cm9uZz4uCiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii8iPlZpZXcgc2l0ZTwvYT4gLwogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vcGFzc3dvcmRfY2hhbmdlLyI+Q2hhbmdlIHBhc3N3b3JkPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9sb2dvdXQvIj5Mb2cgb3V0PC9hPgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgICAgICAKICAgICAgICAKICAgICAgICAKICAgIDwvZGl2PgogICAgPCEtLSBFTkQgSGVhZGVyIC0tPgogICAgCiAgICAKCiAgICAKICAgICAgICAKICAgIAoKICAgIDwhLS0gQ29udGVudCAtLT4KICAgIDxkaXYgaWQ9ImNvbnRlbnQiIGNsYXNzPSJjb2xNUyI+CiAgICAgICAgCiAgICAgICAgPGgxPlNpdGUgYWRtaW5pc3RyYXRpb248L2gxPgogICAgICAgIAo8ZGl2IGlkPSJjb250ZW50LW1haW4iPgoKCiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJhcHAtYXV0aCBtb2R1bGUiPgogICAgICAgIDx0YWJsZT4KICAgICAgICA8Y2FwdGlvbj4KICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2F1dGgvIiBjbGFzcz0ic2VjdGlvbiIgdGl0bGU9Ik1vZGVscyBpbiB0aGUgQXV0aGVudGljYXRpb24gYW5kIEF1dGhvcml6YXRpb24gYXBwbGljYXRpb24iPkF1dGhlbnRpY2F0aW9uIGFuZCBBdXRob3JpemF0aW9uPC9hPgogICAgICAgIDwvY2FwdGlvbj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1ncm91cCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL2dyb3VwLyI+R3JvdXBzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvZ3JvdXAvYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL2dyb3VwLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC11c2VyIj4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8iPlVzZXJzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgPC90YWJsZT4KICAgICAgICA8L2Rpdj4KICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImFwcC1jb3JlIG1vZHVsZSI+CiAgICAgICAgPHRhYmxlPgogICAgICAgIDxjYXB0aW9uPgogICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS8iIGNsYXNzPSJzZWN0aW9uIiB0aXRsZT0iTW9kZWxzIGluIHRoZSBDb3JlIGFwcGxpY2F0aW9uIj5Db3JlPC9hPgogICAgICAgIDwvY2FwdGlvbj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1hcHBsaWNhdGlvbiI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL2FwcGxpY2F0aW9uLyI+QXBwbGljYXRpb25zPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvYXBwbGljYXRpb24vYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL2FwcGxpY2F0aW9uLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1jb21wYW55Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8iPkNvbXBhbnlzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgICAgIDx0ciBjbGFzcz0ibW9kZWwtc3R1ZGVudCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvIj5TdHVkZW50czwvYT48L3RoPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvIiBjbGFzcz0iY2hhbmdlbGluayI+Q2hhbmdlPC9hPjwvdGQ+CiAgICAgICAgICAgIAogICAgICAgICAgICA8L3RyPgogICAgICAgIAogICAgICAgICAgICA8dHIgY2xhc3M9Im1vZGVsLXN1cGVydmlzb3IiPgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0aCBzY29wZT0icm93Ij48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yLyI+U3VwZXJ2aXNvcnM8L2E+PC90aD4KICAgICAgICAgICAgCgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0ZD48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yL2FkZC8iIGNsYXNzPSJhZGRsaW5rIj5BZGQ8L2E+PC90ZD4KICAgICAgICAgICAgCgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0ZD48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC12YWNhbmN5Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS8iPlZhY2FuY3lzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgPC90YWJsZT4KICAgICAgICA8L2Rpdj4KICAgIAoKPC9kaXY+CgogICAgICAgIAo8ZGl2IGlkPSJjb250ZW50LXJlbGF0ZWQiPgogICAgPGRpdiBjbGFzcz0ibW9kdWxlIiBpZD0icmVjZW50LWFjdGlvbnMtbW9kdWxlIj4KICAgICAgICA8aDI+UmVjZW50IGFjdGlvbnM8L2gyPgogICAgICAgIDxoMz5NeSBhY3Rpb25zPC9oMz4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgPHVsIGNsYXNzPSJhY3Rpb25saXN0Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaSBjbGFzcz0iYWRkbGluayI+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yLzEvY2hhbmdlLyI+U3VwZXJ2aXNvciBvYmplY3Q8L2E+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxici8+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz0ibWluaSBxdWlldCI+U3VwZXJ2aXNvcjwvc3Bhbj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgICAgPGxpIGNsYXNzPSJhZGRsaW5rIj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvMS9jaGFuZ2UvIj5TdHVkZW50IG9iamVjdDwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5TdHVkZW50PC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8bGkgY2xhc3M9ImFkZGxpbmsiPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8yL2NoYW5nZS8iPkNvbXBhbnkgb2JqZWN0PC9hPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YnIvPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9Im1pbmkgcXVpZXQiPkNvbXBhbnk8L3NwYW4+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgPC9saT4KICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaSBjbGFzcz0iZGVsZXRlbGluayI+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICBDb21wYW55IG9iamVjdAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YnIvPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9Im1pbmkgcXVpZXQiPkNvbXBhbnk8L3NwYW4+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgPC9saT4KICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaSBjbGFzcz0iYWRkbGluayI+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vYXV0aC91c2VyLzQvY2hhbmdlLyI+ZmFyaGFuc3VwZXI8L2E+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxici8+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz0ibWluaSBxdWlldCI+VXNlcjwvc3Bhbj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgICAgPGxpIGNsYXNzPSJhZGRsaW5rIj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9hdXRoL3VzZXIvMy9jaGFuZ2UvIj5mYXJoYW5jb3JwPC9hPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YnIvPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9Im1pbmkgcXVpZXQiPlVzZXI8L3NwYW4+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgPC9saT4KICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaSBjbGFzcz0iYWRkbGluayI+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vYXV0aC91c2VyLzIvY2hhbmdlLyI+ZmFyaGFuPC9hPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YnIvPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9Im1pbmkgcXVpZXQiPlVzZXI8L3NwYW4+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgPC9saT4KICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaSBjbGFzcz0iYWRkbGluayI+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS9jb21wYW55LzEvY2hhbmdlLyI+Q29tcGFueSBvYmplY3Q8L2E+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxici8+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz0ibWluaSBxdWlldCI+Q29tcGFueTwvc3Bhbj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgICAgPC91bD4KICAgICAgICAgICAgCiAgICA8L2Rpdj4KPC9kaXY+CgogICAgICAgIDxiciBjbGFzcz0iY2xlYXIiIC8+CiAgICA8L2Rpdj4KICAgIDwhLS0gRU5EIENvbnRlbnQgLS0+CgogICAgPGRpdiBpZD0iZm9vdGVyIj48L2Rpdj4KPC9kaXY+CjwhLS0gRU5EIENvbnRhaW5lciAtLT4KCjwvYm9keT4KPC9odG1sPgo=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 15:22:54 GMT\", \"Expires\": \"Mon, 27 Mar 2017 15:22:54 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\"}" - } -}, -{ - "model": "silk.response", - "pk": "8fa35754-4152-43e7-aa93-fdb5feca3afc", - "fields": { - "request": "7875a5ed-d252-4c60-b3c7-3a59ac610a8b", - "status_code": 200, - "raw_body": "CjwhRE9DVFlQRSBodG1sPgo8aHRtbD4KPGhlYWQ+CiAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogIDx0aXRsZT5Td2FnZ2VyIFVJPC90aXRsZT4KICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2ltYWdlcy9mYXZpY29uLTMyeDMyLnBuZyIgc2l6ZXM9IjMyeDMyIiAvPgogIDxsaW5rIHJlbD0iaWNvbiIgdHlwZT0iaW1hZ2UvcG5nIiBocmVmPSIvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvaW1hZ2VzL2Zhdmljb24tMTZ4MTYucG5nIiBzaXplcz0iMTZ4MTYiIC8+CiAgPGxpbmsgaHJlZj0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2Nzcy90eXBvZ3JhcGh5LmNzcycgbWVkaWE9J3NjcmVlbicgcmVsPSdzdHlsZXNoZWV0JyB0eXBlPSd0ZXh0L2NzcycvPgogIDxsaW5rIGhyZWY9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9jc3MvcmVzZXQuY3NzJyBtZWRpYT0nc2NyZWVuJyByZWw9J3N0eWxlc2hlZXQnIHR5cGU9J3RleHQvY3NzJy8+CiAgPGxpbmsgaHJlZj0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2Nzcy9zY3JlZW4uY3NzJyBtZWRpYT0nc2NyZWVuJyByZWw9J3N0eWxlc2hlZXQnIHR5cGU9J3RleHQvY3NzJy8+CiAgPGxpbmsgaHJlZj0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2Nzcy9yZXNldC5jc3MnIG1lZGlhPSdwcmludCcgcmVsPSdzdHlsZXNoZWV0JyB0eXBlPSd0ZXh0L2NzcycvPgogIDxsaW5rIGhyZWY9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9jc3MvcHJpbnQuY3NzJyBtZWRpYT0ncHJpbnQnIHJlbD0nc3R5bGVzaGVldCcgdHlwZT0ndGV4dC9jc3MnLz4KICAKICAKICAKCiAgPHNjcmlwdCBzcmM9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9saWIvb2JqZWN0LWFzc2lnbi1wb2xseWZpbGwuanMnIHR5cGU9J3RleHQvamF2YXNjcmlwdCc+PC9zY3JpcHQ+CiAgPHNjcmlwdCBzcmM9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9saWIvanF1ZXJ5LTEuOC4wLm1pbi5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4KICA8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2xpYi9qcXVlcnkuc2xpZGV0by5taW4uanMnIHR5cGU9J3RleHQvamF2YXNjcmlwdCc+PC9zY3JpcHQ+CiAgPHNjcmlwdCBzcmM9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9saWIvanF1ZXJ5LndpZ2dsZS5taW4uanMnIHR5cGU9J3RleHQvamF2YXNjcmlwdCc+PC9zY3JpcHQ+CiAgPHNjcmlwdCBzcmM9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9saWIvanF1ZXJ5LmJhLWJicS5taW4uanMnIHR5cGU9J3RleHQvamF2YXNjcmlwdCc+PC9zY3JpcHQ+CiAgPHNjcmlwdCBzcmM9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9saWIvaGFuZGxlYmFycy0yLjAuMC5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4KICA8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2xpYi9qcy15YW1sLm1pbi5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4KICA8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2xpYi9sb2Rhc2gubWluLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgogIDxzY3JpcHQgc3JjPScvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvbGliL2JhY2tib25lLW1pbi5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4KICA8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL3N3YWdnZXItdWkubWluLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgogIDxzY3JpcHQgc3JjPScvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvbGliL2hpZ2hsaWdodC45LjEuMC5wYWNrLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgogIDxzY3JpcHQgc3JjPScvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvbGliL2hpZ2hsaWdodC45LjEuMC5wYWNrX2V4dGVuZGVkLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgogIDxzY3JpcHQgc3JjPScvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvbGliL2pzb25lZGl0b3IubWluLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgogIDxzY3JpcHQgc3JjPScvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvbGliL21hcmtlZC5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4KICA8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2xpYi9zd2FnZ2VyLW9hdXRoLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgoKICA8IS0tIFNvbWUgYmFzaWMgdHJhbnNsYXRpb25zIC0tPgogIDwhLS0gPHNjcmlwdCBzcmM9J2xhbmcvdHJhbnNsYXRvci5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4gLS0+CiAgPCEtLSA8c2NyaXB0IHNyYz0nbGFuZy9ydS5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4gLS0+CiAgPCEtLSA8c2NyaXB0IHNyYz0nbGFuZy9lbi5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4gLS0+Cgo8L2hlYWQ+Cgo8Ym9keSBjbGFzcz0ic3dhZ2dlci1zZWN0aW9uIj4KCjxkaXYgaWQ9J2hlYWRlcic+CiAgPGRpdiBjbGFzcz0ic3dhZ2dlci11aS13cmFwIj4KICAgIAogICAgICA8YSBpZD0ibG9nbyIgaHJlZj0iaHR0cDovL3N3YWdnZXIuaW8iPjxpbWcgY2xhc3M9ImxvZ29fX2ltZyIgYWx0PSJzd2FnZ2VyIiBoZWlnaHQ9IjMwIiB3aWR0aD0iMzAiIHNyYz0iL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2ltYWdlcy9sb2dvX3NtYWxsLnBuZyIgLz48c3BhbiBjbGFzcz0ibG9nb19fdGl0bGUiPnN3YWdnZXI8L3NwYW4+PC9hPgogICAgCiAgICA8Zm9ybSBpZD0nYXBpX3NlbGVjdG9yJz4KICAgICAgPGlucHV0IGlkPSJpbnB1dF9iYXNlVXJsIiBuYW1lPSJiYXNlVXJsIiB0eXBlPSJoaWRkZW4iLz4KICAgICAgCiAgICAgICAgPGlucHV0IHR5cGU9J2hpZGRlbicgbmFtZT0nY3NyZm1pZGRsZXdhcmV0b2tlbicgdmFsdWU9J3NoUHlmTm9pczhXUENxNTZGOHppbkFPcVdnSGl0Y0tlUm5XbnJqZ2RmNTdlWnk3eW96NEtmaHZhVWJON05jRzMnIC8+CiAgICAgICAgCiAgICAgICAgICA8ZGl2IGNsYXNzPSJpbnB1dCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgIAogICAgICAgICAgICAgIEhlbGxvLCBrYXBlCiAgICAgICAgICAgIAogICAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgICAKICAgICAgICAKICAgICAgCgogICAgICAKICAgICAgICAKICAgICAgICAgIDxkaXYgY2xhc3M9J2lucHV0Jz48YSBpZD0iYXV0aCIgY2xhc3M9ImhlYWRlcl9fYnRuIiBocmVmPSI/bmV4dD0vYXBpIiBkYXRhLXN3LXRyYW5zbGF0ZT5EamFuZ28gTG9nb3V0PC9hPjwvZGl2PgogICAgICAgIAogICAgICAKICAgICAgPGRpdiBpZD0nYXV0aF9jb250YWluZXInPjwvZGl2PgogICAgPC9mb3JtPgogIDwvZGl2Pgo8L2Rpdj4KCgo8ZGl2IGlkPSJtZXNzYWdlLWJhciIgY2xhc3M9InN3YWdnZXItdWktd3JhcCIgZGF0YS1zdy10cmFuc2xhdGU+Jm5ic3A7PC9kaXY+CjxkaXYgaWQ9InN3YWdnZXItdWktY29udGFpbmVyIiBjbGFzcz0ic3dhZ2dlci11aS13cmFwIj48L2Rpdj4KCjxzY3JpcHQgaWQ9ImRycy1zZXR0aW5ncyIgdHlwZT0iYXBwbGljYXRpb24vanNvbiI+CnsiYXBpc1NvcnRlciI6IG51bGwsICJkb2NFeHBhbnNpb24iOiBudWxsLCAianNvbkVkaXRvciI6IGZhbHNlLCAib3BlcmF0aW9uc1NvcnRlciI6IG51bGwsICJzaG93UmVxdWVzdEhlYWRlcnMiOiBmYWxzZSwgInN1cHBvcnRlZFN1Ym1pdE1ldGhvZHMiOiBbImdldCIsICJwb3N0IiwgInB1dCIsICJkZWxldGUiLCAicGF0Y2giXX0KPC9zY3JpcHQ+Cgo8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2luaXQuanMnIHR5cGU9J3RleHQvamF2YXNjcmlwdCc+PC9zY3JpcHQ+CgoKCjwvYm9keT4KPC9odG1sPgo=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Allow\": \"GET, HEAD, OPTIONS\", \"Vary\": \"Accept\"}" - } -}, -{ - "model": "silk.response", - "pk": "90102f83-924a-4a20-b402-2918d02aafd3", - "fields": { - "request": "2f6a6a58-a81d-44ab-9a2f-8c84216e88c4", - "status_code": 500, - "raw_body": "QXR0cmlidXRlRXJyb3IgYXQgL2FwaS9zdHVkZW50cy80L2Jvb2ttYXJrZWQtdmFjYW5jaWVzLwonbGlzdCcgb2JqZWN0IGhhcyBubyBhdHRyaWJ1dGUgJ2lkJwoKUmVxdWVzdCBNZXRob2Q6IFBPU1QKUmVxdWVzdCBVUkw6IGh0dHA6Ly8xMjcuMC4wLjE6ODAwMC9hcGkvc3R1ZGVudHMvNC9ib29rbWFya2VkLXZhY2FuY2llcy8KRGphbmdvIFZlcnNpb246IDEuMTAuNQpQeXRob24gRXhlY3V0YWJsZTogQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXHB5dGhvbi5leGUKUHl0aG9uIFZlcnNpb246IDMuNi4wClB5dGhvbiBQYXRoOiBbJ0Q6XFxQUExBJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXHB5dGhvbjM2LnppcCcsICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyXFxETExzJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXGxpYicsICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXGxpYlxcc2l0ZS1wYWNrYWdlcyddClNlcnZlciB0aW1lOiBNb24sIDI3IE1hciAyMDE3IDE1OjU3OjIzICswMDAwCkluc3RhbGxlZCBBcHBsaWNhdGlvbnM6ClsnZGphbmdvLmNvbnRyaWIuYWRtaW4nLAogJ2RqYW5nby5jb250cmliLmF1dGgnLAogJ2RqYW5nby5jb250cmliLmNvbnRlbnR0eXBlcycsCiAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMnLAogJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzJywKICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcycsCiAnd2VicGFja19sb2FkZXInLAogJ2NvcmUnLAogJ3Jlc3RfZnJhbWV3b3JrJywKICdkamFuZ29fbm9zZScsCiAncmVzdF9mcmFtZXdvcmtfc3dhZ2dlcicsCiAnc2lsayddCkluc3RhbGxlZCBNaWRkbGV3YXJlOgpbJ2RqYW5nby5taWRkbGV3YXJlLnNlY3VyaXR5LlNlY3VyaXR5TWlkZGxld2FyZScsCiAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMubWlkZGxld2FyZS5TZXNzaW9uTWlkZGxld2FyZScsCiAnZGphbmdvLm1pZGRsZXdhcmUuY29tbW9uLkNvbW1vbk1pZGRsZXdhcmUnLAogJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5hdXRoLm1pZGRsZXdhcmUuQXV0aGVudGljYXRpb25NaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5tZXNzYWdlcy5taWRkbGV3YXJlLk1lc3NhZ2VNaWRkbGV3YXJlJywKICdkamFuZ28ubWlkZGxld2FyZS5jbGlja2phY2tpbmcuWEZyYW1lT3B0aW9uc01pZGRsZXdhcmUnLAogJ3NpbGsubWlkZGxld2FyZS5TaWxreU1pZGRsZXdhcmUnXQoKClRyYWNlYmFjazogIAoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXGRqYW5nb1xjb3JlXGhhbmRsZXJzXGV4Y2VwdGlvbi5weSIgaW4gaW5uZXIKICAzOS4gICAgICAgICAgICAgcmVzcG9uc2UgPSBnZXRfcmVzcG9uc2UocmVxdWVzdCkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cY29yZVxoYW5kbGVyc1xiYXNlLnB5IiBpbiBfZ2V0X3Jlc3BvbnNlCiAgMTg3LiAgICAgICAgICAgICAgICAgcmVzcG9uc2UgPSBzZWxmLnByb2Nlc3NfZXhjZXB0aW9uX2J5X21pZGRsZXdhcmUoZSwgcmVxdWVzdCkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cY29yZVxoYW5kbGVyc1xiYXNlLnB5IiBpbiBfZ2V0X3Jlc3BvbnNlCiAgMTg1LiAgICAgICAgICAgICAgICAgcmVzcG9uc2UgPSB3cmFwcGVkX2NhbGxiYWNrKHJlcXVlc3QsICpjYWxsYmFja19hcmdzLCAqKmNhbGxiYWNrX2t3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cdmlld3NcZGVjb3JhdG9yc1xjc3JmLnB5IiBpbiB3cmFwcGVkX3ZpZXcKICA1OC4gICAgICAgICByZXR1cm4gdmlld19mdW5jKCphcmdzLCAqKmt3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3c2V0cy5weSIgaW4gdmlldwogIDgzLiAgICAgICAgICAgICByZXR1cm4gc2VsZi5kaXNwYXRjaChyZXF1ZXN0LCAqYXJncywgKiprd2FyZ3MpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNccmVzdF9mcmFtZXdvcmtcdmlld3MucHkiIGluIGRpc3BhdGNoCiAgNDgzLiAgICAgICAgICAgICByZXNwb25zZSA9IHNlbGYuaGFuZGxlX2V4Y2VwdGlvbihleGMpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNccmVzdF9mcmFtZXdvcmtcdmlld3MucHkiIGluIGhhbmRsZV9leGNlcHRpb24KICA0NDMuICAgICAgICAgICAgIHNlbGYucmFpc2VfdW5jYXVnaHRfZXhjZXB0aW9uKGV4YykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3cy5weSIgaW4gZGlzcGF0Y2gKICA0ODAuICAgICAgICAgICAgIHJlc3BvbnNlID0gaGFuZGxlcihyZXF1ZXN0LCAqYXJncywgKiprd2FyZ3MpCgpGaWxlICJEOlxQUExBXGNvcmVcdmlld3NcYWNjb3VudHMucHkiIGluIGJvb2ttYXJrX3ZhY2FuY2llcwogIDMwLiAgICAgICAgIHZhY2FuY3kgPSBnZXRfb2JqZWN0X29yXzQwNChWYWNhbmN5Lm9iamVjdHMuYWxsKCksIHBrPXJlcXVlc3QuZGF0YS5pZCkKCkV4Y2VwdGlvbiBUeXBlOiBBdHRyaWJ1dGVFcnJvciBhdCAvYXBpL3N0dWRlbnRzLzQvYm9va21hcmtlZC12YWNhbmNpZXMvCkV4Y2VwdGlvbiBWYWx1ZTogJ2xpc3QnIG9iamVjdCBoYXMgbm8gYXR0cmlidXRlICdpZCcKUmVxdWVzdCBpbmZvcm1hdGlvbjoKVVNFUjoga2FwZQoKR0VUOiBObyBHRVQgZGF0YQoKUE9TVDogTm8gUE9TVCBkYXRhCgpGSUxFUzogTm8gRklMRVMgZGF0YQoKQ09PS0lFUzoKc2Vzc2lvbmlkID0gJ2JsdDg3N2c1ZmptdWN4eTNkZDV1eGNpemF2YjlvcG92Jwpjc3JmdG9rZW4gPSAnMUVFUDJTd0t0MUs5UWJXbkZQU3lXUElpYnRPN01BYVZxS0xFZW9vRmdZVnlkallQb2duME93cDI5b1VXNkE2SycKCk1FVEE6CkFMTFVTRVJTUFJPRklMRSA9ICdDOlxcUHJvZ3JhbURhdGEnCkFQUERBVEEgPSAnQzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmcnCkNPTU1PTlBST0dSQU1GSUxFUyA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcQ29tbW9uIEZpbGVzJwpDT01NT05QUk9HUkFNRklMRVMoWDg2KSA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcQ29tbW9uIEZpbGVzJwpDT01NT05QUk9HUkFNVzY0MzIgPSAnQzpcXFByb2dyYW0gRmlsZXNcXENvbW1vbiBGaWxlcycKQ09NUFVURVJOQU1FID0gJ0ZBUkhBTicKQ09NU1BFQyA9ICdDOlxcV0lORE9XU1xcc3lzdGVtMzJcXGNtZC5leGUnCkNPTlRFTlRfTEVOR1RIID0gJzE0NycKQ09OVEVOVF9UWVBFID0gJ2FwcGxpY2F0aW9uL2pzb24nCkNTUkZfQ09PS0lFID0gJzFFRVAyU3dLdDFLOVFiV25GUFN5V1BJaWJ0TzdNQWFWcUtMRWVvb0ZnWVZ5ZGpZUG9nbjBPd3AyOW9VVzZBNksnCkRKQU5HT19TRVRUSU5HU19NT0RVTEUgPSAna2FwZS5zZXR0aW5ncycKRlBTX0JST1dTRVJfQVBQX1BST0ZJTEVfU1RSSU5HID0gJ0ludGVybmV0IEV4cGxvcmVyJwpGUFNfQlJPV1NFUl9VU0VSX1BST0ZJTEVfU1RSSU5HID0gJ0RlZmF1bHQnCkZQX05PX0hPU1RfQ0hFQ0sgPSAnTk8nCkdBVEVXQVlfSU5URVJGQUNFID0gJ0NHSS8xLjEnCkhPTUVEUklWRSA9ICdDOicKSE9NRVBBVEggPSAnXFxVc2Vyc1xcZmFyaGFfMDAwJwpIVFRQX0FDQ0VQVCA9ICdhcHBsaWNhdGlvbi9qc29uJwpIVFRQX0FDQ0VQVF9FTkNPRElORyA9ICdnemlwLCBkZWZsYXRlLCBicicKSFRUUF9BQ0NFUFRfTEFOR1VBR0UgPSAnaWQtSUQsaWQ7cT0wLjgsZW4tVVM7cT0wLjYsZW47cT0wLjQnCkhUVFBfQ09OTkVDVElPTiA9ICdrZWVwLWFsaXZlJwpIVFRQX0NPT0tJRSA9ICdzZXNzaW9uaWQ9Ymx0ODc3ZzVmam11Y3h5M2RkNXV4Y2l6YXZiOW9wb3Y7IGNzcmZ0b2tlbj0xRUVQMlN3S3QxSzlRYlduRlBTeVdQSWlidE83TUFhVnFLTEVlb29GZ1lWeWRqWVBvZ24wT3dwMjlvVVc2QTZLJwpIVFRQX0hPU1QgPSAnMTI3LjAuMC4xOjgwMDAnCkhUVFBfT1JJR0lOID0gJ2h0dHA6Ly8xMjcuMC4wLjE6ODAwMCcKSFRUUF9SRUZFUkVSID0gJ2h0dHA6Ly8xMjcuMC4wLjE6ODAwMC9hcGknCkhUVFBfVVNFUl9BR0VOVCA9ICdNb3ppbGxhLzUuMCAoV2luZG93cyBOVCAxMC4wOyBXT1c2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzU2LjAuMjkyNC44NyBTYWZhcmkvNTM3LjM2JwpIVFRQX1hfQ1NSRlRPS0VOID0gJ2pxOTFCdUY1ZTVSN1NqTUZSYzJUTmZ2V1U4bERPNnd5SXdnUU4weDAxMjJ3ZnJPN0FEeGxGV2NHUzNyczg2c24nCkxPQ0FMQVBQREFUQSA9ICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWwnCkxPR09OU0VSVkVSID0gJ1xcXFxGQVJIQU4nCk5VTUJFUl9PRl9QUk9DRVNTT1JTID0gJzInCk9ORURSSVZFID0gJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxPbmVEcml2ZScKT1MgPSAnV2luZG93c19OVCcKUEFUSCA9ICdDOlxcUHJvZ3JhbURhdGFcXE9yYWNsZVxcSmF2YVxcamF2YXBhdGg7QzpcXFByb2dyYW0gRmlsZXNcXEhhc2tlbGxcXGJpbjtDOlxcUHJvZ3JhbSBGaWxlc1xcSGFza2VsbCBQbGF0Zm9ybVxcNy4xMC4zXFxsaWJcXGV4dHJhbGlic1xcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxIYXNrZWxsIFBsYXRmb3JtXFw3LjEwLjNcXGJpbjtDOlxcV0lORE9XU1xcc3lzdGVtMzI7QzpcXFdJTkRPV1M7QzpcXFdJTkRPV1NcXFN5c3RlbTMyXFxXYmVtO0M6XFxXSU5ET1dTXFxTeXN0ZW0zMlxcV2luZG93c1Bvd2VyU2hlbGxcXHYxLjBcXDtDOlxcUHJvZ3JhbSBGaWxlc1xcSGFza2VsbCBQbGF0Zm9ybVxcNy4xMC4zXFxtaW5nd1xcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxKYXZhXFxqZGsxLjguMF83N1xcYmluO0M6XFxjeWd3aW42NFxcYmluOyVsb2NhbGFwcGRhdGElXFxNaWNyb3NvZnRcXFdpbmRvd3NBcHBzO0Q6XFxYQU1QUFxccGhwO0M6XFxQcm9ncmFtIEZpbGVzXFxHaXRcXGNtZDtDOlxceGFtcHBcXHBocDtDOlxcUHJvZ3JhbURhdGFcXENvbXBvc2VyU2V0dXBcXGJpbjtDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcbm9kZWpzXFw7QzpcXFByb2dyYW0gRmlsZXNcXFBvc3RncmVTUUxcXDkuNlxcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxNQVRMQUJcXFIyMDE3YVxcYmluO0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXFNjcmlwdHNcXDtDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyXFw7QzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmdcXGNhYmFsXFxiaW47RDpcXFhBTVBQXFxwaHA7QzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmdcXENvbXBvc2VyXFx2ZW5kb3JcXGJpbjtDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXE1pY3Jvc29mdFxcV2luZG93c0FwcHM7QzpcXHB5dGhvbi0zLjYuMCcKUEFUSEVYVCA9ICcuQ09NOy5FWEU7LkJBVDsuQ01EOy5WQlM7LlZCRTsuSlM7LkpTRTsuV1NGOy5XU0g7Lk1TQycKUEFUSF9JTkZPID0gJy9hcGkvc3R1ZGVudHMvNC9ib29rbWFya2VkLXZhY2FuY2llcy8nClBST0NFU1NPUl9BUkNISVRFQ1RVUkUgPSAneDg2JwpQUk9DRVNTT1JfQVJDSElURVc2NDMyID0gJ0FNRDY0JwpQUk9DRVNTT1JfSURFTlRJRklFUiA9ICdJbnRlbDY0IEZhbWlseSA2IE1vZGVsIDU4IFN0ZXBwaW5nIDksIEdlbnVpbmVJbnRlbCcKUFJPQ0VTU09SX0xFVkVMID0gJzYnClBST0NFU1NPUl9SRVZJU0lPTiA9ICczYTA5JwpQUk9HUkFNREFUQSA9ICdDOlxcUHJvZ3JhbURhdGEnClBST0dSQU1GSUxFUyA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KScKUFJPR1JBTUZJTEVTKFg4NikgPSAnQzpcXFByb2dyYW0gRmlsZXMgKHg4NiknClBST0dSQU1XNjQzMiA9ICdDOlxcUHJvZ3JhbSBGaWxlcycKUFJPTVBUID0gJyRQJEcnClBTTU9EVUxFUEFUSCA9ICdDOlxcV0lORE9XU1xcc3lzdGVtMzJcXFdpbmRvd3NQb3dlclNoZWxsXFx2MS4wXFxNb2R1bGVzXFwnClBVQkxJQyA9ICdDOlxcVXNlcnNcXFB1YmxpYycKUVVFUllfU1RSSU5HID0gJycKUkVNT1RFX0FERFIgPSAnMTI3LjAuMC4xJwpSRU1PVEVfSE9TVCA9ICcnClJFUVVFU1RfTUVUSE9EID0gJ1BPU1QnClJVTl9NQUlOID0gJ3RydWUnClNDUklQVF9OQU1FID0gJycKU0VSVkVSX05BTUUgPSAnRmFyaGFuJwpTRVJWRVJfUE9SVCA9ICc4MDAwJwpTRVJWRVJfUFJPVE9DT0wgPSAnSFRUUC8xLjEnClNFUlZFUl9TT0ZUV0FSRSA9ICdXU0dJU2VydmVyLzAuMicKU0VTU0lPTk5BTUUgPSAnQ29uc29sZScKU1lTVEVNRFJJVkUgPSAnQzonClNZU1RFTVJPT1QgPSAnQzpcXFdJTkRPV1MnClRFTVAgPSAnQzpcXFVzZXJzXFxGQVJIQV9+MVxcQXBwRGF0YVxcTG9jYWxcXFRlbXAnClRNUCA9ICdDOlxcVXNlcnNcXEZBUkhBX34xXFxBcHBEYXRhXFxMb2NhbFxcVGVtcCcKVVNFUkRPTUFJTiA9ICdGYXJoYW4nClVTRVJET01BSU5fUk9BTUlOR1BST0ZJTEUgPSAnRmFyaGFuJwpVU0VSTkFNRSA9ICdGYXJoYW4gRmFyYXNkYWsnClVTRVJQUk9GSUxFID0gJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwJwpWQk9YX01TSV9JTlNUQUxMX1BBVEggPSAnQzpcXFByb2dyYW0gRmlsZXNcXE9yYWNsZVxcVmlydHVhbEJveFxcJwpXSU5ESVIgPSAnQzpcXFdJTkRPV1MnCndzZ2kuZXJyb3JzID0gPF9pby5UZXh0SU9XcmFwcGVyIG5hbWU9JzxzdGRlcnI+JyBtb2RlPSd3JyBlbmNvZGluZz0ndXRmLTgnPgp3c2dpLmZpbGVfd3JhcHBlciA9ICcnCndzZ2kuaW5wdXQgPSA8X2lvLkJ1ZmZlcmVkUmVhZGVyIG5hbWU9MTkyOD4Kd3NnaS5tdWx0aXByb2Nlc3MgPSBGYWxzZQp3c2dpLm11bHRpdGhyZWFkID0gVHJ1ZQp3c2dpLnJ1bl9vbmNlID0gRmFsc2UKd3NnaS51cmxfc2NoZW1lID0gJ2h0dHAnCndzZ2kudmVyc2lvbiA9IAoKU2V0dGluZ3M6ClVzaW5nIHNldHRpbmdzIG1vZHVsZSBrYXBlLnNldHRpbmdzCkFCU09MVVRFX1VSTF9PVkVSUklERVMgPSB7fQpBRE1JTlMgPSBbXQpBTExPV0VEX0hPU1RTID0gWydib3QucmVjcnVpdC5pZCcsICcxMDQuMjM2Ljc2LjE2MScsICdsb2NhbGhvc3QnLCAnMTI3LjAuMC4xJ10KQVBQRU5EX1NMQVNIID0gVHJ1ZQpBVVRIRU5USUNBVElPTl9CQUNLRU5EUyA9IFsnZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQnXQpBVVRIX1BBU1NXT1JEX1ZBTElEQVRPUlMgPSAnKioqKioqKioqKioqKioqKioqKionCkFVVEhfVVNFUl9NT0RFTCA9ICdhdXRoLlVzZXInCkJBU0VfRElSID0gJ0Q6XFxQUExBJwpDQUNIRVMgPSB7J2RlZmF1bHQnOiB7J0JBQ0tFTkQnOiAnZGphbmdvLmNvcmUuY2FjaGUuYmFja2VuZHMubG9jbWVtLkxvY01lbUNhY2hlJ319CkNBQ0hFX01JRERMRVdBUkVfQUxJQVMgPSAnZGVmYXVsdCcKQ0FDSEVfTUlERExFV0FSRV9LRVlfUFJFRklYID0gJyoqKioqKioqKioqKioqKioqKioqJwpDQUNIRV9NSURETEVXQVJFX1NFQ09ORFMgPSA2MDAKQ1NSRl9DT09LSUVfQUdFID0gMzE0NDk2MDAKQ1NSRl9DT09LSUVfRE9NQUlOID0gTm9uZQpDU1JGX0NPT0tJRV9IVFRQT05MWSA9IEZhbHNlCkNTUkZfQ09PS0lFX05BTUUgPSAnY3NyZnRva2VuJwpDU1JGX0NPT0tJRV9QQVRIID0gJy8nCkNTUkZfQ09PS0lFX1NFQ1VSRSA9IEZhbHNlCkNTUkZfRkFJTFVSRV9WSUVXID0gJ2RqYW5nby52aWV3cy5jc3JmLmNzcmZfZmFpbHVyZScKQ1NSRl9IRUFERVJfTkFNRSA9ICdIVFRQX1hfQ1NSRlRPS0VOJwpDU1JGX1RSVVNURURfT1JJR0lOUyA9IFtdCkRBVEFCQVNFUyA9IHsnZGVmYXVsdCc6IHsnRU5HSU5FJzogJ2RqYW5nby5kYi5iYWNrZW5kcy5wb3N0Z3Jlc3FsX3BzeWNvcGcyJywgJ05BTUUnOiAna2FwZScsICdVU0VSJzogJ2thcGUnLCAnUEFTU1dPUkQnOiAnKioqKioqKioqKioqKioqKioqKionLCAnSE9TVCc6ICdsb2NhbGhvc3QnLCAnUE9SVCc6ICcnLCAnQVRPTUlDX1JFUVVFU1RTJzogRmFsc2UsICdBVVRPQ09NTUlUJzogVHJ1ZSwgJ0NPTk5fTUFYX0FHRSc6IDAsICdPUFRJT05TJzoge30sICdUSU1FX1pPTkUnOiBOb25lLCAnVEVTVCc6IHsnQ0hBUlNFVCc6IE5vbmUsICdDT0xMQVRJT04nOiBOb25lLCAnTkFNRSc6IE5vbmUsICdNSVJST1InOiBOb25lfX19CkRBVEFCQVNFX1JPVVRFUlMgPSBbXQpEQVRBX1VQTE9BRF9NQVhfTUVNT1JZX1NJWkUgPSAyNjIxNDQwCkRBVEFfVVBMT0FEX01BWF9OVU1CRVJfRklFTERTID0gMTAwMApEQVRFVElNRV9GT1JNQVQgPSAnTiBqLCBZLCBQJwpEQVRFVElNRV9JTlBVVF9GT1JNQVRTID0gWyclWS0lbS0lZCAlSDolTTolUycsICclWS0lbS0lZCAlSDolTTolUy4lZicsICclWS0lbS0lZCAlSDolTScsICclWS0lbS0lZCcsICclbS8lZC8lWSAlSDolTTolUycsICclbS8lZC8lWSAlSDolTTolUy4lZicsICclbS8lZC8lWSAlSDolTScsICclbS8lZC8lWScsICclbS8lZC8leSAlSDolTTolUycsICclbS8lZC8leSAlSDolTTolUy4lZicsICclbS8lZC8leSAlSDolTScsICclbS8lZC8leSddCkRBVEVfRk9STUFUID0gJ04gaiwgWScKREFURV9JTlBVVF9GT1JNQVRTID0gWyclWS0lbS0lZCcsICclbS8lZC8lWScsICclbS8lZC8leScsICclYiAlZCAlWScsICclYiAlZCwgJVknLCAnJWQgJWIgJVknLCAnJWQgJWIsICVZJywgJyVCICVkICVZJywgJyVCICVkLCAlWScsICclZCAlQiAlWScsICclZCAlQiwgJVknXQpERUJVRyA9IFRydWUKREVCVUdfUFJPUEFHQVRFX0VYQ0VQVElPTlMgPSBGYWxzZQpERUNJTUFMX1NFUEFSQVRPUiA9ICcuJwpERUZBVUxUX0NIQVJTRVQgPSAndXRmLTgnCkRFRkFVTFRfQ09OVEVOVF9UWVBFID0gJ3RleHQvaHRtbCcKREVGQVVMVF9FWENFUFRJT05fUkVQT1JURVJfRklMVEVSID0gJ2RqYW5nby52aWV3cy5kZWJ1Zy5TYWZlRXhjZXB0aW9uUmVwb3J0ZXJGaWx0ZXInCkRFRkFVTFRfRklMRV9TVE9SQUdFID0gJ2RqYW5nby5jb3JlLmZpbGVzLnN0b3JhZ2UuRmlsZVN5c3RlbVN0b3JhZ2UnCkRFRkFVTFRfRlJPTV9FTUFJTCA9ICd3ZWJtYXN0ZXJAbG9jYWxob3N0JwpERUZBVUxUX0lOREVYX1RBQkxFU1BBQ0UgPSAnJwpERUZBVUxUX1RBQkxFU1BBQ0UgPSAnJwpESVNBTExPV0VEX1VTRVJfQUdFTlRTID0gW10KRU1BSUxfQkFDS0VORCA9ICdkamFuZ28uY29yZS5tYWlsLmJhY2tlbmRzLnNtdHAuRW1haWxCYWNrZW5kJwpFTUFJTF9IT1NUID0gJ2xvY2FsaG9zdCcKRU1BSUxfSE9TVF9QQVNTV09SRCA9ICcqKioqKioqKioqKioqKioqKioqKicKRU1BSUxfSE9TVF9VU0VSID0gJycKRU1BSUxfUE9SVCA9IDI1CkVNQUlMX1NTTF9DRVJURklMRSA9IE5vbmUKRU1BSUxfU1NMX0tFWUZJTEUgPSAnKioqKioqKioqKioqKioqKioqKionCkVNQUlMX1NVQkpFQ1RfUFJFRklYID0gJ1tEamFuZ29dICcKRU1BSUxfVElNRU9VVCA9IE5vbmUKRU1BSUxfVVNFX1NTTCA9IEZhbHNlCkVNQUlMX1VTRV9UTFMgPSBGYWxzZQpGSUxFX0NIQVJTRVQgPSAndXRmLTgnCkZJTEVfVVBMT0FEX0RJUkVDVE9SWV9QRVJNSVNTSU9OUyA9IE5vbmUKRklMRV9VUExPQURfSEFORExFUlMgPSBbJ2RqYW5nby5jb3JlLmZpbGVzLnVwbG9hZGhhbmRsZXIuTWVtb3J5RmlsZVVwbG9hZEhhbmRsZXInLCAnZGphbmdvLmNvcmUuZmlsZXMudXBsb2FkaGFuZGxlci5UZW1wb3JhcnlGaWxlVXBsb2FkSGFuZGxlciddCkZJTEVfVVBMT0FEX01BWF9NRU1PUllfU0laRSA9IDI2MjE0NDAKRklMRV9VUExPQURfUEVSTUlTU0lPTlMgPSBOb25lCkZJTEVfVVBMT0FEX1RFTVBfRElSID0gTm9uZQpGSVJTVF9EQVlfT0ZfV0VFSyA9IDAKRklYVFVSRV9ESVJTID0gW10KRk9SQ0VfU0NSSVBUX05BTUUgPSBOb25lCkZPUk1BVF9NT0RVTEVfUEFUSCA9IE5vbmUKR1pJUF9DT05URU5UX1RZUEVTID0gCklHTk9SQUJMRV80MDRfVVJMUyA9IFtdCklOU1RBTExFRF9BUFBTID0gWydkamFuZ28uY29udHJpYi5hZG1pbicsICdkamFuZ28uY29udHJpYi5hdXRoJywgJ2RqYW5nby5jb250cmliLmNvbnRlbnR0eXBlcycsICdkamFuZ28uY29udHJpYi5zZXNzaW9ucycsICdkamFuZ28uY29udHJpYi5tZXNzYWdlcycsICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcycsICd3ZWJwYWNrX2xvYWRlcicsICdjb3JlJywgJ3Jlc3RfZnJhbWV3b3JrJywgJ2RqYW5nb19ub3NlJywgJ3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXInLCAnc2lsayddCklOVEVSTkFMX0lQUyA9IFtdCkxBTkdVQUdFUyA9IFsoJ2FmJywgJ0FmcmlrYWFucycpLCAoJ2FyJywgJ0FyYWJpYycpLCAoJ2FzdCcsICdBc3R1cmlhbicpLCAoJ2F6JywgJ0F6ZXJiYWlqYW5pJyksICgnYmcnLCAnQnVsZ2FyaWFuJyksICgnYmUnLCAnQmVsYXJ1c2lhbicpLCAoJ2JuJywgJ0JlbmdhbGknKSwgKCdicicsICdCcmV0b24nKSwgKCdicycsICdCb3NuaWFuJyksICgnY2EnLCAnQ2F0YWxhbicpLCAoJ2NzJywgJ0N6ZWNoJyksICgnY3knLCAnV2Vsc2gnKSwgKCdkYScsICdEYW5pc2gnKSwgKCdkZScsICdHZXJtYW4nKSwgKCdkc2InLCAnTG93ZXIgU29yYmlhbicpLCAoJ2VsJywgJ0dyZWVrJyksICgnZW4nLCAnRW5nbGlzaCcpLCAoJ2VuLWF1JywgJ0F1c3RyYWxpYW4gRW5nbGlzaCcpLCAoJ2VuLWdiJywgJ0JyaXRpc2ggRW5nbGlzaCcpLCAoJ2VvJywgJ0VzcGVyYW50bycpLCAoJ2VzJywgJ1NwYW5pc2gnKSwgKCdlcy1hcicsICdBcmdlbnRpbmlhbiBTcGFuaXNoJyksICgnZXMtY28nLCAnQ29sb21iaWFuIFNwYW5pc2gnKSwgKCdlcy1teCcsICdNZXhpY2FuIFNwYW5pc2gnKSwgKCdlcy1uaScsICdOaWNhcmFndWFuIFNwYW5pc2gnKSwgKCdlcy12ZScsICdWZW5lenVlbGFuIFNwYW5pc2gnKSwgKCdldCcsICdFc3RvbmlhbicpLCAoJ2V1JywgJ0Jhc3F1ZScpLCAoJ2ZhJywgJ1BlcnNpYW4nKSwgKCdmaScsICdGaW5uaXNoJyksICgnZnInLCAnRnJlbmNoJyksICgnZnknLCAnRnJpc2lhbicpLCAoJ2dhJywgJ0lyaXNoJyksICgnZ2QnLCAnU2NvdHRpc2ggR2FlbGljJyksICgnZ2wnLCAnR2FsaWNpYW4nKSwgKCdoZScsICdIZWJyZXcnKSwgKCdoaScsICdIaW5kaScpLCAoJ2hyJywgJ0Nyb2F0aWFuJyksICgnaHNiJywgJ1VwcGVyIFNvcmJpYW4nKSwgKCdodScsICdIdW5nYXJpYW4nKSwgKCdpYScsICdJbnRlcmxpbmd1YScpLCAoJ2lkJywgJ0luZG9uZXNpYW4nKSwgKCdpbycsICdJZG8nKSwgKCdpcycsICdJY2VsYW5kaWMnKSwgKCdpdCcsICdJdGFsaWFuJyksICgnamEnLCAnSmFwYW5lc2UnKSwgKCdrYScsICdHZW9yZ2lhbicpLCAoJ2trJywgJ0themFraCcpLCAoJ2ttJywgJ0tobWVyJyksICgna24nLCAnS2FubmFkYScpLCAoJ2tvJywgJ0tvcmVhbicpLCAoJ2xiJywgJ0x1eGVtYm91cmdpc2gnKSwgKCdsdCcsICdMaXRodWFuaWFuJyksICgnbHYnLCAnTGF0dmlhbicpLCAoJ21rJywgJ01hY2Vkb25pYW4nKSwgKCdtbCcsICdNYWxheWFsYW0nKSwgKCdtbicsICdNb25nb2xpYW4nKSwgKCdtcicsICdNYXJhdGhpJyksICgnbXknLCAnQnVybWVzZScpLCAoJ25iJywgJ05vcndlZ2lhbiBCb2ttw6VsJyksICgnbmUnLCAnTmVwYWxpJyksICgnbmwnLCAnRHV0Y2gnKSwgKCdubicsICdOb3J3ZWdpYW4gTnlub3JzaycpLCAoJ29zJywgJ09zc2V0aWMnKSwgKCdwYScsICdQdW5qYWJpJyksICgncGwnLCAnUG9saXNoJyksICgncHQnLCAnUG9ydHVndWVzZScpLCAoJ3B0LWJyJywgJ0JyYXppbGlhbiBQb3J0dWd1ZXNlJyksICgncm8nLCAnUm9tYW5pYW4nKSwgKCdydScsICdSdXNzaWFuJyksICgnc2snLCAnU2xvdmFrJyksICgnc2wnLCAnU2xvdmVuaWFuJyksICgnc3EnLCAnQWxiYW5pYW4nKSwgKCdzcicsICdTZXJiaWFuJyksICgnc3ItbGF0bicsICdTZXJiaWFuIExhdGluJyksICgnc3YnLCAnU3dlZGlzaCcpLCAoJ3N3JywgJ1N3YWhpbGknKSwgKCd0YScsICdUYW1pbCcpLCAoJ3RlJywgJ1RlbHVndScpLCAoJ3RoJywgJ1RoYWknKSwgKCd0cicsICdUdXJraXNoJyksICgndHQnLCAnVGF0YXInKSwgKCd1ZG0nLCAnVWRtdXJ0JyksICgndWsnLCAnVWtyYWluaWFuJyksICgndXInLCAnVXJkdScpLCAoJ3ZpJywgJ1ZpZXRuYW1lc2UnKSwgKCd6aC1oYW5zJywgJ1NpbXBsaWZpZWQgQ2hpbmVzZScpLCAoJ3poLWhhbnQnLCAnVHJhZGl0aW9uYWwgQ2hpbmVzZScpXQpMQU5HVUFHRVNfQklESSA9IFsnaGUnLCAnYXInLCAnZmEnLCAndXInXQpMQU5HVUFHRV9DT0RFID0gJ2VuLXVzJwpMQU5HVUFHRV9DT09LSUVfQUdFID0gTm9uZQpMQU5HVUFHRV9DT09LSUVfRE9NQUlOID0gTm9uZQpMQU5HVUFHRV9DT09LSUVfTkFNRSA9ICdkamFuZ29fbGFuZ3VhZ2UnCkxBTkdVQUdFX0NPT0tJRV9QQVRIID0gJy8nCkxPQ0FMRV9QQVRIUyA9IFtdCkxPR0dJTkcgPSB7fQpMT0dHSU5HX0NPTkZJRyA9ICdsb2dnaW5nLmNvbmZpZy5kaWN0Q29uZmlnJwpMT0dJTl9SRURJUkVDVF9VUkwgPSAnL2FjY291bnRzL3Byb2ZpbGUvJwpMT0dJTl9VUkwgPSAnL2FjY291bnRzL2xvZ2luLycKTE9HT1VUX1JFRElSRUNUX1VSTCA9IE5vbmUKTUFOQUdFUlMgPSBbXQpNRURJQV9ST09UID0gJy9ob21lL2ZpbGVzJwpNRURJQV9VUkwgPSAnL2ZpbGVzLycKTUVTU0FHRV9TVE9SQUdFID0gJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzLnN0b3JhZ2UuZmFsbGJhY2suRmFsbGJhY2tTdG9yYWdlJwpNSURETEVXQVJFID0gWydkamFuZ28ubWlkZGxld2FyZS5zZWN1cml0eS5TZWN1cml0eU1pZGRsZXdhcmUnLCAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMubWlkZGxld2FyZS5TZXNzaW9uTWlkZGxld2FyZScsICdkamFuZ28ubWlkZGxld2FyZS5jb21tb24uQ29tbW9uTWlkZGxld2FyZScsICdkamFuZ28ubWlkZGxld2FyZS5jc3JmLkNzcmZWaWV3TWlkZGxld2FyZScsICdkamFuZ28uY29udHJpYi5hdXRoLm1pZGRsZXdhcmUuQXV0aGVudGljYXRpb25NaWRkbGV3YXJlJywgJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzLm1pZGRsZXdhcmUuTWVzc2FnZU1pZGRsZXdhcmUnLCAnZGphbmdvLm1pZGRsZXdhcmUuY2xpY2tqYWNraW5nLlhGcmFtZU9wdGlvbnNNaWRkbGV3YXJlJywgJ3NpbGsubWlkZGxld2FyZS5TaWxreU1pZGRsZXdhcmUnXQpNSURETEVXQVJFX0NMQVNTRVMgPSBbJ2RqYW5nby5taWRkbGV3YXJlLmNvbW1vbi5Db21tb25NaWRkbGV3YXJlJywgJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJ10KTUlHUkFUSU9OX01PRFVMRVMgPSB7fQpNT05USF9EQVlfRk9STUFUID0gJ0YgaicKTk9TRV9BUkdTID0gWyctLXdpdGgtY292ZXJhZ2UnLCAnLS1jb3Zlci1wYWNrYWdlPWNvcmUudmlld3MnLCAnLS1jb3Zlci1odG1sLWRpcj10ZXN0L2JhY2tlbmQnLCAnLS1jb3Zlci1odG1sJ10KTlVNQkVSX0dST1VQSU5HID0gMApQQVNTV09SRF9IQVNIRVJTID0gJyoqKioqKioqKioqKioqKioqKioqJwpQQVNTV09SRF9SRVNFVF9USU1FT1VUX0RBWVMgPSAnKioqKioqKioqKioqKioqKioqKionClBSRVBFTkRfV1dXID0gRmFsc2UKUkVTVF9GUkFNRVdPUksgPSB7J0RFRkFVTFRfUEVSTUlTU0lPTl9DTEFTU0VTJzogWydyZXN0X2ZyYW1ld29yay5wZXJtaXNzaW9ucy5EamFuZ29Nb2RlbFBlcm1pc3Npb25zT3JBbm9uUmVhZE9ubHknXX0KUk9PVF9VUkxDT05GID0gJ2thcGUudXJscycKUlVOTklOR19ERVZTRVJWRVIgPSBUcnVlClNFQ1JFVF9LRVkgPSAnKioqKioqKioqKioqKioqKioqKionClNFQ1VSRV9CUk9XU0VSX1hTU19GSUxURVIgPSBGYWxzZQpTRUNVUkVfQ09OVEVOVF9UWVBFX05PU05JRkYgPSBGYWxzZQpTRUNVUkVfSFNUU19JTkNMVURFX1NVQkRPTUFJTlMgPSBGYWxzZQpTRUNVUkVfSFNUU19TRUNPTkRTID0gMApTRUNVUkVfUFJPWFlfU1NMX0hFQURFUiA9IE5vbmUKU0VDVVJFX1JFRElSRUNUX0VYRU1QVCA9IFtdClNFQ1VSRV9TU0xfSE9TVCA9IE5vbmUKU0VDVVJFX1NTTF9SRURJUkVDVCA9IEZhbHNlClNFUlZFUl9FTUFJTCA9ICdyb290QGxvY2FsaG9zdCcKU0VTU0lPTl9DQUNIRV9BTElBUyA9ICdkZWZhdWx0JwpTRVNTSU9OX0NPT0tJRV9BR0UgPSAxMjA5NjAwClNFU1NJT05fQ09PS0lFX0RPTUFJTiA9IE5vbmUKU0VTU0lPTl9DT09LSUVfSFRUUE9OTFkgPSBGYWxzZQpTRVNTSU9OX0NPT0tJRV9OQU1FID0gJ3Nlc3Npb25pZCcKU0VTU0lPTl9DT09LSUVfUEFUSCA9ICcvJwpTRVNTSU9OX0NPT0tJRV9TRUNVUkUgPSBGYWxzZQpTRVNTSU9OX0VOR0lORSA9ICdkamFuZ28uY29udHJpYi5zZXNzaW9ucy5iYWNrZW5kcy5kYicKU0VTU0lPTl9FWFBJUkVfQVRfQlJPV1NFUl9DTE9TRSA9IEZhbHNlClNFU1NJT05fRklMRV9QQVRIID0gTm9uZQpTRVNTSU9OX1NBVkVfRVZFUllfUkVRVUVTVCA9IEZhbHNlClNFU1NJT05fU0VSSUFMSVpFUiA9ICdkamFuZ28uY29udHJpYi5zZXNzaW9ucy5zZXJpYWxpemVycy5KU09OU2VyaWFsaXplcicKU0VUVElOR1NfTU9EVUxFID0gJ2thcGUuc2V0dGluZ3MnClNIT1JUX0RBVEVUSU1FX0ZPUk1BVCA9ICdtL2QvWSBQJwpTSE9SVF9EQVRFX0ZPUk1BVCA9ICdtL2QvWScKU0lHTklOR19CQUNLRU5EID0gJ2RqYW5nby5jb3JlLnNpZ25pbmcuVGltZXN0YW1wU2lnbmVyJwpTSUxFTkNFRF9TWVNURU1fQ0hFQ0tTID0gW10KU1RBVElDRklMRVNfRElSUyA9ICdEOlxcUFBMQVxcYXNzZXRzJwpTVEFUSUNGSUxFU19GSU5ERVJTID0gWydkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcy5maW5kZXJzLkZpbGVTeXN0ZW1GaW5kZXInLCAnZGphbmdvLmNvbnRyaWIuc3RhdGljZmlsZXMuZmluZGVycy5BcHBEaXJlY3Rvcmllc0ZpbmRlciddClNUQVRJQ0ZJTEVTX1NUT1JBR0UgPSAnZGphbmdvLmNvbnRyaWIuc3RhdGljZmlsZXMuc3RvcmFnZS5TdGF0aWNGaWxlc1N0b3JhZ2UnClNUQVRJQ19ST09UID0gJy9ob21lL2Fzc2V0cycKU1RBVElDX1VSTCA9ICcvYXNzZXRzLycKVEVNUExBVEVTID0gW3snQkFDS0VORCc6ICdkamFuZ28udGVtcGxhdGUuYmFja2VuZHMuZGphbmdvLkRqYW5nb1RlbXBsYXRlcycsICdESVJTJzogW10sICdBUFBfRElSUyc6IFRydWUsICdPUFRJT05TJzogeydjb250ZXh0X3Byb2Nlc3NvcnMnOiBbJ2RqYW5nby50ZW1wbGF0ZS5jb250ZXh0X3Byb2Nlc3NvcnMuZGVidWcnLCAnZGphbmdvLnRlbXBsYXRlLmNvbnRleHRfcHJvY2Vzc29ycy5yZXF1ZXN0JywgJ2RqYW5nby5jb250cmliLmF1dGguY29udGV4dF9wcm9jZXNzb3JzLmF1dGgnLCAnZGphbmdvLmNvbnRyaWIubWVzc2FnZXMuY29udGV4dF9wcm9jZXNzb3JzLm1lc3NhZ2VzJ119fV0KVEVTVF9OT05fU0VSSUFMSVpFRF9BUFBTID0gW10KVEVTVF9SVU5ORVIgPSAnZGphbmdvX25vc2UuTm9zZVRlc3RTdWl0ZVJ1bm5lcicKVEhPVVNBTkRfU0VQQVJBVE9SID0gJywnClRJTUVfRk9STUFUID0gJ1AnClRJTUVfSU5QVVRfRk9STUFUUyA9IFsnJUg6JU06JVMnLCAnJUg6JU06JVMuJWYnLCAnJUg6JU0nXQpUSU1FX1pPTkUgPSAnVVRDJwpVU0VfRVRBR1MgPSBGYWxzZQpVU0VfSTE4TiA9IFRydWUKVVNFX0wxME4gPSBUcnVlClVTRV9USE9VU0FORF9TRVBBUkFUT1IgPSBGYWxzZQpVU0VfVFogPSBUcnVlClVTRV9YX0ZPUldBUkRFRF9IT1NUID0gRmFsc2UKVVNFX1hfRk9SV0FSREVEX1BPUlQgPSBGYWxzZQpXRUJQQUNLX0xPQURFUiA9IHsnREVGQVVMVCc6IHsnQlVORExFX0RJUl9OQU1FJzogJ2J1bmRsZXMvJywgJ1NUQVRTX0ZJTEUnOiAnRDpcXFBQTEFcXHdlYnBhY2stc3RhdHMuanNvbid9fQpXU0dJX0FQUExJQ0FUSU9OID0gJ2thcGUud3NnaS5hcHBsaWNhdGlvbicKWF9GUkFNRV9PUFRJT05TID0gJ1NBTUVPUklHSU4nCllFQVJfTU9OVEhfRk9STUFUID0gJ0YgWScKCgpZb3UncmUgc2VlaW5nIHRoaXMgZXJyb3IgYmVjYXVzZSB5b3UgaGF2ZSBERUJVRyA9IFRydWUgaW4geW91cgpEamFuZ28gc2V0dGluZ3MgZmlsZS4gQ2hhbmdlIHRoYXQgdG8gRmFsc2UsIGFuZCBEamFuZ28gd2lsbApkaXNwbGF5IGEgc3RhbmRhcmQgcGFnZSBnZW5lcmF0ZWQgYnkgdGhlIGhhbmRsZXIgZm9yIHRoaXMgc3RhdHVzIGNvZGUuCgo=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/plain\"}" - } -}, -{ - "model": "silk.response", - "pk": "90b2baa8-e639-4134-ac4e-06c32b62a1a2", - "fields": { - "request": "ce48fc09-aa92-4adb-8bb2-857d8b4427dc", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "90cefc01-0fa2-453d-8b47-3337b5828ef7", - "fields": { - "request": "05e7aa77-3994-4302-acac-e22df0daa344", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPkFkZCBzdHVkZW50IHwgRGphbmdvIHNpdGUgYWRtaW48L3RpdGxlPgo8bGluayByZWw9InN0eWxlc2hlZXQiIHR5cGU9InRleHQvY3NzIiBocmVmPSIvYXNzZXRzL2FkbWluL2Nzcy9iYXNlLmNzcyIgLz4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvZm9ybXMuY3NzIiAvPgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9jb3JlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IvanF1ZXJ5L2pxdWVyeS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvanF1ZXJ5LmluaXQuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2FkbWluL1JlbGF0ZWRPYmplY3RMb29rdXBzLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hY3Rpb25zLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy91cmxpZnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL3ByZXBvcHVsYXRlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IveHJlZ2V4cC94cmVnZXhwLmpzIj48L3NjcmlwdD4KCjxtZXRhIG5hbWU9InJvYm90cyIgY29udGVudD0iTk9ORSxOT0FSQ0hJVkUiIC8+CjwvaGVhZD4KCgo8Ym9keSBjbGFzcz0iIGFwcC1jb3JlIG1vZGVsLXN0dWRlbnQgY2hhbmdlLWZvcm0iCiAgZGF0YS1hZG1pbi11dGMtb2Zmc2V0PSIwIj4KCjwhLS0gQ29udGFpbmVyIC0tPgo8ZGl2IGlkPSJjb250YWluZXIiPgoKICAgIAogICAgPCEtLSBIZWFkZXIgLS0+CiAgICA8ZGl2IGlkPSJoZWFkZXIiPgogICAgICAgIDxkaXYgaWQ9ImJyYW5kaW5nIj4KICAgICAgICAKPGgxIGlkPSJzaXRlLW5hbWUiPjxhIGhyZWY9Ii9hZG1pbi8iPkRqYW5nbyBhZG1pbmlzdHJhdGlvbjwvYT48L2gxPgoKICAgICAgICA8L2Rpdj4KICAgICAgICAKICAgICAgICAKICAgICAgICA8ZGl2IGlkPSJ1c2VyLXRvb2xzIj4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICBXZWxjb21lLAogICAgICAgICAgICAgICAgPHN0cm9uZz5rYXBlPC9zdHJvbmc+LgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvIj5WaWV3IHNpdGU8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL3Bhc3N3b3JkX2NoYW5nZS8iPkNoYW5nZSBwYXNzd29yZDwvYT4gLwogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vbG9nb3V0LyI+TG9nIG91dDwvYT4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgCiAgICA8L2Rpdj4KICAgIDwhLS0gRU5EIEhlYWRlciAtLT4KICAgIAo8ZGl2IGNsYXNzPSJicmVhZGNydW1icyI+CjxhIGhyZWY9Ii9hZG1pbi8iPkhvbWU8L2E+CiZyc2FxdW87IDxhIGhyZWY9Ii9hZG1pbi9jb3JlLyI+Q29yZTwvYT4KJnJzYXF1bzsgPGEgaHJlZj0iL2FkbWluL2NvcmUvc3R1ZGVudC8iPlN0dWRlbnRzPC9hPgomcnNhcXVvOyBBZGQgc3R1ZGVudAo8L2Rpdj4KCiAgICAKCiAgICAKICAgICAgICAKICAgIAoKICAgIDwhLS0gQ29udGVudCAtLT4KICAgIDxkaXYgaWQ9ImNvbnRlbnQiIGNsYXNzPSJjb2xNIj4KICAgICAgICAKICAgICAgICA8aDE+QWRkIHN0dWRlbnQ8L2gxPgogICAgICAgIDxkaXYgaWQ9ImNvbnRlbnQtbWFpbiI+CgoKCjxmb3JtIGVuY3R5cGU9Im11bHRpcGFydC9mb3JtLWRhdGEiIGFjdGlvbj0iIiBtZXRob2Q9InBvc3QiIGlkPSJzdHVkZW50X2Zvcm0iIG5vdmFsaWRhdGU+PGlucHV0IHR5cGU9J2hpZGRlbicgbmFtZT0nY3NyZm1pZGRsZXdhcmV0b2tlbicgdmFsdWU9J0hzQVRoejJRMHZ5Y0J5MnBmNkIzc0dQM0VNWEEwd0FNNnlISXQ1VUxOc0pCWUc0Ull4NnZrbndOQ0gzcGt3d0InIC8+CjxkaXY+CgoKCgogICAgPHAgY2xhc3M9ImVycm9ybm90ZSI+CiAgICBQbGVhc2UgY29ycmVjdCB0aGUgZXJyb3IgYmVsb3cuCiAgICA8L3A+CiAgICAKCgoKCiAgPGZpZWxkc2V0IGNsYXNzPSJtb2R1bGUgYWxpZ25lZCAiPgogICAgCiAgICAKICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImZvcm0tcm93IGZpZWxkLXVzZXIiPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgY2xhc3M9InJlcXVpcmVkIiBmb3I9ImlkX3VzZXIiPlVzZXI6PC9sYWJlbD4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAKPGRpdiBjbGFzcz0icmVsYXRlZC13aWRnZXQtd3JhcHBlciI+CiAgICA8c2VsZWN0IGlkPSJpZF91c2VyIiBuYW1lPSJ1c2VyIiByZXF1aXJlZD4KPG9wdGlvbiB2YWx1ZT0iIj4tLS0tLS0tLS08L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMiIgc2VsZWN0ZWQ9InNlbGVjdGVkIj5mYXJoYW48L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMyI+ZmFyaGFuY29ycDwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSI0Ij5mYXJoYW5zdXBlcjwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIxIj5rYXBlPC9vcHRpb24+Cjwvc2VsZWN0PgogICAgCiAgICAgICAgCiAgICAgICAgPGEgY2xhc3M9InJlbGF0ZWQtd2lkZ2V0LXdyYXBwZXItbGluayBjaGFuZ2UtcmVsYXRlZCIgaWQ9ImNoYW5nZV9pZF91c2VyIgogICAgICAgICAgICBkYXRhLWhyZWYtdGVtcGxhdGU9Ii9hZG1pbi9hdXRoL3VzZXIvX19ma19fL2NoYW5nZS8/X3RvX2ZpZWxkPWlkJmFtcDtfcG9wdXA9MSIKICAgICAgICAgICAgdGl0bGU9IkNoYW5nZSBzZWxlY3RlZCB1c2VyIj4KICAgICAgICAgICAgPGltZyBzcmM9Ii9hc3NldHMvYWRtaW4vaW1nL2ljb24tY2hhbmdlbGluay5zdmciIGFsdD0iQ2hhbmdlIi8+CiAgICAgICAgPC9hPgogICAgICAgIAogICAgICAgIAogICAgICAgIDxhIGNsYXNzPSJyZWxhdGVkLXdpZGdldC13cmFwcGVyLWxpbmsgYWRkLXJlbGF0ZWQiIGlkPSJhZGRfaWRfdXNlciIKICAgICAgICAgICAgaHJlZj0iL2FkbWluL2F1dGgvdXNlci9hZGQvP190b19maWVsZD1pZCZhbXA7X3BvcHVwPTEiCiAgICAgICAgICAgIHRpdGxlPSJBZGQgYW5vdGhlciB1c2VyIj4KICAgICAgICAgICAgPGltZyBzcmM9Ii9hc3NldHMvYWRtaW4vaW1nL2ljb24tYWRkbGluay5zdmciIGFsdD0iQWRkIi8+CiAgICAgICAgPC9hPgogICAgICAgIAogICAgICAgIAogICAgCjwvZGl2PgoKICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC1ucG0iPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgY2xhc3M9InJlcXVpcmVkIiBmb3I9ImlkX25wbSI+TnBtOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgPGlucHV0IGNsYXNzPSJ2SW50ZWdlckZpZWxkIiBpZD0iaWRfbnBtIiBuYW1lPSJucG0iIHR5cGU9InRleHQiIHZhbHVlPSIxNDA2NTcyMzIxIiByZXF1aXJlZCAvPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDwvZGl2PgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImZvcm0tcm93IGZpZWxkLXJlc3VtZSI+CiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXY+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxsYWJlbCBmb3I9ImlkX3Jlc3VtZSI+UmVzdW1lOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgPGlucHV0IGlkPSJpZF9yZXN1bWUiIG5hbWU9InJlc3VtZSIgdHlwZT0iZmlsZSIgLz4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC1waG9uZV9udW1iZXIiPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgZm9yPSJpZF9waG9uZV9udW1iZXIiPlBob25lIG51bWJlcjo8L2xhYmVsPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxpbnB1dCBjbGFzcz0idlRleHRGaWVsZCIgaWQ9ImlkX3Bob25lX251bWJlciIgbWF4bGVuZ3RoPSIxMDAiIG5hbWU9InBob25lX251bWJlciIgdHlwZT0idGV4dCIgdmFsdWU9InlheWF5YSIgLz4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBlcnJvcnMgZmllbGQtYm9va21hcmtlZF92YWNhbmNpZXMiPgogICAgICAgICAgICA8dWwgY2xhc3M9ImVycm9ybGlzdCI+PGxpPlRoaXMgZmllbGQgaXMgcmVxdWlyZWQuPC9saT48L3VsPgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXY+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxsYWJlbCBjbGFzcz0icmVxdWlyZWQiIGZvcj0iaWRfYm9va21hcmtlZF92YWNhbmNpZXMiPkJvb2ttYXJrZWQgdmFjYW5jaWVzOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgCjxkaXYgY2xhc3M9InJlbGF0ZWQtd2lkZ2V0LXdyYXBwZXIiPgogICAgPHNlbGVjdCBtdWx0aXBsZT0ibXVsdGlwbGUiIGlkPSJpZF9ib29rbWFya2VkX3ZhY2FuY2llcyIgbmFtZT0iYm9va21hcmtlZF92YWNhbmNpZXMiIHJlcXVpcmVkPgo8L3NlbGVjdD4KICAgIAogICAgICAgIAogICAgICAgIAogICAgICAgIDxhIGNsYXNzPSJyZWxhdGVkLXdpZGdldC13cmFwcGVyLWxpbmsgYWRkLXJlbGF0ZWQiIGlkPSJhZGRfaWRfYm9va21hcmtlZF92YWNhbmNpZXMiCiAgICAgICAgICAgIGhyZWY9Ii9hZG1pbi9jb3JlL3ZhY2FuY3kvYWRkLz9fdG9fZmllbGQ9aWQmYW1wO19wb3B1cD0xIgogICAgICAgICAgICB0aXRsZT0iQWRkIGFub3RoZXIgdmFjYW5jeSI+CiAgICAgICAgICAgIDxpbWcgc3JjPSIvYXNzZXRzL2FkbWluL2ltZy9pY29uLWFkZGxpbmsuc3ZnIiBhbHQ9IkFkZCIvPgogICAgICAgIDwvYT4KICAgICAgICAKICAgICAgICAKICAgIAo8L2Rpdj4KCiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8cCBjbGFzcz0iaGVscCI+SG9sZCBkb3duICJDb250cm9sIiwgb3IgIkNvbW1hbmQiIG9uIGEgTWFjLCB0byBzZWxlY3QgbW9yZSB0aGFuIG9uZS48L3A+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKPC9maWVsZHNldD4KCgoKCgoKCgoKCgoKCjxkaXYgY2xhc3M9InN1Ym1pdC1yb3ciPgo8aW5wdXQgdHlwZT0ic3VibWl0IiB2YWx1ZT0iU2F2ZSIgY2xhc3M9ImRlZmF1bHQiIG5hbWU9Il9zYXZlIiAvPgoKCjxpbnB1dCB0eXBlPSJzdWJtaXQiIHZhbHVlPSJTYXZlIGFuZCBhZGQgYW5vdGhlciIgbmFtZT0iX2FkZGFub3RoZXIiIC8+CjxpbnB1dCB0eXBlPSJzdWJtaXQiIHZhbHVlPSJTYXZlIGFuZCBjb250aW51ZSBlZGl0aW5nIiBuYW1lPSJfY29udGludWUiIC8+CjwvZGl2PgoKCgogICAgPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiCiAgICAgICAgICAgIGlkPSJkamFuZ28tYWRtaW4tZm9ybS1hZGQtY29uc3RhbnRzIgogICAgICAgICAgICBzcmM9Ii9hc3NldHMvYWRtaW4vanMvY2hhbmdlX2Zvcm0uanMiCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgZGF0YS1tb2RlbC1uYW1lPSJzdHVkZW50IgogICAgICAgICAgICA+CiAgICA8L3NjcmlwdD4KCgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IgogICAgICAgIGlkPSJkamFuZ28tYWRtaW4tcHJlcG9wdWxhdGVkLWZpZWxkcy1jb25zdGFudHMiCiAgICAgICAgc3JjPSIvYXNzZXRzL2FkbWluL2pzL3ByZXBvcHVsYXRlX2luaXQuanMiCiAgICAgICAgZGF0YS1wcmVwb3B1bGF0ZWQtZmllbGRzPSJbXSI+Cjwvc2NyaXB0PgoKCjwvZGl2Pgo8L2Zvcm0+PC9kaXY+CgogICAgICAgIAogICAgICAgIDxiciBjbGFzcz0iY2xlYXIiIC8+CiAgICA8L2Rpdj4KICAgIDwhLS0gRU5EIENvbnRlbnQgLS0+CgogICAgPGRpdiBpZD0iZm9vdGVyIj48L2Rpdj4KPC9kaXY+CjwhLS0gRU5EIENvbnRhaW5lciAtLT4KCjwvYm9keT4KPC9odG1sPgo=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 14:57:06 GMT\", \"Expires\": \"Mon, 27 Mar 2017 14:57:06 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "90e8d6e5-7845-47e1-be19-c249f8cacced", - "fields": { - "request": "c57bc636-c91b-4e51-a6db-46e1487ac3c0", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPlNlbGVjdCBzdHVkZW50IHRvIGNoYW5nZSB8IERqYW5nbyBzaXRlIGFkbWluPC90aXRsZT4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvYmFzZS5jc3MiIC8+CgogIAogIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvYWRtaW4vY3NzL2NoYW5nZWxpc3RzLmNzcyIgLz4KICAKICAKICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KICAKICAKICAKCgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvY29yZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL2pxdWVyeS9qcXVlcnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2pxdWVyeS5pbml0LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hZG1pbi9SZWxhdGVkT2JqZWN0TG9va3Vwcy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvYWN0aW9ucy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdXJsaWZ5LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9wcmVwb3B1bGF0ZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL3hyZWdleHAveHJlZ2V4cC5qcyI+PC9zY3JpcHQ+Cgo8bWV0YSBuYW1lPSJyb2JvdHMiIGNvbnRlbnQ9Ik5PTkUsTk9BUkNISVZFIiAvPgo8L2hlYWQ+CgoKPGJvZHkgY2xhc3M9IiBhcHAtY29yZSBtb2RlbC1zdHVkZW50IGNoYW5nZS1saXN0IgogIGRhdGEtYWRtaW4tdXRjLW9mZnNldD0iMCI+Cgo8IS0tIENvbnRhaW5lciAtLT4KPGRpdiBpZD0iY29udGFpbmVyIj4KCiAgICAKICAgIDwhLS0gSGVhZGVyIC0tPgogICAgPGRpdiBpZD0iaGVhZGVyIj4KICAgICAgICA8ZGl2IGlkPSJicmFuZGluZyI+CiAgICAgICAgCjxoMSBpZD0ic2l0ZS1uYW1lIj48YSBocmVmPSIvYWRtaW4vIj5EamFuZ28gYWRtaW5pc3RyYXRpb248L2E+PC9oMT4KCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgPGRpdiBpZD0idXNlci10b29scyI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgV2VsY29tZSwKICAgICAgICAgICAgICAgIDxzdHJvbmc+a2FwZTwvc3Ryb25nPi4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iLyI+VmlldyBzaXRlPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9wYXNzd29yZF9jaGFuZ2UvIj5DaGFuZ2UgcGFzc3dvcmQ8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2xvZ291dC8iPkxvZyBvdXQ8L2E+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIAogICAgPC9kaXY+CiAgICA8IS0tIEVORCBIZWFkZXIgLS0+CiAgICAKPGRpdiBjbGFzcz0iYnJlYWRjcnVtYnMiPgo8YSBocmVmPSIvYWRtaW4vIj5Ib21lPC9hPgomcnNhcXVvOyA8YSBocmVmPSIvYWRtaW4vY29yZS8iPkNvcmU8L2E+CiZyc2FxdW87IFN0dWRlbnRzCjwvZGl2PgoKICAgIAoKICAgIAogICAgICAgIAogICAgCgogICAgPCEtLSBDb250ZW50IC0tPgogICAgPGRpdiBpZD0iY29udGVudCIgY2xhc3M9ImZsZXgiPgogICAgICAgIAogICAgICAgIDxoMT5TZWxlY3Qgc3R1ZGVudCB0byBjaGFuZ2U8L2gxPgogICAgICAgIAogIDxkaXYgaWQ9ImNvbnRlbnQtbWFpbiI+CiAgICAKICAgICAgICA8dWwgY2xhc3M9Im9iamVjdC10b29scyI+CiAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaT4KICAgICAgICAgICAgICAKICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS9zdHVkZW50L2FkZC8iIGNsYXNzPSJhZGRsaW5rIj4KICAgICAgICAgICAgICAgIEFkZCBzdHVkZW50CiAgICAgICAgICAgICAgPC9hPgogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgIAogICAgICAgIDwvdWw+CiAgICAKICAgIAogICAgPGRpdiBjbGFzcz0ibW9kdWxlIiBpZD0iY2hhbmdlbGlzdCI+CiAgICAgIAoKCiAgICAgIAoKCiAgICAgIAogICAgICAgIAogICAgICAKCiAgICAgIDxmb3JtIGlkPSJjaGFuZ2VsaXN0LWZvcm0iIG1ldGhvZD0icG9zdCIgbm92YWxpZGF0ZT48aW5wdXQgdHlwZT0naGlkZGVuJyBuYW1lPSdjc3JmbWlkZGxld2FyZXRva2VuJyB2YWx1ZT0ndE9xQXpEb2tWajlFdGhrMWRTakZDRTBMRjhPczJqM2JTVXhwTDlnZklnazNRcG10V2pPN3VsSHZEM1VobWpaMCcgLz4KICAgICAgCgogICAgICAKICAgICAgICAgIAogICAgICAgICAgCgoKCiAgICAgICAgICAKICAgICAgCiAgICAgIAoKPHAgY2xhc3M9InBhZ2luYXRvciI+CgowIHN0dWRlbnRzCgoKPC9wPgoKICAgICAgPC9mb3JtPgogICAgPC9kaXY+CiAgPC9kaXY+CgogICAgICAgIAogICAgICAgIDxiciBjbGFzcz0iY2xlYXIiIC8+CiAgICA8L2Rpdj4KICAgIDwhLS0gRU5EIENvbnRlbnQgLS0+CgogICAgPGRpdiBpZD0iZm9vdGVyIj48L2Rpdj4KPC9kaXY+CjwhLS0gRU5EIENvbnRhaW5lciAtLT4KCjwvYm9keT4KPC9odG1sPgo=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 15:21:45 GMT\", \"Expires\": \"Mon, 27 Mar 2017 15:21:45 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "91486e14-ee19-46d0-b854-0ab33509eb0c", - "fields": { - "request": "b7045c15-74c9-4f49-9679-ece11f53f84d", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "9292f79f-5a3a-4432-90ee-57b7f539a642", - "fields": { - "request": "d2f1567f-6cc7-4fa3-917d-79919ad1a7f5", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "92ddd88a-f7c6-47bb-a04e-02af23351176", - "fields": { - "request": "94c0ceb8-c58d-4388-97c9-093116ce8dd8", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPkxvZyBpbiB8IERqYW5nbyBzaXRlIGFkbWluPC90aXRsZT4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvYmFzZS5jc3MiIC8+CjxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvYWRtaW4vY3NzL2xvZ2luLmNzcyIgLz4KCgoKCjxtZXRhIG5hbWU9InJvYm90cyIgY29udGVudD0iTk9ORSxOT0FSQ0hJVkUiIC8+CjwvaGVhZD4KCgo8Ym9keSBjbGFzcz0iIGxvZ2luIgogIGRhdGEtYWRtaW4tdXRjLW9mZnNldD0iMCI+Cgo8IS0tIENvbnRhaW5lciAtLT4KPGRpdiBpZD0iY29udGFpbmVyIj4KCiAgICAKICAgIDwhLS0gSGVhZGVyIC0tPgogICAgPGRpdiBpZD0iaGVhZGVyIj4KICAgICAgICA8ZGl2IGlkPSJicmFuZGluZyI+CiAgICAgICAgCjxoMSBpZD0ic2l0ZS1uYW1lIj48YSBocmVmPSIvYWRtaW4vIj5EamFuZ28gYWRtaW5pc3RyYXRpb248L2E+PC9oMT4KCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICA8L2Rpdj4KICAgIDwhLS0gRU5EIEhlYWRlciAtLT4KICAgIAogICAgCgogICAgCiAgICAgICAgCiAgICAKCiAgICA8IS0tIENvbnRlbnQgLS0+CiAgICA8ZGl2IGlkPSJjb250ZW50IiBjbGFzcz0iY29sTSI+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgCgoKCgo8cCBjbGFzcz0iZXJyb3Jub3RlIj4KICAgIFBsZWFzZSBlbnRlciB0aGUgY29ycmVjdCB1c2VybmFtZSBhbmQgcGFzc3dvcmQgZm9yIGEgc3RhZmYgYWNjb3VudC4gTm90ZSB0aGF0IGJvdGggZmllbGRzIG1heSBiZSBjYXNlLXNlbnNpdGl2ZS4KPC9wPgoKCgo8ZGl2IGlkPSJjb250ZW50LW1haW4iPgoKCgo8Zm9ybSBhY3Rpb249Ii9hZG1pbi9sb2dpbi8/bmV4dD0vYWRtaW4vIiBtZXRob2Q9InBvc3QiIGlkPSJsb2dpbi1mb3JtIj48aW5wdXQgdHlwZT0naGlkZGVuJyBuYW1lPSdjc3JmbWlkZGxld2FyZXRva2VuJyB2YWx1ZT0ndmljRVcwTjBmcGFYdndJTzZyMW00MDhpN3lpU3FaTm85dzZOUllsN0FtNnF4Q2V2bll0dXRlR01RRkNwTG14MycgLz4KICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyI+CiAgICAKICAgIDxsYWJlbCBjbGFzcz0icmVxdWlyZWQiIGZvcj0iaWRfdXNlcm5hbWUiPlVzZXJuYW1lOjwvbGFiZWw+IDxpbnB1dCBhdXRvZm9jdXM9IiIgaWQ9ImlkX3VzZXJuYW1lIiBtYXhsZW5ndGg9IjI1NCIgbmFtZT0idXNlcm5hbWUiIHR5cGU9InRleHQiIHZhbHVlPSJrYXBlIiByZXF1aXJlZCAvPgogIDwvZGl2PgogIDxkaXYgY2xhc3M9ImZvcm0tcm93Ij4KICAgIAogICAgPGxhYmVsIGNsYXNzPSJyZXF1aXJlZCIgZm9yPSJpZF9wYXNzd29yZCI+UGFzc3dvcmQ6PC9sYWJlbD4gPGlucHV0IGlkPSJpZF9wYXNzd29yZCIgbmFtZT0icGFzc3dvcmQiIHR5cGU9InBhc3N3b3JkIiByZXF1aXJlZCAvPgogICAgPGlucHV0IHR5cGU9ImhpZGRlbiIgbmFtZT0ibmV4dCIgdmFsdWU9Ii9hZG1pbi8iIC8+CiAgPC9kaXY+CiAgCiAgCiAgPGRpdiBjbGFzcz0ic3VibWl0LXJvdyI+CiAgICA8bGFiZWw+Jm5ic3A7PC9sYWJlbD48aW5wdXQgdHlwZT0ic3VibWl0IiB2YWx1ZT0iTG9nIGluIiAvPgogIDwvZGl2Pgo8L2Zvcm0+Cgo8L2Rpdj4KCiAgICAgICAgCiAgICAgICAgPGJyIGNsYXNzPSJjbGVhciIgLz4KICAgIDwvZGl2PgogICAgPCEtLSBFTkQgQ29udGVudCAtLT4KCiAgICA8ZGl2IGlkPSJmb290ZXIiPjwvZGl2Pgo8L2Rpdj4KPCEtLSBFTkQgQ29udGFpbmVyIC0tPgoKPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 14:33:06 GMT\", \"Expires\": \"Mon, 27 Mar 2017 14:33:06 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "955a047c-8652-4d1e-ac8c-089f9db3e8a3", - "fields": { - "request": "31a191a8-875a-4879-ad6f-eda4ac78e205", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "95604e5c-8889-4982-9fa3-146ed816b4d1", - "fields": { - "request": "9db35b95-a73b-4004-9faf-21a4c92fc468", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPlNpdGUgYWRtaW5pc3RyYXRpb24gfCBEamFuZ28gc2l0ZSBhZG1pbjwvdGl0bGU+CjxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvYWRtaW4vY3NzL2Jhc2UuY3NzIiAvPgo8bGluayByZWw9InN0eWxlc2hlZXQiIHR5cGU9InRleHQvY3NzIiBocmVmPSIvYXNzZXRzL2FkbWluL2Nzcy9kYXNoYm9hcmQuY3NzIiAvPgoKCjxtZXRhIG5hbWU9InJvYm90cyIgY29udGVudD0iTk9ORSxOT0FSQ0hJVkUiIC8+CjwvaGVhZD4KCgo8Ym9keSBjbGFzcz0iIGRhc2hib2FyZCIKICBkYXRhLWFkbWluLXV0Yy1vZmZzZXQ9IjAiPgoKPCEtLSBDb250YWluZXIgLS0+CjxkaXYgaWQ9ImNvbnRhaW5lciI+CgogICAgCiAgICA8IS0tIEhlYWRlciAtLT4KICAgIDxkaXYgaWQ9ImhlYWRlciI+CiAgICAgICAgPGRpdiBpZD0iYnJhbmRpbmciPgogICAgICAgIAo8aDEgaWQ9InNpdGUtbmFtZSI+PGEgaHJlZj0iL2FkbWluLyI+RGphbmdvIGFkbWluaXN0cmF0aW9uPC9hPjwvaDE+CgogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIDxkaXYgaWQ9InVzZXItdG9vbHMiPgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIFdlbGNvbWUsCiAgICAgICAgICAgICAgICA8c3Ryb25nPmthcGU8L3N0cm9uZz4uCiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii8iPlZpZXcgc2l0ZTwvYT4gLwogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vcGFzc3dvcmRfY2hhbmdlLyI+Q2hhbmdlIHBhc3N3b3JkPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9sb2dvdXQvIj5Mb2cgb3V0PC9hPgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgICAgICAKICAgICAgICAKICAgICAgICAKICAgIDwvZGl2PgogICAgPCEtLSBFTkQgSGVhZGVyIC0tPgogICAgCiAgICAKCiAgICAKICAgICAgICAKICAgIAoKICAgIDwhLS0gQ29udGVudCAtLT4KICAgIDxkaXYgaWQ9ImNvbnRlbnQiIGNsYXNzPSJjb2xNUyI+CiAgICAgICAgCiAgICAgICAgPGgxPlNpdGUgYWRtaW5pc3RyYXRpb248L2gxPgogICAgICAgIAo8ZGl2IGlkPSJjb250ZW50LW1haW4iPgoKCiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJhcHAtYXV0aCBtb2R1bGUiPgogICAgICAgIDx0YWJsZT4KICAgICAgICA8Y2FwdGlvbj4KICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2F1dGgvIiBjbGFzcz0ic2VjdGlvbiIgdGl0bGU9Ik1vZGVscyBpbiB0aGUgQXV0aGVudGljYXRpb24gYW5kIEF1dGhvcml6YXRpb24gYXBwbGljYXRpb24iPkF1dGhlbnRpY2F0aW9uIGFuZCBBdXRob3JpemF0aW9uPC9hPgogICAgICAgIDwvY2FwdGlvbj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1ncm91cCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL2dyb3VwLyI+R3JvdXBzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvZ3JvdXAvYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL2dyb3VwLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC11c2VyIj4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8iPlVzZXJzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgPC90YWJsZT4KICAgICAgICA8L2Rpdj4KICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImFwcC1jb3JlIG1vZHVsZSI+CiAgICAgICAgPHRhYmxlPgogICAgICAgIDxjYXB0aW9uPgogICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS8iIGNsYXNzPSJzZWN0aW9uIiB0aXRsZT0iTW9kZWxzIGluIHRoZSBDb3JlIGFwcGxpY2F0aW9uIj5Db3JlPC9hPgogICAgICAgIDwvY2FwdGlvbj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1hcHBsaWNhdGlvbiI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL2FwcGxpY2F0aW9uLyI+QXBwbGljYXRpb25zPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvYXBwbGljYXRpb24vYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL2FwcGxpY2F0aW9uLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1jb21wYW55Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8iPkNvbXBhbnlzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgICAgIDx0ciBjbGFzcz0ibW9kZWwtc3R1ZGVudCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvIj5TdHVkZW50czwvYT48L3RoPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvIiBjbGFzcz0iY2hhbmdlbGluayI+Q2hhbmdlPC9hPjwvdGQ+CiAgICAgICAgICAgIAogICAgICAgICAgICA8L3RyPgogICAgICAgIAogICAgICAgICAgICA8dHIgY2xhc3M9Im1vZGVsLXN1cGVydmlzb3IiPgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0aCBzY29wZT0icm93Ij48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yLyI+U3VwZXJ2aXNvcnM8L2E+PC90aD4KICAgICAgICAgICAgCgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0ZD48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yL2FkZC8iIGNsYXNzPSJhZGRsaW5rIj5BZGQ8L2E+PC90ZD4KICAgICAgICAgICAgCgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0ZD48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC12YWNhbmN5Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS8iPlZhY2FuY3lzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgPC90YWJsZT4KICAgICAgICA8L2Rpdj4KICAgIAoKPC9kaXY+CgogICAgICAgIAo8ZGl2IGlkPSJjb250ZW50LXJlbGF0ZWQiPgogICAgPGRpdiBjbGFzcz0ibW9kdWxlIiBpZD0icmVjZW50LWFjdGlvbnMtbW9kdWxlIj4KICAgICAgICA8aDI+UmVjZW50IGFjdGlvbnM8L2gyPgogICAgICAgIDxoMz5NeSBhY3Rpb25zPC9oMz4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgPHVsIGNsYXNzPSJhY3Rpb25saXN0Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaSBjbGFzcz0iYWRkbGluayI+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS9hcHBsaWNhdGlvbi8xL2NoYW5nZS8iPkFwcGxpY2F0aW9uIG9iamVjdDwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5BcHBsaWNhdGlvbjwvc3Bhbj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgICAgPGxpIGNsYXNzPSJhZGRsaW5rIj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9jb3JlL3ZhY2FuY3kvMS9jaGFuZ2UvIj5WYWNhbmN5IG9iamVjdDwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5WYWNhbmN5PC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8bGkgY2xhc3M9ImFkZGxpbmsiPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2NvcmUvc3VwZXJ2aXNvci8xL2NoYW5nZS8iPlN1cGVydmlzb3Igb2JqZWN0PC9hPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YnIvPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9Im1pbmkgcXVpZXQiPlN1cGVydmlzb3I8L3NwYW4+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgPC9saT4KICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaSBjbGFzcz0iYWRkbGluayI+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS9zdHVkZW50LzEvY2hhbmdlLyI+U3R1ZGVudCBvYmplY3Q8L2E+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxici8+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz0ibWluaSBxdWlldCI+U3R1ZGVudDwvc3Bhbj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgICAgPGxpIGNsYXNzPSJhZGRsaW5rIj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9jb3JlL2NvbXBhbnkvMi9jaGFuZ2UvIj5Db21wYW55IG9iamVjdDwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5Db21wYW55PC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8bGkgY2xhc3M9ImRlbGV0ZWxpbmsiPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgQ29tcGFueSBvYmplY3QKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5Db21wYW55PC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8bGkgY2xhc3M9ImFkZGxpbmsiPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci80L2NoYW5nZS8iPmZhcmhhbnN1cGVyPC9hPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YnIvPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9Im1pbmkgcXVpZXQiPlVzZXI8L3NwYW4+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgPC9saT4KICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaSBjbGFzcz0iYWRkbGluayI+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vYXV0aC91c2VyLzMvY2hhbmdlLyI+ZmFyaGFuY29ycDwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5Vc2VyPC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8bGkgY2xhc3M9ImFkZGxpbmsiPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8yL2NoYW5nZS8iPmZhcmhhbjwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5Vc2VyPC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8bGkgY2xhc3M9ImFkZGxpbmsiPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8xL2NoYW5nZS8iPkNvbXBhbnkgb2JqZWN0PC9hPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YnIvPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9Im1pbmkgcXVpZXQiPkNvbXBhbnk8L3NwYW4+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgPC9saT4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdWw+CiAgICAgICAgICAgIAogICAgPC9kaXY+CjwvZGl2PgoKICAgICAgICA8YnIgY2xhc3M9ImNsZWFyIiAvPgogICAgPC9kaXY+CiAgICA8IS0tIEVORCBDb250ZW50IC0tPgoKICAgIDxkaXYgaWQ9ImZvb3RlciI+PC9kaXY+CjwvZGl2Pgo8IS0tIEVORCBDb250YWluZXIgLS0+Cgo8L2JvZHk+CjwvaHRtbD4K", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 17:17:56 GMT\", \"Expires\": \"Mon, 27 Mar 2017 17:17:56 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\"}" - } -}, -{ - "model": "silk.response", - "pk": "97eeec70-94c5-477d-b339-4096c707596d", - "fields": { - "request": "7db10c97-ac38-4b1f-b612-7d6fb97fda65", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "981dc91f-a625-4039-97ed-0f4deb2a5dfb", - "fields": { - "request": "9d4b6c59-10b5-438e-b5b3-311a820f2847", - "status_code": 500, - "raw_body": "QXR0cmlidXRlRXJyb3IgYXQgL2FwaS9zdHVkZW50cy8zL2Jvb2ttYXJrZWQtdmFjYW5jaWVzLwonbGlzdCcgb2JqZWN0IGhhcyBubyBhdHRyaWJ1dGUgJ2lkJwoKUmVxdWVzdCBNZXRob2Q6IFBPU1QKUmVxdWVzdCBVUkw6IGh0dHA6Ly8xMjcuMC4wLjE6ODAwMC9hcGkvc3R1ZGVudHMvMy9ib29rbWFya2VkLXZhY2FuY2llcy8KRGphbmdvIFZlcnNpb246IDEuMTAuNQpQeXRob24gRXhlY3V0YWJsZTogQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXHB5dGhvbi5leGUKUHl0aG9uIFZlcnNpb246IDMuNi4wClB5dGhvbiBQYXRoOiBbJ0Q6XFxQUExBJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXHB5dGhvbjM2LnppcCcsICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyXFxETExzJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXGxpYicsICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXGxpYlxcc2l0ZS1wYWNrYWdlcyddClNlcnZlciB0aW1lOiBNb24sIDI3IE1hciAyMDE3IDE1OjU2OjExICswMDAwCkluc3RhbGxlZCBBcHBsaWNhdGlvbnM6ClsnZGphbmdvLmNvbnRyaWIuYWRtaW4nLAogJ2RqYW5nby5jb250cmliLmF1dGgnLAogJ2RqYW5nby5jb250cmliLmNvbnRlbnR0eXBlcycsCiAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMnLAogJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzJywKICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcycsCiAnd2VicGFja19sb2FkZXInLAogJ2NvcmUnLAogJ3Jlc3RfZnJhbWV3b3JrJywKICdkamFuZ29fbm9zZScsCiAncmVzdF9mcmFtZXdvcmtfc3dhZ2dlcicsCiAnc2lsayddCkluc3RhbGxlZCBNaWRkbGV3YXJlOgpbJ2RqYW5nby5taWRkbGV3YXJlLnNlY3VyaXR5LlNlY3VyaXR5TWlkZGxld2FyZScsCiAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMubWlkZGxld2FyZS5TZXNzaW9uTWlkZGxld2FyZScsCiAnZGphbmdvLm1pZGRsZXdhcmUuY29tbW9uLkNvbW1vbk1pZGRsZXdhcmUnLAogJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5hdXRoLm1pZGRsZXdhcmUuQXV0aGVudGljYXRpb25NaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5tZXNzYWdlcy5taWRkbGV3YXJlLk1lc3NhZ2VNaWRkbGV3YXJlJywKICdkamFuZ28ubWlkZGxld2FyZS5jbGlja2phY2tpbmcuWEZyYW1lT3B0aW9uc01pZGRsZXdhcmUnLAogJ3NpbGsubWlkZGxld2FyZS5TaWxreU1pZGRsZXdhcmUnXQoKClRyYWNlYmFjazogIAoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXGRqYW5nb1xjb3JlXGhhbmRsZXJzXGV4Y2VwdGlvbi5weSIgaW4gaW5uZXIKICAzOS4gICAgICAgICAgICAgcmVzcG9uc2UgPSBnZXRfcmVzcG9uc2UocmVxdWVzdCkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cY29yZVxoYW5kbGVyc1xiYXNlLnB5IiBpbiBfZ2V0X3Jlc3BvbnNlCiAgMTg3LiAgICAgICAgICAgICAgICAgcmVzcG9uc2UgPSBzZWxmLnByb2Nlc3NfZXhjZXB0aW9uX2J5X21pZGRsZXdhcmUoZSwgcmVxdWVzdCkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cY29yZVxoYW5kbGVyc1xiYXNlLnB5IiBpbiBfZ2V0X3Jlc3BvbnNlCiAgMTg1LiAgICAgICAgICAgICAgICAgcmVzcG9uc2UgPSB3cmFwcGVkX2NhbGxiYWNrKHJlcXVlc3QsICpjYWxsYmFja19hcmdzLCAqKmNhbGxiYWNrX2t3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cdmlld3NcZGVjb3JhdG9yc1xjc3JmLnB5IiBpbiB3cmFwcGVkX3ZpZXcKICA1OC4gICAgICAgICByZXR1cm4gdmlld19mdW5jKCphcmdzLCAqKmt3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3c2V0cy5weSIgaW4gdmlldwogIDgzLiAgICAgICAgICAgICByZXR1cm4gc2VsZi5kaXNwYXRjaChyZXF1ZXN0LCAqYXJncywgKiprd2FyZ3MpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNccmVzdF9mcmFtZXdvcmtcdmlld3MucHkiIGluIGRpc3BhdGNoCiAgNDgzLiAgICAgICAgICAgICByZXNwb25zZSA9IHNlbGYuaGFuZGxlX2V4Y2VwdGlvbihleGMpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNccmVzdF9mcmFtZXdvcmtcdmlld3MucHkiIGluIGhhbmRsZV9leGNlcHRpb24KICA0NDMuICAgICAgICAgICAgIHNlbGYucmFpc2VfdW5jYXVnaHRfZXhjZXB0aW9uKGV4YykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3cy5weSIgaW4gZGlzcGF0Y2gKICA0ODAuICAgICAgICAgICAgIHJlc3BvbnNlID0gaGFuZGxlcihyZXF1ZXN0LCAqYXJncywgKiprd2FyZ3MpCgpGaWxlICJEOlxQUExBXGNvcmVcdmlld3NcYWNjb3VudHMucHkiIGluIGJvb2ttYXJrX3ZhY2FuY2llcwogIDMwLiAgICAgICAgIHZhY2FuY3kgPSBnZXRfb2JqZWN0X29yXzQwNChWYWNhbmN5Lm9iamVjdHMuYWxsKCksIHBrPXJlcXVlc3QuZGF0YS5pZCkKCkV4Y2VwdGlvbiBUeXBlOiBBdHRyaWJ1dGVFcnJvciBhdCAvYXBpL3N0dWRlbnRzLzMvYm9va21hcmtlZC12YWNhbmNpZXMvCkV4Y2VwdGlvbiBWYWx1ZTogJ2xpc3QnIG9iamVjdCBoYXMgbm8gYXR0cmlidXRlICdpZCcKUmVxdWVzdCBpbmZvcm1hdGlvbjoKVVNFUjoga2FwZQoKR0VUOiBObyBHRVQgZGF0YQoKUE9TVDogTm8gUE9TVCBkYXRhCgpGSUxFUzogTm8gRklMRVMgZGF0YQoKQ09PS0lFUzoKc2Vzc2lvbmlkID0gJ2JsdDg3N2c1ZmptdWN4eTNkZDV1eGNpemF2YjlvcG92Jwpjc3JmdG9rZW4gPSAnMUVFUDJTd0t0MUs5UWJXbkZQU3lXUElpYnRPN01BYVZxS0xFZW9vRmdZVnlkallQb2duME93cDI5b1VXNkE2SycKCk1FVEE6CkFMTFVTRVJTUFJPRklMRSA9ICdDOlxcUHJvZ3JhbURhdGEnCkFQUERBVEEgPSAnQzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmcnCkNPTU1PTlBST0dSQU1GSUxFUyA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcQ29tbW9uIEZpbGVzJwpDT01NT05QUk9HUkFNRklMRVMoWDg2KSA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcQ29tbW9uIEZpbGVzJwpDT01NT05QUk9HUkFNVzY0MzIgPSAnQzpcXFByb2dyYW0gRmlsZXNcXENvbW1vbiBGaWxlcycKQ09NUFVURVJOQU1FID0gJ0ZBUkhBTicKQ09NU1BFQyA9ICdDOlxcV0lORE9XU1xcc3lzdGVtMzJcXGNtZC5leGUnCkNPTlRFTlRfTEVOR1RIID0gJzE0NycKQ09OVEVOVF9UWVBFID0gJ2FwcGxpY2F0aW9uL2pzb24nCkNTUkZfQ09PS0lFID0gJzFFRVAyU3dLdDFLOVFiV25GUFN5V1BJaWJ0TzdNQWFWcUtMRWVvb0ZnWVZ5ZGpZUG9nbjBPd3AyOW9VVzZBNksnCkRKQU5HT19TRVRUSU5HU19NT0RVTEUgPSAna2FwZS5zZXR0aW5ncycKRlBTX0JST1dTRVJfQVBQX1BST0ZJTEVfU1RSSU5HID0gJ0ludGVybmV0IEV4cGxvcmVyJwpGUFNfQlJPV1NFUl9VU0VSX1BST0ZJTEVfU1RSSU5HID0gJ0RlZmF1bHQnCkZQX05PX0hPU1RfQ0hFQ0sgPSAnTk8nCkdBVEVXQVlfSU5URVJGQUNFID0gJ0NHSS8xLjEnCkhPTUVEUklWRSA9ICdDOicKSE9NRVBBVEggPSAnXFxVc2Vyc1xcZmFyaGFfMDAwJwpIVFRQX0FDQ0VQVCA9ICdhcHBsaWNhdGlvbi9qc29uJwpIVFRQX0FDQ0VQVF9FTkNPRElORyA9ICdnemlwLCBkZWZsYXRlLCBicicKSFRUUF9BQ0NFUFRfTEFOR1VBR0UgPSAnaWQtSUQsaWQ7cT0wLjgsZW4tVVM7cT0wLjYsZW47cT0wLjQnCkhUVFBfQ09OTkVDVElPTiA9ICdrZWVwLWFsaXZlJwpIVFRQX0NPT0tJRSA9ICdzZXNzaW9uaWQ9Ymx0ODc3ZzVmam11Y3h5M2RkNXV4Y2l6YXZiOW9wb3Y7IGNzcmZ0b2tlbj0xRUVQMlN3S3QxSzlRYlduRlBTeVdQSWlidE83TUFhVnFLTEVlb29GZ1lWeWRqWVBvZ24wT3dwMjlvVVc2QTZLJwpIVFRQX0hPU1QgPSAnMTI3LjAuMC4xOjgwMDAnCkhUVFBfT1JJR0lOID0gJ2h0dHA6Ly8xMjcuMC4wLjE6ODAwMCcKSFRUUF9SRUZFUkVSID0gJ2h0dHA6Ly8xMjcuMC4wLjE6ODAwMC9hcGknCkhUVFBfVVNFUl9BR0VOVCA9ICdNb3ppbGxhLzUuMCAoV2luZG93cyBOVCAxMC4wOyBXT1c2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzU2LjAuMjkyNC44NyBTYWZhcmkvNTM3LjM2JwpIVFRQX1hfQ1NSRlRPS0VOID0gJ2pxOTFCdUY1ZTVSN1NqTUZSYzJUTmZ2V1U4bERPNnd5SXdnUU4weDAxMjJ3ZnJPN0FEeGxGV2NHUzNyczg2c24nCkxPQ0FMQVBQREFUQSA9ICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWwnCkxPR09OU0VSVkVSID0gJ1xcXFxGQVJIQU4nCk5VTUJFUl9PRl9QUk9DRVNTT1JTID0gJzInCk9ORURSSVZFID0gJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxPbmVEcml2ZScKT1MgPSAnV2luZG93c19OVCcKUEFUSCA9ICdDOlxcUHJvZ3JhbURhdGFcXE9yYWNsZVxcSmF2YVxcamF2YXBhdGg7QzpcXFByb2dyYW0gRmlsZXNcXEhhc2tlbGxcXGJpbjtDOlxcUHJvZ3JhbSBGaWxlc1xcSGFza2VsbCBQbGF0Zm9ybVxcNy4xMC4zXFxsaWJcXGV4dHJhbGlic1xcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxIYXNrZWxsIFBsYXRmb3JtXFw3LjEwLjNcXGJpbjtDOlxcV0lORE9XU1xcc3lzdGVtMzI7QzpcXFdJTkRPV1M7QzpcXFdJTkRPV1NcXFN5c3RlbTMyXFxXYmVtO0M6XFxXSU5ET1dTXFxTeXN0ZW0zMlxcV2luZG93c1Bvd2VyU2hlbGxcXHYxLjBcXDtDOlxcUHJvZ3JhbSBGaWxlc1xcSGFza2VsbCBQbGF0Zm9ybVxcNy4xMC4zXFxtaW5nd1xcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxKYXZhXFxqZGsxLjguMF83N1xcYmluO0M6XFxjeWd3aW42NFxcYmluOyVsb2NhbGFwcGRhdGElXFxNaWNyb3NvZnRcXFdpbmRvd3NBcHBzO0Q6XFxYQU1QUFxccGhwO0M6XFxQcm9ncmFtIEZpbGVzXFxHaXRcXGNtZDtDOlxceGFtcHBcXHBocDtDOlxcUHJvZ3JhbURhdGFcXENvbXBvc2VyU2V0dXBcXGJpbjtDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcbm9kZWpzXFw7QzpcXFByb2dyYW0gRmlsZXNcXFBvc3RncmVTUUxcXDkuNlxcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxNQVRMQUJcXFIyMDE3YVxcYmluO0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXFNjcmlwdHNcXDtDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyXFw7QzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmdcXGNhYmFsXFxiaW47RDpcXFhBTVBQXFxwaHA7QzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmdcXENvbXBvc2VyXFx2ZW5kb3JcXGJpbjtDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXE1pY3Jvc29mdFxcV2luZG93c0FwcHM7QzpcXHB5dGhvbi0zLjYuMCcKUEFUSEVYVCA9ICcuQ09NOy5FWEU7LkJBVDsuQ01EOy5WQlM7LlZCRTsuSlM7LkpTRTsuV1NGOy5XU0g7Lk1TQycKUEFUSF9JTkZPID0gJy9hcGkvc3R1ZGVudHMvMy9ib29rbWFya2VkLXZhY2FuY2llcy8nClBST0NFU1NPUl9BUkNISVRFQ1RVUkUgPSAneDg2JwpQUk9DRVNTT1JfQVJDSElURVc2NDMyID0gJ0FNRDY0JwpQUk9DRVNTT1JfSURFTlRJRklFUiA9ICdJbnRlbDY0IEZhbWlseSA2IE1vZGVsIDU4IFN0ZXBwaW5nIDksIEdlbnVpbmVJbnRlbCcKUFJPQ0VTU09SX0xFVkVMID0gJzYnClBST0NFU1NPUl9SRVZJU0lPTiA9ICczYTA5JwpQUk9HUkFNREFUQSA9ICdDOlxcUHJvZ3JhbURhdGEnClBST0dSQU1GSUxFUyA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KScKUFJPR1JBTUZJTEVTKFg4NikgPSAnQzpcXFByb2dyYW0gRmlsZXMgKHg4NiknClBST0dSQU1XNjQzMiA9ICdDOlxcUHJvZ3JhbSBGaWxlcycKUFJPTVBUID0gJyRQJEcnClBTTU9EVUxFUEFUSCA9ICdDOlxcV0lORE9XU1xcc3lzdGVtMzJcXFdpbmRvd3NQb3dlclNoZWxsXFx2MS4wXFxNb2R1bGVzXFwnClBVQkxJQyA9ICdDOlxcVXNlcnNcXFB1YmxpYycKUVVFUllfU1RSSU5HID0gJycKUkVNT1RFX0FERFIgPSAnMTI3LjAuMC4xJwpSRU1PVEVfSE9TVCA9ICcnClJFUVVFU1RfTUVUSE9EID0gJ1BPU1QnClJVTl9NQUlOID0gJ3RydWUnClNDUklQVF9OQU1FID0gJycKU0VSVkVSX05BTUUgPSAnRmFyaGFuJwpTRVJWRVJfUE9SVCA9ICc4MDAwJwpTRVJWRVJfUFJPVE9DT0wgPSAnSFRUUC8xLjEnClNFUlZFUl9TT0ZUV0FSRSA9ICdXU0dJU2VydmVyLzAuMicKU0VTU0lPTk5BTUUgPSAnQ29uc29sZScKU1lTVEVNRFJJVkUgPSAnQzonClNZU1RFTVJPT1QgPSAnQzpcXFdJTkRPV1MnClRFTVAgPSAnQzpcXFVzZXJzXFxGQVJIQV9+MVxcQXBwRGF0YVxcTG9jYWxcXFRlbXAnClRNUCA9ICdDOlxcVXNlcnNcXEZBUkhBX34xXFxBcHBEYXRhXFxMb2NhbFxcVGVtcCcKVVNFUkRPTUFJTiA9ICdGYXJoYW4nClVTRVJET01BSU5fUk9BTUlOR1BST0ZJTEUgPSAnRmFyaGFuJwpVU0VSTkFNRSA9ICdGYXJoYW4gRmFyYXNkYWsnClVTRVJQUk9GSUxFID0gJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwJwpWQk9YX01TSV9JTlNUQUxMX1BBVEggPSAnQzpcXFByb2dyYW0gRmlsZXNcXE9yYWNsZVxcVmlydHVhbEJveFxcJwpXSU5ESVIgPSAnQzpcXFdJTkRPV1MnCndzZ2kuZXJyb3JzID0gPF9pby5UZXh0SU9XcmFwcGVyIG5hbWU9JzxzdGRlcnI+JyBtb2RlPSd3JyBlbmNvZGluZz0ndXRmLTgnPgp3c2dpLmZpbGVfd3JhcHBlciA9ICcnCndzZ2kuaW5wdXQgPSA8X2lvLkJ1ZmZlcmVkUmVhZGVyIG5hbWU9MTgwND4Kd3NnaS5tdWx0aXByb2Nlc3MgPSBGYWxzZQp3c2dpLm11bHRpdGhyZWFkID0gVHJ1ZQp3c2dpLnJ1bl9vbmNlID0gRmFsc2UKd3NnaS51cmxfc2NoZW1lID0gJ2h0dHAnCndzZ2kudmVyc2lvbiA9IAoKU2V0dGluZ3M6ClVzaW5nIHNldHRpbmdzIG1vZHVsZSBrYXBlLnNldHRpbmdzCkFCU09MVVRFX1VSTF9PVkVSUklERVMgPSB7fQpBRE1JTlMgPSBbXQpBTExPV0VEX0hPU1RTID0gWydib3QucmVjcnVpdC5pZCcsICcxMDQuMjM2Ljc2LjE2MScsICdsb2NhbGhvc3QnLCAnMTI3LjAuMC4xJ10KQVBQRU5EX1NMQVNIID0gVHJ1ZQpBVVRIRU5USUNBVElPTl9CQUNLRU5EUyA9IFsnZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQnXQpBVVRIX1BBU1NXT1JEX1ZBTElEQVRPUlMgPSAnKioqKioqKioqKioqKioqKioqKionCkFVVEhfVVNFUl9NT0RFTCA9ICdhdXRoLlVzZXInCkJBU0VfRElSID0gJ0Q6XFxQUExBJwpDQUNIRVMgPSB7J2RlZmF1bHQnOiB7J0JBQ0tFTkQnOiAnZGphbmdvLmNvcmUuY2FjaGUuYmFja2VuZHMubG9jbWVtLkxvY01lbUNhY2hlJ319CkNBQ0hFX01JRERMRVdBUkVfQUxJQVMgPSAnZGVmYXVsdCcKQ0FDSEVfTUlERExFV0FSRV9LRVlfUFJFRklYID0gJyoqKioqKioqKioqKioqKioqKioqJwpDQUNIRV9NSURETEVXQVJFX1NFQ09ORFMgPSA2MDAKQ1NSRl9DT09LSUVfQUdFID0gMzE0NDk2MDAKQ1NSRl9DT09LSUVfRE9NQUlOID0gTm9uZQpDU1JGX0NPT0tJRV9IVFRQT05MWSA9IEZhbHNlCkNTUkZfQ09PS0lFX05BTUUgPSAnY3NyZnRva2VuJwpDU1JGX0NPT0tJRV9QQVRIID0gJy8nCkNTUkZfQ09PS0lFX1NFQ1VSRSA9IEZhbHNlCkNTUkZfRkFJTFVSRV9WSUVXID0gJ2RqYW5nby52aWV3cy5jc3JmLmNzcmZfZmFpbHVyZScKQ1NSRl9IRUFERVJfTkFNRSA9ICdIVFRQX1hfQ1NSRlRPS0VOJwpDU1JGX1RSVVNURURfT1JJR0lOUyA9IFtdCkRBVEFCQVNFUyA9IHsnZGVmYXVsdCc6IHsnRU5HSU5FJzogJ2RqYW5nby5kYi5iYWNrZW5kcy5wb3N0Z3Jlc3FsX3BzeWNvcGcyJywgJ05BTUUnOiAna2FwZScsICdVU0VSJzogJ2thcGUnLCAnUEFTU1dPUkQnOiAnKioqKioqKioqKioqKioqKioqKionLCAnSE9TVCc6ICdsb2NhbGhvc3QnLCAnUE9SVCc6ICcnLCAnQVRPTUlDX1JFUVVFU1RTJzogRmFsc2UsICdBVVRPQ09NTUlUJzogVHJ1ZSwgJ0NPTk5fTUFYX0FHRSc6IDAsICdPUFRJT05TJzoge30sICdUSU1FX1pPTkUnOiBOb25lLCAnVEVTVCc6IHsnQ0hBUlNFVCc6IE5vbmUsICdDT0xMQVRJT04nOiBOb25lLCAnTkFNRSc6IE5vbmUsICdNSVJST1InOiBOb25lfX19CkRBVEFCQVNFX1JPVVRFUlMgPSBbXQpEQVRBX1VQTE9BRF9NQVhfTUVNT1JZX1NJWkUgPSAyNjIxNDQwCkRBVEFfVVBMT0FEX01BWF9OVU1CRVJfRklFTERTID0gMTAwMApEQVRFVElNRV9GT1JNQVQgPSAnTiBqLCBZLCBQJwpEQVRFVElNRV9JTlBVVF9GT1JNQVRTID0gWyclWS0lbS0lZCAlSDolTTolUycsICclWS0lbS0lZCAlSDolTTolUy4lZicsICclWS0lbS0lZCAlSDolTScsICclWS0lbS0lZCcsICclbS8lZC8lWSAlSDolTTolUycsICclbS8lZC8lWSAlSDolTTolUy4lZicsICclbS8lZC8lWSAlSDolTScsICclbS8lZC8lWScsICclbS8lZC8leSAlSDolTTolUycsICclbS8lZC8leSAlSDolTTolUy4lZicsICclbS8lZC8leSAlSDolTScsICclbS8lZC8leSddCkRBVEVfRk9STUFUID0gJ04gaiwgWScKREFURV9JTlBVVF9GT1JNQVRTID0gWyclWS0lbS0lZCcsICclbS8lZC8lWScsICclbS8lZC8leScsICclYiAlZCAlWScsICclYiAlZCwgJVknLCAnJWQgJWIgJVknLCAnJWQgJWIsICVZJywgJyVCICVkICVZJywgJyVCICVkLCAlWScsICclZCAlQiAlWScsICclZCAlQiwgJVknXQpERUJVRyA9IFRydWUKREVCVUdfUFJPUEFHQVRFX0VYQ0VQVElPTlMgPSBGYWxzZQpERUNJTUFMX1NFUEFSQVRPUiA9ICcuJwpERUZBVUxUX0NIQVJTRVQgPSAndXRmLTgnCkRFRkFVTFRfQ09OVEVOVF9UWVBFID0gJ3RleHQvaHRtbCcKREVGQVVMVF9FWENFUFRJT05fUkVQT1JURVJfRklMVEVSID0gJ2RqYW5nby52aWV3cy5kZWJ1Zy5TYWZlRXhjZXB0aW9uUmVwb3J0ZXJGaWx0ZXInCkRFRkFVTFRfRklMRV9TVE9SQUdFID0gJ2RqYW5nby5jb3JlLmZpbGVzLnN0b3JhZ2UuRmlsZVN5c3RlbVN0b3JhZ2UnCkRFRkFVTFRfRlJPTV9FTUFJTCA9ICd3ZWJtYXN0ZXJAbG9jYWxob3N0JwpERUZBVUxUX0lOREVYX1RBQkxFU1BBQ0UgPSAnJwpERUZBVUxUX1RBQkxFU1BBQ0UgPSAnJwpESVNBTExPV0VEX1VTRVJfQUdFTlRTID0gW10KRU1BSUxfQkFDS0VORCA9ICdkamFuZ28uY29yZS5tYWlsLmJhY2tlbmRzLnNtdHAuRW1haWxCYWNrZW5kJwpFTUFJTF9IT1NUID0gJ2xvY2FsaG9zdCcKRU1BSUxfSE9TVF9QQVNTV09SRCA9ICcqKioqKioqKioqKioqKioqKioqKicKRU1BSUxfSE9TVF9VU0VSID0gJycKRU1BSUxfUE9SVCA9IDI1CkVNQUlMX1NTTF9DRVJURklMRSA9IE5vbmUKRU1BSUxfU1NMX0tFWUZJTEUgPSAnKioqKioqKioqKioqKioqKioqKionCkVNQUlMX1NVQkpFQ1RfUFJFRklYID0gJ1tEamFuZ29dICcKRU1BSUxfVElNRU9VVCA9IE5vbmUKRU1BSUxfVVNFX1NTTCA9IEZhbHNlCkVNQUlMX1VTRV9UTFMgPSBGYWxzZQpGSUxFX0NIQVJTRVQgPSAndXRmLTgnCkZJTEVfVVBMT0FEX0RJUkVDVE9SWV9QRVJNSVNTSU9OUyA9IE5vbmUKRklMRV9VUExPQURfSEFORExFUlMgPSBbJ2RqYW5nby5jb3JlLmZpbGVzLnVwbG9hZGhhbmRsZXIuTWVtb3J5RmlsZVVwbG9hZEhhbmRsZXInLCAnZGphbmdvLmNvcmUuZmlsZXMudXBsb2FkaGFuZGxlci5UZW1wb3JhcnlGaWxlVXBsb2FkSGFuZGxlciddCkZJTEVfVVBMT0FEX01BWF9NRU1PUllfU0laRSA9IDI2MjE0NDAKRklMRV9VUExPQURfUEVSTUlTU0lPTlMgPSBOb25lCkZJTEVfVVBMT0FEX1RFTVBfRElSID0gTm9uZQpGSVJTVF9EQVlfT0ZfV0VFSyA9IDAKRklYVFVSRV9ESVJTID0gW10KRk9SQ0VfU0NSSVBUX05BTUUgPSBOb25lCkZPUk1BVF9NT0RVTEVfUEFUSCA9IE5vbmUKR1pJUF9DT05URU5UX1RZUEVTID0gCklHTk9SQUJMRV80MDRfVVJMUyA9IFtdCklOU1RBTExFRF9BUFBTID0gWydkamFuZ28uY29udHJpYi5hZG1pbicsICdkamFuZ28uY29udHJpYi5hdXRoJywgJ2RqYW5nby5jb250cmliLmNvbnRlbnR0eXBlcycsICdkamFuZ28uY29udHJpYi5zZXNzaW9ucycsICdkamFuZ28uY29udHJpYi5tZXNzYWdlcycsICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcycsICd3ZWJwYWNrX2xvYWRlcicsICdjb3JlJywgJ3Jlc3RfZnJhbWV3b3JrJywgJ2RqYW5nb19ub3NlJywgJ3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXInLCAnc2lsayddCklOVEVSTkFMX0lQUyA9IFtdCkxBTkdVQUdFUyA9IFsoJ2FmJywgJ0FmcmlrYWFucycpLCAoJ2FyJywgJ0FyYWJpYycpLCAoJ2FzdCcsICdBc3R1cmlhbicpLCAoJ2F6JywgJ0F6ZXJiYWlqYW5pJyksICgnYmcnLCAnQnVsZ2FyaWFuJyksICgnYmUnLCAnQmVsYXJ1c2lhbicpLCAoJ2JuJywgJ0JlbmdhbGknKSwgKCdicicsICdCcmV0b24nKSwgKCdicycsICdCb3NuaWFuJyksICgnY2EnLCAnQ2F0YWxhbicpLCAoJ2NzJywgJ0N6ZWNoJyksICgnY3knLCAnV2Vsc2gnKSwgKCdkYScsICdEYW5pc2gnKSwgKCdkZScsICdHZXJtYW4nKSwgKCdkc2InLCAnTG93ZXIgU29yYmlhbicpLCAoJ2VsJywgJ0dyZWVrJyksICgnZW4nLCAnRW5nbGlzaCcpLCAoJ2VuLWF1JywgJ0F1c3RyYWxpYW4gRW5nbGlzaCcpLCAoJ2VuLWdiJywgJ0JyaXRpc2ggRW5nbGlzaCcpLCAoJ2VvJywgJ0VzcGVyYW50bycpLCAoJ2VzJywgJ1NwYW5pc2gnKSwgKCdlcy1hcicsICdBcmdlbnRpbmlhbiBTcGFuaXNoJyksICgnZXMtY28nLCAnQ29sb21iaWFuIFNwYW5pc2gnKSwgKCdlcy1teCcsICdNZXhpY2FuIFNwYW5pc2gnKSwgKCdlcy1uaScsICdOaWNhcmFndWFuIFNwYW5pc2gnKSwgKCdlcy12ZScsICdWZW5lenVlbGFuIFNwYW5pc2gnKSwgKCdldCcsICdFc3RvbmlhbicpLCAoJ2V1JywgJ0Jhc3F1ZScpLCAoJ2ZhJywgJ1BlcnNpYW4nKSwgKCdmaScsICdGaW5uaXNoJyksICgnZnInLCAnRnJlbmNoJyksICgnZnknLCAnRnJpc2lhbicpLCAoJ2dhJywgJ0lyaXNoJyksICgnZ2QnLCAnU2NvdHRpc2ggR2FlbGljJyksICgnZ2wnLCAnR2FsaWNpYW4nKSwgKCdoZScsICdIZWJyZXcnKSwgKCdoaScsICdIaW5kaScpLCAoJ2hyJywgJ0Nyb2F0aWFuJyksICgnaHNiJywgJ1VwcGVyIFNvcmJpYW4nKSwgKCdodScsICdIdW5nYXJpYW4nKSwgKCdpYScsICdJbnRlcmxpbmd1YScpLCAoJ2lkJywgJ0luZG9uZXNpYW4nKSwgKCdpbycsICdJZG8nKSwgKCdpcycsICdJY2VsYW5kaWMnKSwgKCdpdCcsICdJdGFsaWFuJyksICgnamEnLCAnSmFwYW5lc2UnKSwgKCdrYScsICdHZW9yZ2lhbicpLCAoJ2trJywgJ0themFraCcpLCAoJ2ttJywgJ0tobWVyJyksICgna24nLCAnS2FubmFkYScpLCAoJ2tvJywgJ0tvcmVhbicpLCAoJ2xiJywgJ0x1eGVtYm91cmdpc2gnKSwgKCdsdCcsICdMaXRodWFuaWFuJyksICgnbHYnLCAnTGF0dmlhbicpLCAoJ21rJywgJ01hY2Vkb25pYW4nKSwgKCdtbCcsICdNYWxheWFsYW0nKSwgKCdtbicsICdNb25nb2xpYW4nKSwgKCdtcicsICdNYXJhdGhpJyksICgnbXknLCAnQnVybWVzZScpLCAoJ25iJywgJ05vcndlZ2lhbiBCb2ttw6VsJyksICgnbmUnLCAnTmVwYWxpJyksICgnbmwnLCAnRHV0Y2gnKSwgKCdubicsICdOb3J3ZWdpYW4gTnlub3JzaycpLCAoJ29zJywgJ09zc2V0aWMnKSwgKCdwYScsICdQdW5qYWJpJyksICgncGwnLCAnUG9saXNoJyksICgncHQnLCAnUG9ydHVndWVzZScpLCAoJ3B0LWJyJywgJ0JyYXppbGlhbiBQb3J0dWd1ZXNlJyksICgncm8nLCAnUm9tYW5pYW4nKSwgKCdydScsICdSdXNzaWFuJyksICgnc2snLCAnU2xvdmFrJyksICgnc2wnLCAnU2xvdmVuaWFuJyksICgnc3EnLCAnQWxiYW5pYW4nKSwgKCdzcicsICdTZXJiaWFuJyksICgnc3ItbGF0bicsICdTZXJiaWFuIExhdGluJyksICgnc3YnLCAnU3dlZGlzaCcpLCAoJ3N3JywgJ1N3YWhpbGknKSwgKCd0YScsICdUYW1pbCcpLCAoJ3RlJywgJ1RlbHVndScpLCAoJ3RoJywgJ1RoYWknKSwgKCd0cicsICdUdXJraXNoJyksICgndHQnLCAnVGF0YXInKSwgKCd1ZG0nLCAnVWRtdXJ0JyksICgndWsnLCAnVWtyYWluaWFuJyksICgndXInLCAnVXJkdScpLCAoJ3ZpJywgJ1ZpZXRuYW1lc2UnKSwgKCd6aC1oYW5zJywgJ1NpbXBsaWZpZWQgQ2hpbmVzZScpLCAoJ3poLWhhbnQnLCAnVHJhZGl0aW9uYWwgQ2hpbmVzZScpXQpMQU5HVUFHRVNfQklESSA9IFsnaGUnLCAnYXInLCAnZmEnLCAndXInXQpMQU5HVUFHRV9DT0RFID0gJ2VuLXVzJwpMQU5HVUFHRV9DT09LSUVfQUdFID0gTm9uZQpMQU5HVUFHRV9DT09LSUVfRE9NQUlOID0gTm9uZQpMQU5HVUFHRV9DT09LSUVfTkFNRSA9ICdkamFuZ29fbGFuZ3VhZ2UnCkxBTkdVQUdFX0NPT0tJRV9QQVRIID0gJy8nCkxPQ0FMRV9QQVRIUyA9IFtdCkxPR0dJTkcgPSB7fQpMT0dHSU5HX0NPTkZJRyA9ICdsb2dnaW5nLmNvbmZpZy5kaWN0Q29uZmlnJwpMT0dJTl9SRURJUkVDVF9VUkwgPSAnL2FjY291bnRzL3Byb2ZpbGUvJwpMT0dJTl9VUkwgPSAnL2FjY291bnRzL2xvZ2luLycKTE9HT1VUX1JFRElSRUNUX1VSTCA9IE5vbmUKTUFOQUdFUlMgPSBbXQpNRURJQV9ST09UID0gJy9ob21lL2ZpbGVzJwpNRURJQV9VUkwgPSAnL2ZpbGVzLycKTUVTU0FHRV9TVE9SQUdFID0gJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzLnN0b3JhZ2UuZmFsbGJhY2suRmFsbGJhY2tTdG9yYWdlJwpNSURETEVXQVJFID0gWydkamFuZ28ubWlkZGxld2FyZS5zZWN1cml0eS5TZWN1cml0eU1pZGRsZXdhcmUnLCAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMubWlkZGxld2FyZS5TZXNzaW9uTWlkZGxld2FyZScsICdkamFuZ28ubWlkZGxld2FyZS5jb21tb24uQ29tbW9uTWlkZGxld2FyZScsICdkamFuZ28ubWlkZGxld2FyZS5jc3JmLkNzcmZWaWV3TWlkZGxld2FyZScsICdkamFuZ28uY29udHJpYi5hdXRoLm1pZGRsZXdhcmUuQXV0aGVudGljYXRpb25NaWRkbGV3YXJlJywgJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzLm1pZGRsZXdhcmUuTWVzc2FnZU1pZGRsZXdhcmUnLCAnZGphbmdvLm1pZGRsZXdhcmUuY2xpY2tqYWNraW5nLlhGcmFtZU9wdGlvbnNNaWRkbGV3YXJlJywgJ3NpbGsubWlkZGxld2FyZS5TaWxreU1pZGRsZXdhcmUnXQpNSURETEVXQVJFX0NMQVNTRVMgPSBbJ2RqYW5nby5taWRkbGV3YXJlLmNvbW1vbi5Db21tb25NaWRkbGV3YXJlJywgJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJ10KTUlHUkFUSU9OX01PRFVMRVMgPSB7fQpNT05USF9EQVlfRk9STUFUID0gJ0YgaicKTk9TRV9BUkdTID0gWyctLXdpdGgtY292ZXJhZ2UnLCAnLS1jb3Zlci1wYWNrYWdlPWNvcmUudmlld3MnLCAnLS1jb3Zlci1odG1sLWRpcj10ZXN0L2JhY2tlbmQnLCAnLS1jb3Zlci1odG1sJ10KTlVNQkVSX0dST1VQSU5HID0gMApQQVNTV09SRF9IQVNIRVJTID0gJyoqKioqKioqKioqKioqKioqKioqJwpQQVNTV09SRF9SRVNFVF9USU1FT1VUX0RBWVMgPSAnKioqKioqKioqKioqKioqKioqKionClBSRVBFTkRfV1dXID0gRmFsc2UKUkVTVF9GUkFNRVdPUksgPSB7J0RFRkFVTFRfUEVSTUlTU0lPTl9DTEFTU0VTJzogWydyZXN0X2ZyYW1ld29yay5wZXJtaXNzaW9ucy5EamFuZ29Nb2RlbFBlcm1pc3Npb25zT3JBbm9uUmVhZE9ubHknXX0KUk9PVF9VUkxDT05GID0gJ2thcGUudXJscycKUlVOTklOR19ERVZTRVJWRVIgPSBUcnVlClNFQ1JFVF9LRVkgPSAnKioqKioqKioqKioqKioqKioqKionClNFQ1VSRV9CUk9XU0VSX1hTU19GSUxURVIgPSBGYWxzZQpTRUNVUkVfQ09OVEVOVF9UWVBFX05PU05JRkYgPSBGYWxzZQpTRUNVUkVfSFNUU19JTkNMVURFX1NVQkRPTUFJTlMgPSBGYWxzZQpTRUNVUkVfSFNUU19TRUNPTkRTID0gMApTRUNVUkVfUFJPWFlfU1NMX0hFQURFUiA9IE5vbmUKU0VDVVJFX1JFRElSRUNUX0VYRU1QVCA9IFtdClNFQ1VSRV9TU0xfSE9TVCA9IE5vbmUKU0VDVVJFX1NTTF9SRURJUkVDVCA9IEZhbHNlClNFUlZFUl9FTUFJTCA9ICdyb290QGxvY2FsaG9zdCcKU0VTU0lPTl9DQUNIRV9BTElBUyA9ICdkZWZhdWx0JwpTRVNTSU9OX0NPT0tJRV9BR0UgPSAxMjA5NjAwClNFU1NJT05fQ09PS0lFX0RPTUFJTiA9IE5vbmUKU0VTU0lPTl9DT09LSUVfSFRUUE9OTFkgPSBGYWxzZQpTRVNTSU9OX0NPT0tJRV9OQU1FID0gJ3Nlc3Npb25pZCcKU0VTU0lPTl9DT09LSUVfUEFUSCA9ICcvJwpTRVNTSU9OX0NPT0tJRV9TRUNVUkUgPSBGYWxzZQpTRVNTSU9OX0VOR0lORSA9ICdkamFuZ28uY29udHJpYi5zZXNzaW9ucy5iYWNrZW5kcy5kYicKU0VTU0lPTl9FWFBJUkVfQVRfQlJPV1NFUl9DTE9TRSA9IEZhbHNlClNFU1NJT05fRklMRV9QQVRIID0gTm9uZQpTRVNTSU9OX1NBVkVfRVZFUllfUkVRVUVTVCA9IEZhbHNlClNFU1NJT05fU0VSSUFMSVpFUiA9ICdkamFuZ28uY29udHJpYi5zZXNzaW9ucy5zZXJpYWxpemVycy5KU09OU2VyaWFsaXplcicKU0VUVElOR1NfTU9EVUxFID0gJ2thcGUuc2V0dGluZ3MnClNIT1JUX0RBVEVUSU1FX0ZPUk1BVCA9ICdtL2QvWSBQJwpTSE9SVF9EQVRFX0ZPUk1BVCA9ICdtL2QvWScKU0lHTklOR19CQUNLRU5EID0gJ2RqYW5nby5jb3JlLnNpZ25pbmcuVGltZXN0YW1wU2lnbmVyJwpTSUxFTkNFRF9TWVNURU1fQ0hFQ0tTID0gW10KU1RBVElDRklMRVNfRElSUyA9ICdEOlxcUFBMQVxcYXNzZXRzJwpTVEFUSUNGSUxFU19GSU5ERVJTID0gWydkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcy5maW5kZXJzLkZpbGVTeXN0ZW1GaW5kZXInLCAnZGphbmdvLmNvbnRyaWIuc3RhdGljZmlsZXMuZmluZGVycy5BcHBEaXJlY3Rvcmllc0ZpbmRlciddClNUQVRJQ0ZJTEVTX1NUT1JBR0UgPSAnZGphbmdvLmNvbnRyaWIuc3RhdGljZmlsZXMuc3RvcmFnZS5TdGF0aWNGaWxlc1N0b3JhZ2UnClNUQVRJQ19ST09UID0gJy9ob21lL2Fzc2V0cycKU1RBVElDX1VSTCA9ICcvYXNzZXRzLycKVEVNUExBVEVTID0gW3snQkFDS0VORCc6ICdkamFuZ28udGVtcGxhdGUuYmFja2VuZHMuZGphbmdvLkRqYW5nb1RlbXBsYXRlcycsICdESVJTJzogW10sICdBUFBfRElSUyc6IFRydWUsICdPUFRJT05TJzogeydjb250ZXh0X3Byb2Nlc3NvcnMnOiBbJ2RqYW5nby50ZW1wbGF0ZS5jb250ZXh0X3Byb2Nlc3NvcnMuZGVidWcnLCAnZGphbmdvLnRlbXBsYXRlLmNvbnRleHRfcHJvY2Vzc29ycy5yZXF1ZXN0JywgJ2RqYW5nby5jb250cmliLmF1dGguY29udGV4dF9wcm9jZXNzb3JzLmF1dGgnLCAnZGphbmdvLmNvbnRyaWIubWVzc2FnZXMuY29udGV4dF9wcm9jZXNzb3JzLm1lc3NhZ2VzJ119fV0KVEVTVF9OT05fU0VSSUFMSVpFRF9BUFBTID0gW10KVEVTVF9SVU5ORVIgPSAnZGphbmdvX25vc2UuTm9zZVRlc3RTdWl0ZVJ1bm5lcicKVEhPVVNBTkRfU0VQQVJBVE9SID0gJywnClRJTUVfRk9STUFUID0gJ1AnClRJTUVfSU5QVVRfRk9STUFUUyA9IFsnJUg6JU06JVMnLCAnJUg6JU06JVMuJWYnLCAnJUg6JU0nXQpUSU1FX1pPTkUgPSAnVVRDJwpVU0VfRVRBR1MgPSBGYWxzZQpVU0VfSTE4TiA9IFRydWUKVVNFX0wxME4gPSBUcnVlClVTRV9USE9VU0FORF9TRVBBUkFUT1IgPSBGYWxzZQpVU0VfVFogPSBUcnVlClVTRV9YX0ZPUldBUkRFRF9IT1NUID0gRmFsc2UKVVNFX1hfRk9SV0FSREVEX1BPUlQgPSBGYWxzZQpXRUJQQUNLX0xPQURFUiA9IHsnREVGQVVMVCc6IHsnQlVORExFX0RJUl9OQU1FJzogJ2J1bmRsZXMvJywgJ1NUQVRTX0ZJTEUnOiAnRDpcXFBQTEFcXHdlYnBhY2stc3RhdHMuanNvbid9fQpXU0dJX0FQUExJQ0FUSU9OID0gJ2thcGUud3NnaS5hcHBsaWNhdGlvbicKWF9GUkFNRV9PUFRJT05TID0gJ1NBTUVPUklHSU4nCllFQVJfTU9OVEhfRk9STUFUID0gJ0YgWScKCgpZb3UncmUgc2VlaW5nIHRoaXMgZXJyb3IgYmVjYXVzZSB5b3UgaGF2ZSBERUJVRyA9IFRydWUgaW4geW91cgpEamFuZ28gc2V0dGluZ3MgZmlsZS4gQ2hhbmdlIHRoYXQgdG8gRmFsc2UsIGFuZCBEamFuZ28gd2lsbApkaXNwbGF5IGEgc3RhbmRhcmQgcGFnZSBnZW5lcmF0ZWQgYnkgdGhlIGhhbmRsZXIgZm9yIHRoaXMgc3RhdHVzIGNvZGUuCgo=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/plain\"}" - } -}, -{ - "model": "silk.response", - "pk": "983073b5-ec40-44c9-868d-50a006c65aad", - "fields": { - "request": "9743506e-3031-4802-b588-b8ce41b20e98", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPlNlbGVjdCBjb21wYW55IHRvIGNoYW5nZSB8IERqYW5nbyBzaXRlIGFkbWluPC90aXRsZT4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvYmFzZS5jc3MiIC8+CgogIAogIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvYWRtaW4vY3NzL2NoYW5nZWxpc3RzLmNzcyIgLz4KICAKICAKICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KICAKICAKICAKCgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvY29yZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL2pxdWVyeS9qcXVlcnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2pxdWVyeS5pbml0LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hZG1pbi9SZWxhdGVkT2JqZWN0TG9va3Vwcy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvYWN0aW9ucy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdXJsaWZ5LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9wcmVwb3B1bGF0ZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL3hyZWdleHAveHJlZ2V4cC5qcyI+PC9zY3JpcHQ+Cgo8bWV0YSBuYW1lPSJyb2JvdHMiIGNvbnRlbnQ9Ik5PTkUsTk9BUkNISVZFIiAvPgo8L2hlYWQ+CgoKPGJvZHkgY2xhc3M9IiBhcHAtY29yZSBtb2RlbC1jb21wYW55IGNoYW5nZS1saXN0IgogIGRhdGEtYWRtaW4tdXRjLW9mZnNldD0iMCI+Cgo8IS0tIENvbnRhaW5lciAtLT4KPGRpdiBpZD0iY29udGFpbmVyIj4KCiAgICAKICAgIDwhLS0gSGVhZGVyIC0tPgogICAgPGRpdiBpZD0iaGVhZGVyIj4KICAgICAgICA8ZGl2IGlkPSJicmFuZGluZyI+CiAgICAgICAgCjxoMSBpZD0ic2l0ZS1uYW1lIj48YSBocmVmPSIvYWRtaW4vIj5EamFuZ28gYWRtaW5pc3RyYXRpb248L2E+PC9oMT4KCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgPGRpdiBpZD0idXNlci10b29scyI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgV2VsY29tZSwKICAgICAgICAgICAgICAgIDxzdHJvbmc+a2FwZTwvc3Ryb25nPi4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iLyI+VmlldyBzaXRlPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9wYXNzd29yZF9jaGFuZ2UvIj5DaGFuZ2UgcGFzc3dvcmQ8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2xvZ291dC8iPkxvZyBvdXQ8L2E+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIAogICAgPC9kaXY+CiAgICA8IS0tIEVORCBIZWFkZXIgLS0+CiAgICAKPGRpdiBjbGFzcz0iYnJlYWRjcnVtYnMiPgo8YSBocmVmPSIvYWRtaW4vIj5Ib21lPC9hPgomcnNhcXVvOyA8YSBocmVmPSIvYWRtaW4vY29yZS8iPkNvcmU8L2E+CiZyc2FxdW87IENvbXBhbnlzCjwvZGl2PgoKICAgIAoKICAgIAogICAgICAgIAogICAgCgogICAgPCEtLSBDb250ZW50IC0tPgogICAgPGRpdiBpZD0iY29udGVudCIgY2xhc3M9ImZsZXgiPgogICAgICAgIAogICAgICAgIDxoMT5TZWxlY3QgY29tcGFueSB0byBjaGFuZ2U8L2gxPgogICAgICAgIAogIDxkaXYgaWQ9ImNvbnRlbnQtbWFpbiI+CiAgICAKICAgICAgICA8dWwgY2xhc3M9Im9iamVjdC10b29scyI+CiAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaT4KICAgICAgICAgICAgICAKICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS9jb21wYW55L2FkZC8iIGNsYXNzPSJhZGRsaW5rIj4KICAgICAgICAgICAgICAgIEFkZCBjb21wYW55CiAgICAgICAgICAgICAgPC9hPgogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgIAogICAgICAgIDwvdWw+CiAgICAKICAgIAogICAgPGRpdiBjbGFzcz0ibW9kdWxlIiBpZD0iY2hhbmdlbGlzdCI+CiAgICAgIAoKCiAgICAgIAoKCiAgICAgIAogICAgICAgIAogICAgICAKCiAgICAgIDxmb3JtIGlkPSJjaGFuZ2VsaXN0LWZvcm0iIG1ldGhvZD0icG9zdCIgbm92YWxpZGF0ZT48aW5wdXQgdHlwZT0naGlkZGVuJyBuYW1lPSdjc3JmbWlkZGxld2FyZXRva2VuJyB2YWx1ZT0nQ21YU2VRRWFlOUhGN2tiSm5VREpheEM4VDV0Y1I2Y3cxczRIcW13NTE2UzR1c2RiNmw4YjJlalNSMHoxYjY4bCcgLz4KICAgICAgCgogICAgICAKICAgICAgICAgIAo8ZGl2IGNsYXNzPSJhY3Rpb25zIj4KICAgIDxsYWJlbD5BY3Rpb246IDxzZWxlY3QgbmFtZT0iYWN0aW9uIiByZXF1aXJlZD4KPG9wdGlvbiB2YWx1ZT0iIiBzZWxlY3RlZD0ic2VsZWN0ZWQiPi0tLS0tLS0tLTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSJkZWxldGVfc2VsZWN0ZWQiPkRlbGV0ZSBzZWxlY3RlZCBjb21wYW55czwvb3B0aW9uPgo8L3NlbGVjdD48L2xhYmVsPjxpbnB1dCBjbGFzcz0ic2VsZWN0LWFjcm9zcyIgbmFtZT0ic2VsZWN0X2Fjcm9zcyIgdHlwZT0iaGlkZGVuIiB2YWx1ZT0iMCIgLz4KICAgIDxidXR0b24gdHlwZT0ic3VibWl0IiBjbGFzcz0iYnV0dG9uIiB0aXRsZT0iUnVuIHRoZSBzZWxlY3RlZCBhY3Rpb24iIG5hbWU9ImluZGV4IiB2YWx1ZT0iMCI+R288L2J1dHRvbj4KICAgIAogICAgICAgIDxzcGFuIGNsYXNzPSJhY3Rpb24tY291bnRlciIgZGF0YS1hY3Rpb25zLWljbnQ9IjEiPjAgb2YgMSBzZWxlY3RlZDwvc3Bhbj4KICAgICAgICAKICAgIAo8L2Rpdj4KCiAgICAgICAgICAKCgo8ZGl2IGNsYXNzPSJyZXN1bHRzIj4KPHRhYmxlIGlkPSJyZXN1bHRfbGlzdCI+Cjx0aGVhZD4KPHRyPgoKPHRoIHNjb3BlPSJjb2wiICBjbGFzcz0iYWN0aW9uLWNoZWNrYm94LWNvbHVtbiI+CiAgIAogICA8ZGl2IGNsYXNzPSJ0ZXh0Ij48c3Bhbj48aW5wdXQgdHlwZT0iY2hlY2tib3giIGlkPSJhY3Rpb24tdG9nZ2xlIiAvPjwvc3Bhbj48L2Rpdj4KICAgPGRpdiBjbGFzcz0iY2xlYXIiPjwvZGl2Pgo8L3RoPgo8dGggc2NvcGU9ImNvbCIgIGNsYXNzPSJjb2x1bW4tX19zdHJfXyI+CiAgIAogICA8ZGl2IGNsYXNzPSJ0ZXh0Ij48c3Bhbj5Db21wYW55PC9zcGFuPjwvZGl2PgogICA8ZGl2IGNsYXNzPSJjbGVhciI+PC9kaXY+CjwvdGg+CjwvdHI+CjwvdGhlYWQ+Cjx0Ym9keT4KCgo8dHIgY2xhc3M9InJvdzEiPjx0ZCBjbGFzcz0iYWN0aW9uLWNoZWNrYm94Ij48aW5wdXQgY2xhc3M9ImFjdGlvbi1zZWxlY3QiIG5hbWU9Il9zZWxlY3RlZF9hY3Rpb24iIHR5cGU9ImNoZWNrYm94IiB2YWx1ZT0iMSIgLz48L3RkPjx0aCBjbGFzcz0iZmllbGQtX19zdHJfXyI+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8xL2NoYW5nZS8iPkNvbXBhbnkgb2JqZWN0PC9hPjwvdGg+PC90cj4KCjwvdGJvZHk+CjwvdGFibGU+CjwvZGl2PgoKCiAgICAgICAgICAKICAgICAgCiAgICAgIAoKPHAgY2xhc3M9InBhZ2luYXRvciI+CgoxIGNvbXBhbnkKCgo8L3A+CgogICAgICA8L2Zvcm0+CiAgICA8L2Rpdj4KICA8L2Rpdj4KCiAgICAgICAgCiAgICAgICAgPGJyIGNsYXNzPSJjbGVhciIgLz4KICAgIDwvZGl2PgogICAgPCEtLSBFTkQgQ29udGVudCAtLT4KCiAgICA8ZGl2IGlkPSJmb290ZXIiPjwvZGl2Pgo8L2Rpdj4KPCEtLSBFTkQgQ29udGFpbmVyIC0tPgoKPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 14:55:16 GMT\", \"Expires\": \"Mon, 27 Mar 2017 14:55:16 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "991caef0-20c5-40cf-b10a-890796499bdd", - "fields": { - "request": "71c46316-a90d-49fa-984e-503034a441d7", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "99dc15e8-8cbf-45f9-ae68-4b6296f57411", - "fields": { - "request": "1e4997c4-baf7-439b-922d-182b05c5502a", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPlNpdGUgYWRtaW5pc3RyYXRpb24gfCBEamFuZ28gc2l0ZSBhZG1pbjwvdGl0bGU+CjxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvYWRtaW4vY3NzL2Jhc2UuY3NzIiAvPgo8bGluayByZWw9InN0eWxlc2hlZXQiIHR5cGU9InRleHQvY3NzIiBocmVmPSIvYXNzZXRzL2FkbWluL2Nzcy9kYXNoYm9hcmQuY3NzIiAvPgoKCjxtZXRhIG5hbWU9InJvYm90cyIgY29udGVudD0iTk9ORSxOT0FSQ0hJVkUiIC8+CjwvaGVhZD4KCgo8Ym9keSBjbGFzcz0iIGRhc2hib2FyZCIKICBkYXRhLWFkbWluLXV0Yy1vZmZzZXQ9IjAiPgoKPCEtLSBDb250YWluZXIgLS0+CjxkaXYgaWQ9ImNvbnRhaW5lciI+CgogICAgCiAgICA8IS0tIEhlYWRlciAtLT4KICAgIDxkaXYgaWQ9ImhlYWRlciI+CiAgICAgICAgPGRpdiBpZD0iYnJhbmRpbmciPgogICAgICAgIAo8aDEgaWQ9InNpdGUtbmFtZSI+PGEgaHJlZj0iL2FkbWluLyI+RGphbmdvIGFkbWluaXN0cmF0aW9uPC9hPjwvaDE+CgogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIDxkaXYgaWQ9InVzZXItdG9vbHMiPgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIFdlbGNvbWUsCiAgICAgICAgICAgICAgICA8c3Ryb25nPmthcGU8L3N0cm9uZz4uCiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii8iPlZpZXcgc2l0ZTwvYT4gLwogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vcGFzc3dvcmRfY2hhbmdlLyI+Q2hhbmdlIHBhc3N3b3JkPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9sb2dvdXQvIj5Mb2cgb3V0PC9hPgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgICAgICAKICAgICAgICAKICAgICAgICAKICAgIDwvZGl2PgogICAgPCEtLSBFTkQgSGVhZGVyIC0tPgogICAgCiAgICAKCiAgICAKICAgICAgICAKICAgIAoKICAgIDwhLS0gQ29udGVudCAtLT4KICAgIDxkaXYgaWQ9ImNvbnRlbnQiIGNsYXNzPSJjb2xNUyI+CiAgICAgICAgCiAgICAgICAgPGgxPlNpdGUgYWRtaW5pc3RyYXRpb248L2gxPgogICAgICAgIAo8ZGl2IGlkPSJjb250ZW50LW1haW4iPgoKCiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJhcHAtYXV0aCBtb2R1bGUiPgogICAgICAgIDx0YWJsZT4KICAgICAgICA8Y2FwdGlvbj4KICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2F1dGgvIiBjbGFzcz0ic2VjdGlvbiIgdGl0bGU9Ik1vZGVscyBpbiB0aGUgQXV0aGVudGljYXRpb24gYW5kIEF1dGhvcml6YXRpb24gYXBwbGljYXRpb24iPkF1dGhlbnRpY2F0aW9uIGFuZCBBdXRob3JpemF0aW9uPC9hPgogICAgICAgIDwvY2FwdGlvbj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1ncm91cCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL2dyb3VwLyI+R3JvdXBzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvZ3JvdXAvYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL2dyb3VwLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC11c2VyIj4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8iPlVzZXJzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgPC90YWJsZT4KICAgICAgICA8L2Rpdj4KICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImFwcC1jb3JlIG1vZHVsZSI+CiAgICAgICAgPHRhYmxlPgogICAgICAgIDxjYXB0aW9uPgogICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS8iIGNsYXNzPSJzZWN0aW9uIiB0aXRsZT0iTW9kZWxzIGluIHRoZSBDb3JlIGFwcGxpY2F0aW9uIj5Db3JlPC9hPgogICAgICAgIDwvY2FwdGlvbj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1hcHBsaWNhdGlvbiI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL2FwcGxpY2F0aW9uLyI+QXBwbGljYXRpb25zPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvYXBwbGljYXRpb24vYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL2FwcGxpY2F0aW9uLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1jb21wYW55Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8iPkNvbXBhbnlzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgICAgIDx0ciBjbGFzcz0ibW9kZWwtc3R1ZGVudCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvIj5TdHVkZW50czwvYT48L3RoPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvIiBjbGFzcz0iY2hhbmdlbGluayI+Q2hhbmdlPC9hPjwvdGQ+CiAgICAgICAgICAgIAogICAgICAgICAgICA8L3RyPgogICAgICAgIAogICAgICAgICAgICA8dHIgY2xhc3M9Im1vZGVsLXN1cGVydmlzb3IiPgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0aCBzY29wZT0icm93Ij48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yLyI+U3VwZXJ2aXNvcnM8L2E+PC90aD4KICAgICAgICAgICAgCgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0ZD48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yL2FkZC8iIGNsYXNzPSJhZGRsaW5rIj5BZGQ8L2E+PC90ZD4KICAgICAgICAgICAgCgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0ZD48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC12YWNhbmN5Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS8iPlZhY2FuY3lzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgPC90YWJsZT4KICAgICAgICA8L2Rpdj4KICAgIAoKPC9kaXY+CgogICAgICAgIAo8ZGl2IGlkPSJjb250ZW50LXJlbGF0ZWQiPgogICAgPGRpdiBjbGFzcz0ibW9kdWxlIiBpZD0icmVjZW50LWFjdGlvbnMtbW9kdWxlIj4KICAgICAgICA8aDI+UmVjZW50IGFjdGlvbnM8L2gyPgogICAgICAgIDxoMz5NeSBhY3Rpb25zPC9oMz4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgPHVsIGNsYXNzPSJhY3Rpb25saXN0Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaSBjbGFzcz0iYWRkbGluayI+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS92YWNhbmN5LzEvY2hhbmdlLyI+VmFjYW5jeSBvYmplY3Q8L2E+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxici8+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz0ibWluaSBxdWlldCI+VmFjYW5jeTwvc3Bhbj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgICAgPGxpIGNsYXNzPSJhZGRsaW5rIj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N1cGVydmlzb3IvMS9jaGFuZ2UvIj5TdXBlcnZpc29yIG9iamVjdDwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5TdXBlcnZpc29yPC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8bGkgY2xhc3M9ImFkZGxpbmsiPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2NvcmUvc3R1ZGVudC8xL2NoYW5nZS8iPlN0dWRlbnQgb2JqZWN0PC9hPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YnIvPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9Im1pbmkgcXVpZXQiPlN0dWRlbnQ8L3NwYW4+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgPC9saT4KICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaSBjbGFzcz0iYWRkbGluayI+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS9jb21wYW55LzIvY2hhbmdlLyI+Q29tcGFueSBvYmplY3Q8L2E+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxici8+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz0ibWluaSBxdWlldCI+Q29tcGFueTwvc3Bhbj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgICAgPGxpIGNsYXNzPSJkZWxldGVsaW5rIj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIENvbXBhbnkgb2JqZWN0CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxici8+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz0ibWluaSBxdWlldCI+Q29tcGFueTwvc3Bhbj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgICAgPGxpIGNsYXNzPSJhZGRsaW5rIj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9hdXRoL3VzZXIvNC9jaGFuZ2UvIj5mYXJoYW5zdXBlcjwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5Vc2VyPC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8bGkgY2xhc3M9ImFkZGxpbmsiPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8zL2NoYW5nZS8iPmZhcmhhbmNvcnA8L2E+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxici8+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz0ibWluaSBxdWlldCI+VXNlcjwvc3Bhbj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgICAgPGxpIGNsYXNzPSJhZGRsaW5rIj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9hdXRoL3VzZXIvMi9jaGFuZ2UvIj5mYXJoYW48L2E+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxici8+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz0ibWluaSBxdWlldCI+VXNlcjwvc3Bhbj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgICAgPGxpIGNsYXNzPSJhZGRsaW5rIj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9jb3JlL2NvbXBhbnkvMS9jaGFuZ2UvIj5Db21wYW55IG9iamVjdDwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5Db21wYW55PC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8L3VsPgogICAgICAgICAgICAKICAgIDwvZGl2Pgo8L2Rpdj4KCiAgICAgICAgPGJyIGNsYXNzPSJjbGVhciIgLz4KICAgIDwvZGl2PgogICAgPCEtLSBFTkQgQ29udGVudCAtLT4KCiAgICA8ZGl2IGlkPSJmb290ZXIiPjwvZGl2Pgo8L2Rpdj4KPCEtLSBFTkQgQ29udGFpbmVyIC0tPgoKPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 15:23:38 GMT\", \"Expires\": \"Mon, 27 Mar 2017 15:23:38 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\"}" - } -}, -{ - "model": "silk.response", - "pk": "99f65abe-22b2-42f3-9cc1-cb5f5c30730f", - "fields": { - "request": "f0835e93-d9e8-473c-a32e-02d2224e8372", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "9ad22d7a-5fd1-451d-939e-2ee9988eee63", - "fields": { - "request": "9f472c0f-de1d-45f6-83c4-185efa0d454d", - "status_code": 302, - "raw_body": "", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Location\": \"/admin/core/company/\", \"Last-Modified\": \"Mon, 27 Mar 2017 14:33:51 GMT\", \"Expires\": \"Mon, 27 Mar 2017 14:33:51 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\"}" - } -}, -{ - "model": "silk.response", - "pk": "9d2e7e53-6700-4334-84e5-59013b5bb05d", - "fields": { - "request": "69a42246-b643-4450-b9e7-f3bf0f085bb0", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "9d477e0e-4dd4-43b8-b748-2f7a67e1fc82", - "fields": { - "request": "5d580434-55ac-440e-8b25-41cef00eb6c1", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "9dab61d5-d27c-4d6c-87e8-ea7c1b2c5212", - "fields": { - "request": "ac603383-5bb9-424f-b42d-c3a0b7c17658", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "9e39674a-045c-4f86-a7b5-0cbd841b237f", - "fields": { - "request": "3e32712f-74c9-4ea6-b12f-1a8d1b17748a", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "a045c5a2-f684-4e62-a39e-5a8ff645e3c8", - "fields": { - "request": "64465212-91ca-420c-864a-69a4d58c6ae3", - "status_code": 500, - "raw_body": "QXR0cmlidXRlRXJyb3IgYXQgL2FwaS9zdHVkZW50cy8xL2Jvb2ttYXJrZWQtdmFjYW5jaWVzLwonZGljdCcgb2JqZWN0IGhhcyBubyBhdHRyaWJ1dGUgJ2lkJwoKUmVxdWVzdCBNZXRob2Q6IFBPU1QKUmVxdWVzdCBVUkw6IGh0dHA6Ly8xMjcuMC4wLjE6ODAwMC9hcGkvc3R1ZGVudHMvMS9ib29rbWFya2VkLXZhY2FuY2llcy8KRGphbmdvIFZlcnNpb246IDEuMTAuNQpQeXRob24gRXhlY3V0YWJsZTogQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXHB5dGhvbi5leGUKUHl0aG9uIFZlcnNpb246IDMuNi4wClB5dGhvbiBQYXRoOiBbJ0Q6XFxQUExBJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXHB5dGhvbjM2LnppcCcsICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyXFxETExzJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXGxpYicsICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXGxpYlxcc2l0ZS1wYWNrYWdlcyddClNlcnZlciB0aW1lOiBNb24sIDI3IE1hciAyMDE3IDE1OjQ2OjAxICswMDAwCkluc3RhbGxlZCBBcHBsaWNhdGlvbnM6ClsnZGphbmdvLmNvbnRyaWIuYWRtaW4nLAogJ2RqYW5nby5jb250cmliLmF1dGgnLAogJ2RqYW5nby5jb250cmliLmNvbnRlbnR0eXBlcycsCiAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMnLAogJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzJywKICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcycsCiAnd2VicGFja19sb2FkZXInLAogJ2NvcmUnLAogJ3Jlc3RfZnJhbWV3b3JrJywKICdkamFuZ29fbm9zZScsCiAncmVzdF9mcmFtZXdvcmtfc3dhZ2dlcicsCiAnc2lsayddCkluc3RhbGxlZCBNaWRkbGV3YXJlOgpbJ2RqYW5nby5taWRkbGV3YXJlLnNlY3VyaXR5LlNlY3VyaXR5TWlkZGxld2FyZScsCiAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMubWlkZGxld2FyZS5TZXNzaW9uTWlkZGxld2FyZScsCiAnZGphbmdvLm1pZGRsZXdhcmUuY29tbW9uLkNvbW1vbk1pZGRsZXdhcmUnLAogJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5hdXRoLm1pZGRsZXdhcmUuQXV0aGVudGljYXRpb25NaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5tZXNzYWdlcy5taWRkbGV3YXJlLk1lc3NhZ2VNaWRkbGV3YXJlJywKICdkamFuZ28ubWlkZGxld2FyZS5jbGlja2phY2tpbmcuWEZyYW1lT3B0aW9uc01pZGRsZXdhcmUnLAogJ3NpbGsubWlkZGxld2FyZS5TaWxreU1pZGRsZXdhcmUnXQoKClRyYWNlYmFjazogIAoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXGRqYW5nb1xjb3JlXGhhbmRsZXJzXGV4Y2VwdGlvbi5weSIgaW4gaW5uZXIKICAzOS4gICAgICAgICAgICAgcmVzcG9uc2UgPSBnZXRfcmVzcG9uc2UocmVxdWVzdCkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cY29yZVxoYW5kbGVyc1xiYXNlLnB5IiBpbiBfZ2V0X3Jlc3BvbnNlCiAgMTg3LiAgICAgICAgICAgICAgICAgcmVzcG9uc2UgPSBzZWxmLnByb2Nlc3NfZXhjZXB0aW9uX2J5X21pZGRsZXdhcmUoZSwgcmVxdWVzdCkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cY29yZVxoYW5kbGVyc1xiYXNlLnB5IiBpbiBfZ2V0X3Jlc3BvbnNlCiAgMTg1LiAgICAgICAgICAgICAgICAgcmVzcG9uc2UgPSB3cmFwcGVkX2NhbGxiYWNrKHJlcXVlc3QsICpjYWxsYmFja19hcmdzLCAqKmNhbGxiYWNrX2t3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cdmlld3NcZGVjb3JhdG9yc1xjc3JmLnB5IiBpbiB3cmFwcGVkX3ZpZXcKICA1OC4gICAgICAgICByZXR1cm4gdmlld19mdW5jKCphcmdzLCAqKmt3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3c2V0cy5weSIgaW4gdmlldwogIDgzLiAgICAgICAgICAgICByZXR1cm4gc2VsZi5kaXNwYXRjaChyZXF1ZXN0LCAqYXJncywgKiprd2FyZ3MpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNccmVzdF9mcmFtZXdvcmtcdmlld3MucHkiIGluIGRpc3BhdGNoCiAgNDgzLiAgICAgICAgICAgICByZXNwb25zZSA9IHNlbGYuaGFuZGxlX2V4Y2VwdGlvbihleGMpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNccmVzdF9mcmFtZXdvcmtcdmlld3MucHkiIGluIGhhbmRsZV9leGNlcHRpb24KICA0NDMuICAgICAgICAgICAgIHNlbGYucmFpc2VfdW5jYXVnaHRfZXhjZXB0aW9uKGV4YykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3cy5weSIgaW4gZGlzcGF0Y2gKICA0ODAuICAgICAgICAgICAgIHJlc3BvbnNlID0gaGFuZGxlcihyZXF1ZXN0LCAqYXJncywgKiprd2FyZ3MpCgpGaWxlICJEOlxQUExBXGNvcmVcdmlld3NcYWNjb3VudHMucHkiIGluIGJvb2ttYXJrX3ZhY2FuY2llcwogIDMwLiAgICAgICAgIHZhY2FuY3kgPSBnZXRfb2JqZWN0X29yXzQwNChWYWNhbmN5Lm9iamVjdHMuYWxsKCksIHBrPXJlcXVlc3QuZGF0YS5pZCkKCkV4Y2VwdGlvbiBUeXBlOiBBdHRyaWJ1dGVFcnJvciBhdCAvYXBpL3N0dWRlbnRzLzEvYm9va21hcmtlZC12YWNhbmNpZXMvCkV4Y2VwdGlvbiBWYWx1ZTogJ2RpY3QnIG9iamVjdCBoYXMgbm8gYXR0cmlidXRlICdpZCcKUmVxdWVzdCBpbmZvcm1hdGlvbjoKVVNFUjoga2FwZQoKR0VUOiBObyBHRVQgZGF0YQoKUE9TVDogTm8gUE9TVCBkYXRhCgpGSUxFUzogTm8gRklMRVMgZGF0YQoKQ09PS0lFUzoKc2Vzc2lvbmlkID0gJ2JsdDg3N2c1ZmptdWN4eTNkZDV1eGNpemF2YjlvcG92Jwpjc3JmdG9rZW4gPSAnMUVFUDJTd0t0MUs5UWJXbkZQU3lXUElpYnRPN01BYVZxS0xFZW9vRmdZVnlkallQb2duME93cDI5b1VXNkE2SycKCk1FVEE6CkFMTFVTRVJTUFJPRklMRSA9ICdDOlxcUHJvZ3JhbURhdGEnCkFQUERBVEEgPSAnQzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmcnCkNPTU1PTlBST0dSQU1GSUxFUyA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcQ29tbW9uIEZpbGVzJwpDT01NT05QUk9HUkFNRklMRVMoWDg2KSA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcQ29tbW9uIEZpbGVzJwpDT01NT05QUk9HUkFNVzY0MzIgPSAnQzpcXFByb2dyYW0gRmlsZXNcXENvbW1vbiBGaWxlcycKQ09NUFVURVJOQU1FID0gJ0ZBUkhBTicKQ09NU1BFQyA9ICdDOlxcV0lORE9XU1xcc3lzdGVtMzJcXGNtZC5leGUnCkNPTlRFTlRfTEVOR1RIID0gJzEyOCcKQ09OVEVOVF9UWVBFID0gJ2FwcGxpY2F0aW9uL2pzb24nCkNTUkZfQ09PS0lFID0gJzFFRVAyU3dLdDFLOVFiV25GUFN5V1BJaWJ0TzdNQWFWcUtMRWVvb0ZnWVZ5ZGpZUG9nbjBPd3AyOW9VVzZBNksnCkRKQU5HT19TRVRUSU5HU19NT0RVTEUgPSAna2FwZS5zZXR0aW5ncycKRlBTX0JST1dTRVJfQVBQX1BST0ZJTEVfU1RSSU5HID0gJ0ludGVybmV0IEV4cGxvcmVyJwpGUFNfQlJPV1NFUl9VU0VSX1BST0ZJTEVfU1RSSU5HID0gJ0RlZmF1bHQnCkZQX05PX0hPU1RfQ0hFQ0sgPSAnTk8nCkdBVEVXQVlfSU5URVJGQUNFID0gJ0NHSS8xLjEnCkhPTUVEUklWRSA9ICdDOicKSE9NRVBBVEggPSAnXFxVc2Vyc1xcZmFyaGFfMDAwJwpIVFRQX0FDQ0VQVCA9ICdhcHBsaWNhdGlvbi9qc29uJwpIVFRQX0FDQ0VQVF9FTkNPRElORyA9ICdnemlwLCBkZWZsYXRlLCBicicKSFRUUF9BQ0NFUFRfTEFOR1VBR0UgPSAnaWQtSUQsaWQ7cT0wLjgsZW4tVVM7cT0wLjYsZW47cT0wLjQnCkhUVFBfQ09OTkVDVElPTiA9ICdrZWVwLWFsaXZlJwpIVFRQX0NPT0tJRSA9ICdzZXNzaW9uaWQ9Ymx0ODc3ZzVmam11Y3h5M2RkNXV4Y2l6YXZiOW9wb3Y7IGNzcmZ0b2tlbj0xRUVQMlN3S3QxSzlRYlduRlBTeVdQSWlidE83TUFhVnFLTEVlb29GZ1lWeWRqWVBvZ24wT3dwMjlvVVc2QTZLJwpIVFRQX0hPU1QgPSAnMTI3LjAuMC4xOjgwMDAnCkhUVFBfT1JJR0lOID0gJ2h0dHA6Ly8xMjcuMC4wLjE6ODAwMCcKSFRUUF9SRUZFUkVSID0gJ2h0dHA6Ly8xMjcuMC4wLjE6ODAwMC9hcGknCkhUVFBfVVNFUl9BR0VOVCA9ICdNb3ppbGxhLzUuMCAoV2luZG93cyBOVCAxMC4wOyBXT1c2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzU2LjAuMjkyNC44NyBTYWZhcmkvNTM3LjM2JwpIVFRQX1hfQ1NSRlRPS0VOID0gJ2pxOTFCdUY1ZTVSN1NqTUZSYzJUTmZ2V1U4bERPNnd5SXdnUU4weDAxMjJ3ZnJPN0FEeGxGV2NHUzNyczg2c24nCkxPQ0FMQVBQREFUQSA9ICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWwnCkxPR09OU0VSVkVSID0gJ1xcXFxGQVJIQU4nCk5VTUJFUl9PRl9QUk9DRVNTT1JTID0gJzInCk9ORURSSVZFID0gJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxPbmVEcml2ZScKT1MgPSAnV2luZG93c19OVCcKUEFUSCA9ICdDOlxcUHJvZ3JhbURhdGFcXE9yYWNsZVxcSmF2YVxcamF2YXBhdGg7QzpcXFByb2dyYW0gRmlsZXNcXEhhc2tlbGxcXGJpbjtDOlxcUHJvZ3JhbSBGaWxlc1xcSGFza2VsbCBQbGF0Zm9ybVxcNy4xMC4zXFxsaWJcXGV4dHJhbGlic1xcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxIYXNrZWxsIFBsYXRmb3JtXFw3LjEwLjNcXGJpbjtDOlxcV0lORE9XU1xcc3lzdGVtMzI7QzpcXFdJTkRPV1M7QzpcXFdJTkRPV1NcXFN5c3RlbTMyXFxXYmVtO0M6XFxXSU5ET1dTXFxTeXN0ZW0zMlxcV2luZG93c1Bvd2VyU2hlbGxcXHYxLjBcXDtDOlxcUHJvZ3JhbSBGaWxlc1xcSGFza2VsbCBQbGF0Zm9ybVxcNy4xMC4zXFxtaW5nd1xcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxKYXZhXFxqZGsxLjguMF83N1xcYmluO0M6XFxjeWd3aW42NFxcYmluOyVsb2NhbGFwcGRhdGElXFxNaWNyb3NvZnRcXFdpbmRvd3NBcHBzO0Q6XFxYQU1QUFxccGhwO0M6XFxQcm9ncmFtIEZpbGVzXFxHaXRcXGNtZDtDOlxceGFtcHBcXHBocDtDOlxcUHJvZ3JhbURhdGFcXENvbXBvc2VyU2V0dXBcXGJpbjtDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcbm9kZWpzXFw7QzpcXFByb2dyYW0gRmlsZXNcXFBvc3RncmVTUUxcXDkuNlxcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxNQVRMQUJcXFIyMDE3YVxcYmluO0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXFNjcmlwdHNcXDtDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyXFw7QzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmdcXGNhYmFsXFxiaW47RDpcXFhBTVBQXFxwaHA7QzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmdcXENvbXBvc2VyXFx2ZW5kb3JcXGJpbjtDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXE1pY3Jvc29mdFxcV2luZG93c0FwcHM7QzpcXHB5dGhvbi0zLjYuMCcKUEFUSEVYVCA9ICcuQ09NOy5FWEU7LkJBVDsuQ01EOy5WQlM7LlZCRTsuSlM7LkpTRTsuV1NGOy5XU0g7Lk1TQycKUEFUSF9JTkZPID0gJy9hcGkvc3R1ZGVudHMvMS9ib29rbWFya2VkLXZhY2FuY2llcy8nClBST0NFU1NPUl9BUkNISVRFQ1RVUkUgPSAneDg2JwpQUk9DRVNTT1JfQVJDSElURVc2NDMyID0gJ0FNRDY0JwpQUk9DRVNTT1JfSURFTlRJRklFUiA9ICdJbnRlbDY0IEZhbWlseSA2IE1vZGVsIDU4IFN0ZXBwaW5nIDksIEdlbnVpbmVJbnRlbCcKUFJPQ0VTU09SX0xFVkVMID0gJzYnClBST0NFU1NPUl9SRVZJU0lPTiA9ICczYTA5JwpQUk9HUkFNREFUQSA9ICdDOlxcUHJvZ3JhbURhdGEnClBST0dSQU1GSUxFUyA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KScKUFJPR1JBTUZJTEVTKFg4NikgPSAnQzpcXFByb2dyYW0gRmlsZXMgKHg4NiknClBST0dSQU1XNjQzMiA9ICdDOlxcUHJvZ3JhbSBGaWxlcycKUFJPTVBUID0gJyRQJEcnClBTTU9EVUxFUEFUSCA9ICdDOlxcV0lORE9XU1xcc3lzdGVtMzJcXFdpbmRvd3NQb3dlclNoZWxsXFx2MS4wXFxNb2R1bGVzXFwnClBVQkxJQyA9ICdDOlxcVXNlcnNcXFB1YmxpYycKUVVFUllfU1RSSU5HID0gJycKUkVNT1RFX0FERFIgPSAnMTI3LjAuMC4xJwpSRU1PVEVfSE9TVCA9ICcnClJFUVVFU1RfTUVUSE9EID0gJ1BPU1QnClJVTl9NQUlOID0gJ3RydWUnClNDUklQVF9OQU1FID0gJycKU0VSVkVSX05BTUUgPSAnRmFyaGFuJwpTRVJWRVJfUE9SVCA9ICc4MDAwJwpTRVJWRVJfUFJPVE9DT0wgPSAnSFRUUC8xLjEnClNFUlZFUl9TT0ZUV0FSRSA9ICdXU0dJU2VydmVyLzAuMicKU0VTU0lPTk5BTUUgPSAnQ29uc29sZScKU1lTVEVNRFJJVkUgPSAnQzonClNZU1RFTVJPT1QgPSAnQzpcXFdJTkRPV1MnClRFTVAgPSAnQzpcXFVzZXJzXFxGQVJIQV9+MVxcQXBwRGF0YVxcTG9jYWxcXFRlbXAnClRNUCA9ICdDOlxcVXNlcnNcXEZBUkhBX34xXFxBcHBEYXRhXFxMb2NhbFxcVGVtcCcKVVNFUkRPTUFJTiA9ICdGYXJoYW4nClVTRVJET01BSU5fUk9BTUlOR1BST0ZJTEUgPSAnRmFyaGFuJwpVU0VSTkFNRSA9ICdGYXJoYW4gRmFyYXNkYWsnClVTRVJQUk9GSUxFID0gJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwJwpWQk9YX01TSV9JTlNUQUxMX1BBVEggPSAnQzpcXFByb2dyYW0gRmlsZXNcXE9yYWNsZVxcVmlydHVhbEJveFxcJwpXSU5ESVIgPSAnQzpcXFdJTkRPV1MnCndzZ2kuZXJyb3JzID0gPF9pby5UZXh0SU9XcmFwcGVyIG5hbWU9JzxzdGRlcnI+JyBtb2RlPSd3JyBlbmNvZGluZz0ndXRmLTgnPgp3c2dpLmZpbGVfd3JhcHBlciA9ICcnCndzZ2kuaW5wdXQgPSA8X2lvLkJ1ZmZlcmVkUmVhZGVyIG5hbWU9MTIyOD4Kd3NnaS5tdWx0aXByb2Nlc3MgPSBGYWxzZQp3c2dpLm11bHRpdGhyZWFkID0gVHJ1ZQp3c2dpLnJ1bl9vbmNlID0gRmFsc2UKd3NnaS51cmxfc2NoZW1lID0gJ2h0dHAnCndzZ2kudmVyc2lvbiA9IAoKU2V0dGluZ3M6ClVzaW5nIHNldHRpbmdzIG1vZHVsZSBrYXBlLnNldHRpbmdzCkFCU09MVVRFX1VSTF9PVkVSUklERVMgPSB7fQpBRE1JTlMgPSBbXQpBTExPV0VEX0hPU1RTID0gWydib3QucmVjcnVpdC5pZCcsICcxMDQuMjM2Ljc2LjE2MScsICdsb2NhbGhvc3QnLCAnMTI3LjAuMC4xJ10KQVBQRU5EX1NMQVNIID0gVHJ1ZQpBVVRIRU5USUNBVElPTl9CQUNLRU5EUyA9IFsnZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQnXQpBVVRIX1BBU1NXT1JEX1ZBTElEQVRPUlMgPSAnKioqKioqKioqKioqKioqKioqKionCkFVVEhfVVNFUl9NT0RFTCA9ICdhdXRoLlVzZXInCkJBU0VfRElSID0gJ0Q6XFxQUExBJwpDQUNIRVMgPSB7J2RlZmF1bHQnOiB7J0JBQ0tFTkQnOiAnZGphbmdvLmNvcmUuY2FjaGUuYmFja2VuZHMubG9jbWVtLkxvY01lbUNhY2hlJ319CkNBQ0hFX01JRERMRVdBUkVfQUxJQVMgPSAnZGVmYXVsdCcKQ0FDSEVfTUlERExFV0FSRV9LRVlfUFJFRklYID0gJyoqKioqKioqKioqKioqKioqKioqJwpDQUNIRV9NSURETEVXQVJFX1NFQ09ORFMgPSA2MDAKQ1NSRl9DT09LSUVfQUdFID0gMzE0NDk2MDAKQ1NSRl9DT09LSUVfRE9NQUlOID0gTm9uZQpDU1JGX0NPT0tJRV9IVFRQT05MWSA9IEZhbHNlCkNTUkZfQ09PS0lFX05BTUUgPSAnY3NyZnRva2VuJwpDU1JGX0NPT0tJRV9QQVRIID0gJy8nCkNTUkZfQ09PS0lFX1NFQ1VSRSA9IEZhbHNlCkNTUkZfRkFJTFVSRV9WSUVXID0gJ2RqYW5nby52aWV3cy5jc3JmLmNzcmZfZmFpbHVyZScKQ1NSRl9IRUFERVJfTkFNRSA9ICdIVFRQX1hfQ1NSRlRPS0VOJwpDU1JGX1RSVVNURURfT1JJR0lOUyA9IFtdCkRBVEFCQVNFUyA9IHsnZGVmYXVsdCc6IHsnRU5HSU5FJzogJ2RqYW5nby5kYi5iYWNrZW5kcy5wb3N0Z3Jlc3FsX3BzeWNvcGcyJywgJ05BTUUnOiAna2FwZScsICdVU0VSJzogJ2thcGUnLCAnUEFTU1dPUkQnOiAnKioqKioqKioqKioqKioqKioqKionLCAnSE9TVCc6ICdsb2NhbGhvc3QnLCAnUE9SVCc6ICcnLCAnQVRPTUlDX1JFUVVFU1RTJzogRmFsc2UsICdBVVRPQ09NTUlUJzogVHJ1ZSwgJ0NPTk5fTUFYX0FHRSc6IDAsICdPUFRJT05TJzoge30sICdUSU1FX1pPTkUnOiBOb25lLCAnVEVTVCc6IHsnQ0hBUlNFVCc6IE5vbmUsICdDT0xMQVRJT04nOiBOb25lLCAnTkFNRSc6IE5vbmUsICdNSVJST1InOiBOb25lfX19CkRBVEFCQVNFX1JPVVRFUlMgPSBbXQpEQVRBX1VQTE9BRF9NQVhfTUVNT1JZX1NJWkUgPSAyNjIxNDQwCkRBVEFfVVBMT0FEX01BWF9OVU1CRVJfRklFTERTID0gMTAwMApEQVRFVElNRV9GT1JNQVQgPSAnTiBqLCBZLCBQJwpEQVRFVElNRV9JTlBVVF9GT1JNQVRTID0gWyclWS0lbS0lZCAlSDolTTolUycsICclWS0lbS0lZCAlSDolTTolUy4lZicsICclWS0lbS0lZCAlSDolTScsICclWS0lbS0lZCcsICclbS8lZC8lWSAlSDolTTolUycsICclbS8lZC8lWSAlSDolTTolUy4lZicsICclbS8lZC8lWSAlSDolTScsICclbS8lZC8lWScsICclbS8lZC8leSAlSDolTTolUycsICclbS8lZC8leSAlSDolTTolUy4lZicsICclbS8lZC8leSAlSDolTScsICclbS8lZC8leSddCkRBVEVfRk9STUFUID0gJ04gaiwgWScKREFURV9JTlBVVF9GT1JNQVRTID0gWyclWS0lbS0lZCcsICclbS8lZC8lWScsICclbS8lZC8leScsICclYiAlZCAlWScsICclYiAlZCwgJVknLCAnJWQgJWIgJVknLCAnJWQgJWIsICVZJywgJyVCICVkICVZJywgJyVCICVkLCAlWScsICclZCAlQiAlWScsICclZCAlQiwgJVknXQpERUJVRyA9IFRydWUKREVCVUdfUFJPUEFHQVRFX0VYQ0VQVElPTlMgPSBGYWxzZQpERUNJTUFMX1NFUEFSQVRPUiA9ICcuJwpERUZBVUxUX0NIQVJTRVQgPSAndXRmLTgnCkRFRkFVTFRfQ09OVEVOVF9UWVBFID0gJ3RleHQvaHRtbCcKREVGQVVMVF9FWENFUFRJT05fUkVQT1JURVJfRklMVEVSID0gJ2RqYW5nby52aWV3cy5kZWJ1Zy5TYWZlRXhjZXB0aW9uUmVwb3J0ZXJGaWx0ZXInCkRFRkFVTFRfRklMRV9TVE9SQUdFID0gJ2RqYW5nby5jb3JlLmZpbGVzLnN0b3JhZ2UuRmlsZVN5c3RlbVN0b3JhZ2UnCkRFRkFVTFRfRlJPTV9FTUFJTCA9ICd3ZWJtYXN0ZXJAbG9jYWxob3N0JwpERUZBVUxUX0lOREVYX1RBQkxFU1BBQ0UgPSAnJwpERUZBVUxUX1RBQkxFU1BBQ0UgPSAnJwpESVNBTExPV0VEX1VTRVJfQUdFTlRTID0gW10KRU1BSUxfQkFDS0VORCA9ICdkamFuZ28uY29yZS5tYWlsLmJhY2tlbmRzLnNtdHAuRW1haWxCYWNrZW5kJwpFTUFJTF9IT1NUID0gJ2xvY2FsaG9zdCcKRU1BSUxfSE9TVF9QQVNTV09SRCA9ICcqKioqKioqKioqKioqKioqKioqKicKRU1BSUxfSE9TVF9VU0VSID0gJycKRU1BSUxfUE9SVCA9IDI1CkVNQUlMX1NTTF9DRVJURklMRSA9IE5vbmUKRU1BSUxfU1NMX0tFWUZJTEUgPSAnKioqKioqKioqKioqKioqKioqKionCkVNQUlMX1NVQkpFQ1RfUFJFRklYID0gJ1tEamFuZ29dICcKRU1BSUxfVElNRU9VVCA9IE5vbmUKRU1BSUxfVVNFX1NTTCA9IEZhbHNlCkVNQUlMX1VTRV9UTFMgPSBGYWxzZQpGSUxFX0NIQVJTRVQgPSAndXRmLTgnCkZJTEVfVVBMT0FEX0RJUkVDVE9SWV9QRVJNSVNTSU9OUyA9IE5vbmUKRklMRV9VUExPQURfSEFORExFUlMgPSBbJ2RqYW5nby5jb3JlLmZpbGVzLnVwbG9hZGhhbmRsZXIuTWVtb3J5RmlsZVVwbG9hZEhhbmRsZXInLCAnZGphbmdvLmNvcmUuZmlsZXMudXBsb2FkaGFuZGxlci5UZW1wb3JhcnlGaWxlVXBsb2FkSGFuZGxlciddCkZJTEVfVVBMT0FEX01BWF9NRU1PUllfU0laRSA9IDI2MjE0NDAKRklMRV9VUExPQURfUEVSTUlTU0lPTlMgPSBOb25lCkZJTEVfVVBMT0FEX1RFTVBfRElSID0gTm9uZQpGSVJTVF9EQVlfT0ZfV0VFSyA9IDAKRklYVFVSRV9ESVJTID0gW10KRk9SQ0VfU0NSSVBUX05BTUUgPSBOb25lCkZPUk1BVF9NT0RVTEVfUEFUSCA9IE5vbmUKR1pJUF9DT05URU5UX1RZUEVTID0gCklHTk9SQUJMRV80MDRfVVJMUyA9IFtdCklOU1RBTExFRF9BUFBTID0gWydkamFuZ28uY29udHJpYi5hZG1pbicsICdkamFuZ28uY29udHJpYi5hdXRoJywgJ2RqYW5nby5jb250cmliLmNvbnRlbnR0eXBlcycsICdkamFuZ28uY29udHJpYi5zZXNzaW9ucycsICdkamFuZ28uY29udHJpYi5tZXNzYWdlcycsICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcycsICd3ZWJwYWNrX2xvYWRlcicsICdjb3JlJywgJ3Jlc3RfZnJhbWV3b3JrJywgJ2RqYW5nb19ub3NlJywgJ3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXInLCAnc2lsayddCklOVEVSTkFMX0lQUyA9IFtdCkxBTkdVQUdFUyA9IFsoJ2FmJywgJ0FmcmlrYWFucycpLCAoJ2FyJywgJ0FyYWJpYycpLCAoJ2FzdCcsICdBc3R1cmlhbicpLCAoJ2F6JywgJ0F6ZXJiYWlqYW5pJyksICgnYmcnLCAnQnVsZ2FyaWFuJyksICgnYmUnLCAnQmVsYXJ1c2lhbicpLCAoJ2JuJywgJ0JlbmdhbGknKSwgKCdicicsICdCcmV0b24nKSwgKCdicycsICdCb3NuaWFuJyksICgnY2EnLCAnQ2F0YWxhbicpLCAoJ2NzJywgJ0N6ZWNoJyksICgnY3knLCAnV2Vsc2gnKSwgKCdkYScsICdEYW5pc2gnKSwgKCdkZScsICdHZXJtYW4nKSwgKCdkc2InLCAnTG93ZXIgU29yYmlhbicpLCAoJ2VsJywgJ0dyZWVrJyksICgnZW4nLCAnRW5nbGlzaCcpLCAoJ2VuLWF1JywgJ0F1c3RyYWxpYW4gRW5nbGlzaCcpLCAoJ2VuLWdiJywgJ0JyaXRpc2ggRW5nbGlzaCcpLCAoJ2VvJywgJ0VzcGVyYW50bycpLCAoJ2VzJywgJ1NwYW5pc2gnKSwgKCdlcy1hcicsICdBcmdlbnRpbmlhbiBTcGFuaXNoJyksICgnZXMtY28nLCAnQ29sb21iaWFuIFNwYW5pc2gnKSwgKCdlcy1teCcsICdNZXhpY2FuIFNwYW5pc2gnKSwgKCdlcy1uaScsICdOaWNhcmFndWFuIFNwYW5pc2gnKSwgKCdlcy12ZScsICdWZW5lenVlbGFuIFNwYW5pc2gnKSwgKCdldCcsICdFc3RvbmlhbicpLCAoJ2V1JywgJ0Jhc3F1ZScpLCAoJ2ZhJywgJ1BlcnNpYW4nKSwgKCdmaScsICdGaW5uaXNoJyksICgnZnInLCAnRnJlbmNoJyksICgnZnknLCAnRnJpc2lhbicpLCAoJ2dhJywgJ0lyaXNoJyksICgnZ2QnLCAnU2NvdHRpc2ggR2FlbGljJyksICgnZ2wnLCAnR2FsaWNpYW4nKSwgKCdoZScsICdIZWJyZXcnKSwgKCdoaScsICdIaW5kaScpLCAoJ2hyJywgJ0Nyb2F0aWFuJyksICgnaHNiJywgJ1VwcGVyIFNvcmJpYW4nKSwgKCdodScsICdIdW5nYXJpYW4nKSwgKCdpYScsICdJbnRlcmxpbmd1YScpLCAoJ2lkJywgJ0luZG9uZXNpYW4nKSwgKCdpbycsICdJZG8nKSwgKCdpcycsICdJY2VsYW5kaWMnKSwgKCdpdCcsICdJdGFsaWFuJyksICgnamEnLCAnSmFwYW5lc2UnKSwgKCdrYScsICdHZW9yZ2lhbicpLCAoJ2trJywgJ0themFraCcpLCAoJ2ttJywgJ0tobWVyJyksICgna24nLCAnS2FubmFkYScpLCAoJ2tvJywgJ0tvcmVhbicpLCAoJ2xiJywgJ0x1eGVtYm91cmdpc2gnKSwgKCdsdCcsICdMaXRodWFuaWFuJyksICgnbHYnLCAnTGF0dmlhbicpLCAoJ21rJywgJ01hY2Vkb25pYW4nKSwgKCdtbCcsICdNYWxheWFsYW0nKSwgKCdtbicsICdNb25nb2xpYW4nKSwgKCdtcicsICdNYXJhdGhpJyksICgnbXknLCAnQnVybWVzZScpLCAoJ25iJywgJ05vcndlZ2lhbiBCb2ttw6VsJyksICgnbmUnLCAnTmVwYWxpJyksICgnbmwnLCAnRHV0Y2gnKSwgKCdubicsICdOb3J3ZWdpYW4gTnlub3JzaycpLCAoJ29zJywgJ09zc2V0aWMnKSwgKCdwYScsICdQdW5qYWJpJyksICgncGwnLCAnUG9saXNoJyksICgncHQnLCAnUG9ydHVndWVzZScpLCAoJ3B0LWJyJywgJ0JyYXppbGlhbiBQb3J0dWd1ZXNlJyksICgncm8nLCAnUm9tYW5pYW4nKSwgKCdydScsICdSdXNzaWFuJyksICgnc2snLCAnU2xvdmFrJyksICgnc2wnLCAnU2xvdmVuaWFuJyksICgnc3EnLCAnQWxiYW5pYW4nKSwgKCdzcicsICdTZXJiaWFuJyksICgnc3ItbGF0bicsICdTZXJiaWFuIExhdGluJyksICgnc3YnLCAnU3dlZGlzaCcpLCAoJ3N3JywgJ1N3YWhpbGknKSwgKCd0YScsICdUYW1pbCcpLCAoJ3RlJywgJ1RlbHVndScpLCAoJ3RoJywgJ1RoYWknKSwgKCd0cicsICdUdXJraXNoJyksICgndHQnLCAnVGF0YXInKSwgKCd1ZG0nLCAnVWRtdXJ0JyksICgndWsnLCAnVWtyYWluaWFuJyksICgndXInLCAnVXJkdScpLCAoJ3ZpJywgJ1ZpZXRuYW1lc2UnKSwgKCd6aC1oYW5zJywgJ1NpbXBsaWZpZWQgQ2hpbmVzZScpLCAoJ3poLWhhbnQnLCAnVHJhZGl0aW9uYWwgQ2hpbmVzZScpXQpMQU5HVUFHRVNfQklESSA9IFsnaGUnLCAnYXInLCAnZmEnLCAndXInXQpMQU5HVUFHRV9DT0RFID0gJ2VuLXVzJwpMQU5HVUFHRV9DT09LSUVfQUdFID0gTm9uZQpMQU5HVUFHRV9DT09LSUVfRE9NQUlOID0gTm9uZQpMQU5HVUFHRV9DT09LSUVfTkFNRSA9ICdkamFuZ29fbGFuZ3VhZ2UnCkxBTkdVQUdFX0NPT0tJRV9QQVRIID0gJy8nCkxPQ0FMRV9QQVRIUyA9IFtdCkxPR0dJTkcgPSB7fQpMT0dHSU5HX0NPTkZJRyA9ICdsb2dnaW5nLmNvbmZpZy5kaWN0Q29uZmlnJwpMT0dJTl9SRURJUkVDVF9VUkwgPSAnL2FjY291bnRzL3Byb2ZpbGUvJwpMT0dJTl9VUkwgPSAnL2FjY291bnRzL2xvZ2luLycKTE9HT1VUX1JFRElSRUNUX1VSTCA9IE5vbmUKTUFOQUdFUlMgPSBbXQpNRURJQV9ST09UID0gJy9ob21lL2ZpbGVzJwpNRURJQV9VUkwgPSAnL2ZpbGVzLycKTUVTU0FHRV9TVE9SQUdFID0gJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzLnN0b3JhZ2UuZmFsbGJhY2suRmFsbGJhY2tTdG9yYWdlJwpNSURETEVXQVJFID0gWydkamFuZ28ubWlkZGxld2FyZS5zZWN1cml0eS5TZWN1cml0eU1pZGRsZXdhcmUnLCAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMubWlkZGxld2FyZS5TZXNzaW9uTWlkZGxld2FyZScsICdkamFuZ28ubWlkZGxld2FyZS5jb21tb24uQ29tbW9uTWlkZGxld2FyZScsICdkamFuZ28ubWlkZGxld2FyZS5jc3JmLkNzcmZWaWV3TWlkZGxld2FyZScsICdkamFuZ28uY29udHJpYi5hdXRoLm1pZGRsZXdhcmUuQXV0aGVudGljYXRpb25NaWRkbGV3YXJlJywgJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzLm1pZGRsZXdhcmUuTWVzc2FnZU1pZGRsZXdhcmUnLCAnZGphbmdvLm1pZGRsZXdhcmUuY2xpY2tqYWNraW5nLlhGcmFtZU9wdGlvbnNNaWRkbGV3YXJlJywgJ3NpbGsubWlkZGxld2FyZS5TaWxreU1pZGRsZXdhcmUnXQpNSURETEVXQVJFX0NMQVNTRVMgPSBbJ2RqYW5nby5taWRkbGV3YXJlLmNvbW1vbi5Db21tb25NaWRkbGV3YXJlJywgJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJ10KTUlHUkFUSU9OX01PRFVMRVMgPSB7fQpNT05USF9EQVlfRk9STUFUID0gJ0YgaicKTk9TRV9BUkdTID0gWyctLXdpdGgtY292ZXJhZ2UnLCAnLS1jb3Zlci1wYWNrYWdlPWNvcmUudmlld3MnLCAnLS1jb3Zlci1odG1sLWRpcj10ZXN0L2JhY2tlbmQnLCAnLS1jb3Zlci1odG1sJ10KTlVNQkVSX0dST1VQSU5HID0gMApQQVNTV09SRF9IQVNIRVJTID0gJyoqKioqKioqKioqKioqKioqKioqJwpQQVNTV09SRF9SRVNFVF9USU1FT1VUX0RBWVMgPSAnKioqKioqKioqKioqKioqKioqKionClBSRVBFTkRfV1dXID0gRmFsc2UKUkVTVF9GUkFNRVdPUksgPSB7J0RFRkFVTFRfUEVSTUlTU0lPTl9DTEFTU0VTJzogWydyZXN0X2ZyYW1ld29yay5wZXJtaXNzaW9ucy5EamFuZ29Nb2RlbFBlcm1pc3Npb25zT3JBbm9uUmVhZE9ubHknXX0KUk9PVF9VUkxDT05GID0gJ2thcGUudXJscycKUlVOTklOR19ERVZTRVJWRVIgPSBUcnVlClNFQ1JFVF9LRVkgPSAnKioqKioqKioqKioqKioqKioqKionClNFQ1VSRV9CUk9XU0VSX1hTU19GSUxURVIgPSBGYWxzZQpTRUNVUkVfQ09OVEVOVF9UWVBFX05PU05JRkYgPSBGYWxzZQpTRUNVUkVfSFNUU19JTkNMVURFX1NVQkRPTUFJTlMgPSBGYWxzZQpTRUNVUkVfSFNUU19TRUNPTkRTID0gMApTRUNVUkVfUFJPWFlfU1NMX0hFQURFUiA9IE5vbmUKU0VDVVJFX1JFRElSRUNUX0VYRU1QVCA9IFtdClNFQ1VSRV9TU0xfSE9TVCA9IE5vbmUKU0VDVVJFX1NTTF9SRURJUkVDVCA9IEZhbHNlClNFUlZFUl9FTUFJTCA9ICdyb290QGxvY2FsaG9zdCcKU0VTU0lPTl9DQUNIRV9BTElBUyA9ICdkZWZhdWx0JwpTRVNTSU9OX0NPT0tJRV9BR0UgPSAxMjA5NjAwClNFU1NJT05fQ09PS0lFX0RPTUFJTiA9IE5vbmUKU0VTU0lPTl9DT09LSUVfSFRUUE9OTFkgPSBGYWxzZQpTRVNTSU9OX0NPT0tJRV9OQU1FID0gJ3Nlc3Npb25pZCcKU0VTU0lPTl9DT09LSUVfUEFUSCA9ICcvJwpTRVNTSU9OX0NPT0tJRV9TRUNVUkUgPSBGYWxzZQpTRVNTSU9OX0VOR0lORSA9ICdkamFuZ28uY29udHJpYi5zZXNzaW9ucy5iYWNrZW5kcy5kYicKU0VTU0lPTl9FWFBJUkVfQVRfQlJPV1NFUl9DTE9TRSA9IEZhbHNlClNFU1NJT05fRklMRV9QQVRIID0gTm9uZQpTRVNTSU9OX1NBVkVfRVZFUllfUkVRVUVTVCA9IEZhbHNlClNFU1NJT05fU0VSSUFMSVpFUiA9ICdkamFuZ28uY29udHJpYi5zZXNzaW9ucy5zZXJpYWxpemVycy5KU09OU2VyaWFsaXplcicKU0VUVElOR1NfTU9EVUxFID0gJ2thcGUuc2V0dGluZ3MnClNIT1JUX0RBVEVUSU1FX0ZPUk1BVCA9ICdtL2QvWSBQJwpTSE9SVF9EQVRFX0ZPUk1BVCA9ICdtL2QvWScKU0lHTklOR19CQUNLRU5EID0gJ2RqYW5nby5jb3JlLnNpZ25pbmcuVGltZXN0YW1wU2lnbmVyJwpTSUxFTkNFRF9TWVNURU1fQ0hFQ0tTID0gW10KU1RBVElDRklMRVNfRElSUyA9ICdEOlxcUFBMQVxcYXNzZXRzJwpTVEFUSUNGSUxFU19GSU5ERVJTID0gWydkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcy5maW5kZXJzLkZpbGVTeXN0ZW1GaW5kZXInLCAnZGphbmdvLmNvbnRyaWIuc3RhdGljZmlsZXMuZmluZGVycy5BcHBEaXJlY3Rvcmllc0ZpbmRlciddClNUQVRJQ0ZJTEVTX1NUT1JBR0UgPSAnZGphbmdvLmNvbnRyaWIuc3RhdGljZmlsZXMuc3RvcmFnZS5TdGF0aWNGaWxlc1N0b3JhZ2UnClNUQVRJQ19ST09UID0gJy9ob21lL2Fzc2V0cycKU1RBVElDX1VSTCA9ICcvYXNzZXRzLycKVEVNUExBVEVTID0gW3snQkFDS0VORCc6ICdkamFuZ28udGVtcGxhdGUuYmFja2VuZHMuZGphbmdvLkRqYW5nb1RlbXBsYXRlcycsICdESVJTJzogW10sICdBUFBfRElSUyc6IFRydWUsICdPUFRJT05TJzogeydjb250ZXh0X3Byb2Nlc3NvcnMnOiBbJ2RqYW5nby50ZW1wbGF0ZS5jb250ZXh0X3Byb2Nlc3NvcnMuZGVidWcnLCAnZGphbmdvLnRlbXBsYXRlLmNvbnRleHRfcHJvY2Vzc29ycy5yZXF1ZXN0JywgJ2RqYW5nby5jb250cmliLmF1dGguY29udGV4dF9wcm9jZXNzb3JzLmF1dGgnLCAnZGphbmdvLmNvbnRyaWIubWVzc2FnZXMuY29udGV4dF9wcm9jZXNzb3JzLm1lc3NhZ2VzJ119fV0KVEVTVF9OT05fU0VSSUFMSVpFRF9BUFBTID0gW10KVEVTVF9SVU5ORVIgPSAnZGphbmdvX25vc2UuTm9zZVRlc3RTdWl0ZVJ1bm5lcicKVEhPVVNBTkRfU0VQQVJBVE9SID0gJywnClRJTUVfRk9STUFUID0gJ1AnClRJTUVfSU5QVVRfRk9STUFUUyA9IFsnJUg6JU06JVMnLCAnJUg6JU06JVMuJWYnLCAnJUg6JU0nXQpUSU1FX1pPTkUgPSAnVVRDJwpVU0VfRVRBR1MgPSBGYWxzZQpVU0VfSTE4TiA9IFRydWUKVVNFX0wxME4gPSBUcnVlClVTRV9USE9VU0FORF9TRVBBUkFUT1IgPSBGYWxzZQpVU0VfVFogPSBUcnVlClVTRV9YX0ZPUldBUkRFRF9IT1NUID0gRmFsc2UKVVNFX1hfRk9SV0FSREVEX1BPUlQgPSBGYWxzZQpXRUJQQUNLX0xPQURFUiA9IHsnREVGQVVMVCc6IHsnQlVORExFX0RJUl9OQU1FJzogJ2J1bmRsZXMvJywgJ1NUQVRTX0ZJTEUnOiAnRDpcXFBQTEFcXHdlYnBhY2stc3RhdHMuanNvbid9fQpXU0dJX0FQUExJQ0FUSU9OID0gJ2thcGUud3NnaS5hcHBsaWNhdGlvbicKWF9GUkFNRV9PUFRJT05TID0gJ1NBTUVPUklHSU4nCllFQVJfTU9OVEhfRk9STUFUID0gJ0YgWScKCgpZb3UncmUgc2VlaW5nIHRoaXMgZXJyb3IgYmVjYXVzZSB5b3UgaGF2ZSBERUJVRyA9IFRydWUgaW4geW91cgpEamFuZ28gc2V0dGluZ3MgZmlsZS4gQ2hhbmdlIHRoYXQgdG8gRmFsc2UsIGFuZCBEamFuZ28gd2lsbApkaXNwbGF5IGEgc3RhbmRhcmQgcGFnZSBnZW5lcmF0ZWQgYnkgdGhlIGhhbmRsZXIgZm9yIHRoaXMgc3RhdHVzIGNvZGUuCgo=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/plain\"}" - } -}, -{ - "model": "silk.response", - "pk": "a0840d03-fc30-44d1-97bf-3419ad351248", - "fields": { - "request": "349879b1-680a-43cc-9144-4332ff78f9ac", - "status_code": 500, - "raw_body": "UmVsYXRlZE9iamVjdERvZXNOb3RFeGlzdCBhdCAvYXBpL3N0dWRlbnRzLzQvYm9va21hcmtlZC12YWNhbmNpZXMvClVzZXIgaGFzIG5vIHN0dWRlbnQuCgpSZXF1ZXN0IE1ldGhvZDogUE9TVApSZXF1ZXN0IFVSTDogaHR0cDovLzEyNy4wLjAuMTo4MDAwL2FwaS9zdHVkZW50cy80L2Jvb2ttYXJrZWQtdmFjYW5jaWVzLwpEamFuZ28gVmVyc2lvbjogMS4xMC41ClB5dGhvbiBFeGVjdXRhYmxlOiBDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJccHl0aG9uLmV4ZQpQeXRob24gVmVyc2lvbjogMy42LjAKUHl0aG9uIFBhdGg6IFsnRDpcXFBQTEEnLCAnQzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXExvY2FsXFxQcm9ncmFtc1xcUHl0aG9uXFxQeXRob24zNi0zMlxccHl0aG9uMzYuemlwJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXERMTHMnLCAnQzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXExvY2FsXFxQcm9ncmFtc1xcUHl0aG9uXFxQeXRob24zNi0zMlxcbGliJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzInLCAnQzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXExvY2FsXFxQcm9ncmFtc1xcUHl0aG9uXFxQeXRob24zNi0zMlxcbGliXFxzaXRlLXBhY2thZ2VzJ10KU2VydmVyIHRpbWU6IE1vbiwgMjcgTWFyIDIwMTcgMTY6MDc6MDMgKzAwMDAKSW5zdGFsbGVkIEFwcGxpY2F0aW9uczoKWydkamFuZ28uY29udHJpYi5hZG1pbicsCiAnZGphbmdvLmNvbnRyaWIuYXV0aCcsCiAnZGphbmdvLmNvbnRyaWIuY29udGVudHR5cGVzJywKICdkamFuZ28uY29udHJpYi5zZXNzaW9ucycsCiAnZGphbmdvLmNvbnRyaWIubWVzc2FnZXMnLAogJ2RqYW5nby5jb250cmliLnN0YXRpY2ZpbGVzJywKICd3ZWJwYWNrX2xvYWRlcicsCiAnY29yZScsCiAncmVzdF9mcmFtZXdvcmsnLAogJ2RqYW5nb19ub3NlJywKICdyZXN0X2ZyYW1ld29ya19zd2FnZ2VyJywKICdzaWxrJ10KSW5zdGFsbGVkIE1pZGRsZXdhcmU6ClsnZGphbmdvLm1pZGRsZXdhcmUuc2VjdXJpdHkuU2VjdXJpdHlNaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5zZXNzaW9ucy5taWRkbGV3YXJlLlNlc3Npb25NaWRkbGV3YXJlJywKICdkamFuZ28ubWlkZGxld2FyZS5jb21tb24uQ29tbW9uTWlkZGxld2FyZScsCiAnZGphbmdvLm1pZGRsZXdhcmUuY3NyZi5Dc3JmVmlld01pZGRsZXdhcmUnLAogJ2RqYW5nby5jb250cmliLmF1dGgubWlkZGxld2FyZS5BdXRoZW50aWNhdGlvbk1pZGRsZXdhcmUnLAogJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzLm1pZGRsZXdhcmUuTWVzc2FnZU1pZGRsZXdhcmUnLAogJ2RqYW5nby5taWRkbGV3YXJlLmNsaWNramFja2luZy5YRnJhbWVPcHRpb25zTWlkZGxld2FyZScsCiAnc2lsay5taWRkbGV3YXJlLlNpbGt5TWlkZGxld2FyZSddCgoKVHJhY2ViYWNrOiAgCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNcZGphbmdvXGNvcmVcaGFuZGxlcnNcZXhjZXB0aW9uLnB5IiBpbiBpbm5lcgogIDM5LiAgICAgICAgICAgICByZXNwb25zZSA9IGdldF9yZXNwb25zZShyZXF1ZXN0KQoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXGRqYW5nb1xjb3JlXGhhbmRsZXJzXGJhc2UucHkiIGluIF9nZXRfcmVzcG9uc2UKICAxODcuICAgICAgICAgICAgICAgICByZXNwb25zZSA9IHNlbGYucHJvY2Vzc19leGNlcHRpb25fYnlfbWlkZGxld2FyZShlLCByZXF1ZXN0KQoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXGRqYW5nb1xjb3JlXGhhbmRsZXJzXGJhc2UucHkiIGluIF9nZXRfcmVzcG9uc2UKICAxODUuICAgICAgICAgICAgICAgICByZXNwb25zZSA9IHdyYXBwZWRfY2FsbGJhY2socmVxdWVzdCwgKmNhbGxiYWNrX2FyZ3MsICoqY2FsbGJhY2tfa3dhcmdzKQoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXGRqYW5nb1x2aWV3c1xkZWNvcmF0b3JzXGNzcmYucHkiIGluIHdyYXBwZWRfdmlldwogIDU4LiAgICAgICAgIHJldHVybiB2aWV3X2Z1bmMoKmFyZ3MsICoqa3dhcmdzKQoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXHJlc3RfZnJhbWV3b3JrXHZpZXdzZXRzLnB5IiBpbiB2aWV3CiAgODMuICAgICAgICAgICAgIHJldHVybiBzZWxmLmRpc3BhdGNoKHJlcXVlc3QsICphcmdzLCAqKmt3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3cy5weSIgaW4gZGlzcGF0Y2gKICA0ODMuICAgICAgICAgICAgIHJlc3BvbnNlID0gc2VsZi5oYW5kbGVfZXhjZXB0aW9uKGV4YykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3cy5weSIgaW4gaGFuZGxlX2V4Y2VwdGlvbgogIDQ0My4gICAgICAgICAgICAgc2VsZi5yYWlzZV91bmNhdWdodF9leGNlcHRpb24oZXhjKQoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXHJlc3RfZnJhbWV3b3JrXHZpZXdzLnB5IiBpbiBkaXNwYXRjaAogIDQ4MC4gICAgICAgICAgICAgcmVzcG9uc2UgPSBoYW5kbGVyKHJlcXVlc3QsICphcmdzLCAqKmt3YXJncykKCkZpbGUgIkQ6XFBQTEFcY29yZVx2aWV3c1xhY2NvdW50cy5weSIgaW4gYm9va21hcmtfdmFjYW5jaWVzCiAgMzMuICAgICAgICAgc3R1ZGVudCA9IHNlbGYucmVxdWVzdC51c2VyLnN0dWRlbnQKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cdXRpbHNcZnVuY3Rpb25hbC5weSIgaW4gaW5uZXIKICAyMzUuICAgICAgICAgcmV0dXJuIGZ1bmMoc2VsZi5fd3JhcHBlZCwgKmFyZ3MpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNcZGphbmdvXGRiXG1vZGVsc1xmaWVsZHNccmVsYXRlZF9kZXNjcmlwdG9ycy5weSIgaW4gX19nZXRfXwogIDM3MC4gICAgICAgICAgICAgICAgICAgICBzZWxmLnJlbGF0ZWQuZ2V0X2FjY2Vzc29yX25hbWUoKQoKRXhjZXB0aW9uIFR5cGU6IFJlbGF0ZWRPYmplY3REb2VzTm90RXhpc3QgYXQgL2FwaS9zdHVkZW50cy80L2Jvb2ttYXJrZWQtdmFjYW5jaWVzLwpFeGNlcHRpb24gVmFsdWU6IFVzZXIgaGFzIG5vIHN0dWRlbnQuClJlcXVlc3QgaW5mb3JtYXRpb246ClVTRVI6IGthcGUKCkdFVDogTm8gR0VUIGRhdGEKClBPU1Q6IE5vIFBPU1QgZGF0YQoKRklMRVM6IE5vIEZJTEVTIGRhdGEKCkNPT0tJRVM6CnNlc3Npb25pZCA9ICdibHQ4NzdnNWZqbXVjeHkzZGQ1dXhjaXphdmI5b3BvdicKY3NyZnRva2VuID0gJzFFRVAyU3dLdDFLOVFiV25GUFN5V1BJaWJ0TzdNQWFWcUtMRWVvb0ZnWVZ5ZGpZUG9nbjBPd3AyOW9VVzZBNksnCgpNRVRBOgpBTExVU0VSU1BST0ZJTEUgPSAnQzpcXFByb2dyYW1EYXRhJwpBUFBEQVRBID0gJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxSb2FtaW5nJwpDT01NT05QUk9HUkFNRklMRVMgPSAnQzpcXFByb2dyYW0gRmlsZXMgKHg4NilcXENvbW1vbiBGaWxlcycKQ09NTU9OUFJPR1JBTUZJTEVTKFg4NikgPSAnQzpcXFByb2dyYW0gRmlsZXMgKHg4NilcXENvbW1vbiBGaWxlcycKQ09NTU9OUFJPR1JBTVc2NDMyID0gJ0M6XFxQcm9ncmFtIEZpbGVzXFxDb21tb24gRmlsZXMnCkNPTVBVVEVSTkFNRSA9ICdGQVJIQU4nCkNPTVNQRUMgPSAnQzpcXFdJTkRPV1NcXHN5c3RlbTMyXFxjbWQuZXhlJwpDT05URU5UX0xFTkdUSCA9ICcyMycKQ09OVEVOVF9UWVBFID0gJ2FwcGxpY2F0aW9uL2pzb24nCkNTUkZfQ09PS0lFID0gJzFFRVAyU3dLdDFLOVFiV25GUFN5V1BJaWJ0TzdNQWFWcUtMRWVvb0ZnWVZ5ZGpZUG9nbjBPd3AyOW9VVzZBNksnCkRKQU5HT19TRVRUSU5HU19NT0RVTEUgPSAna2FwZS5zZXR0aW5ncycKRlBTX0JST1dTRVJfQVBQX1BST0ZJTEVfU1RSSU5HID0gJ0ludGVybmV0IEV4cGxvcmVyJwpGUFNfQlJPV1NFUl9VU0VSX1BST0ZJTEVfU1RSSU5HID0gJ0RlZmF1bHQnCkZQX05PX0hPU1RfQ0hFQ0sgPSAnTk8nCkdBVEVXQVlfSU5URVJGQUNFID0gJ0NHSS8xLjEnCkhPTUVEUklWRSA9ICdDOicKSE9NRVBBVEggPSAnXFxVc2Vyc1xcZmFyaGFfMDAwJwpIVFRQX0FDQ0VQVCA9ICdhcHBsaWNhdGlvbi9qc29uJwpIVFRQX0FDQ0VQVF9FTkNPRElORyA9ICdnemlwLCBkZWZsYXRlLCBicicKSFRUUF9BQ0NFUFRfTEFOR1VBR0UgPSAnaWQtSUQsaWQ7cT0wLjgsZW4tVVM7cT0wLjYsZW47cT0wLjQnCkhUVFBfQ09OTkVDVElPTiA9ICdrZWVwLWFsaXZlJwpIVFRQX0NPT0tJRSA9ICdzZXNzaW9uaWQ9Ymx0ODc3ZzVmam11Y3h5M2RkNXV4Y2l6YXZiOW9wb3Y7IGNzcmZ0b2tlbj0xRUVQMlN3S3QxSzlRYlduRlBTeVdQSWlidE83TUFhVnFLTEVlb29GZ1lWeWRqWVBvZ24wT3dwMjlvVVc2QTZLJwpIVFRQX0hPU1QgPSAnMTI3LjAuMC4xOjgwMDAnCkhUVFBfT1JJR0lOID0gJ2h0dHA6Ly8xMjcuMC4wLjE6ODAwMCcKSFRUUF9SRUZFUkVSID0gJ2h0dHA6Ly8xMjcuMC4wLjE6ODAwMC9hcGknCkhUVFBfVVNFUl9BR0VOVCA9ICdNb3ppbGxhLzUuMCAoV2luZG93cyBOVCAxMC4wOyBXT1c2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzU2LjAuMjkyNC44NyBTYWZhcmkvNTM3LjM2JwpIVFRQX1hfQ1NSRlRPS0VOID0gJ2pxOTFCdUY1ZTVSN1NqTUZSYzJUTmZ2V1U4bERPNnd5SXdnUU4weDAxMjJ3ZnJPN0FEeGxGV2NHUzNyczg2c24nCkxPQ0FMQVBQREFUQSA9ICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWwnCkxPR09OU0VSVkVSID0gJ1xcXFxGQVJIQU4nCk5VTUJFUl9PRl9QUk9DRVNTT1JTID0gJzInCk9ORURSSVZFID0gJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxPbmVEcml2ZScKT1MgPSAnV2luZG93c19OVCcKUEFUSCA9ICdDOlxcUHJvZ3JhbURhdGFcXE9yYWNsZVxcSmF2YVxcamF2YXBhdGg7QzpcXFByb2dyYW0gRmlsZXNcXEhhc2tlbGxcXGJpbjtDOlxcUHJvZ3JhbSBGaWxlc1xcSGFza2VsbCBQbGF0Zm9ybVxcNy4xMC4zXFxsaWJcXGV4dHJhbGlic1xcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxIYXNrZWxsIFBsYXRmb3JtXFw3LjEwLjNcXGJpbjtDOlxcV0lORE9XU1xcc3lzdGVtMzI7QzpcXFdJTkRPV1M7QzpcXFdJTkRPV1NcXFN5c3RlbTMyXFxXYmVtO0M6XFxXSU5ET1dTXFxTeXN0ZW0zMlxcV2luZG93c1Bvd2VyU2hlbGxcXHYxLjBcXDtDOlxcUHJvZ3JhbSBGaWxlc1xcSGFza2VsbCBQbGF0Zm9ybVxcNy4xMC4zXFxtaW5nd1xcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxKYXZhXFxqZGsxLjguMF83N1xcYmluO0M6XFxjeWd3aW42NFxcYmluOyVsb2NhbGFwcGRhdGElXFxNaWNyb3NvZnRcXFdpbmRvd3NBcHBzO0Q6XFxYQU1QUFxccGhwO0M6XFxQcm9ncmFtIEZpbGVzXFxHaXRcXGNtZDtDOlxceGFtcHBcXHBocDtDOlxcUHJvZ3JhbURhdGFcXENvbXBvc2VyU2V0dXBcXGJpbjtDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcbm9kZWpzXFw7QzpcXFByb2dyYW0gRmlsZXNcXFBvc3RncmVTUUxcXDkuNlxcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxNQVRMQUJcXFIyMDE3YVxcYmluO0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXFNjcmlwdHNcXDtDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyXFw7QzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmdcXGNhYmFsXFxiaW47RDpcXFhBTVBQXFxwaHA7QzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmdcXENvbXBvc2VyXFx2ZW5kb3JcXGJpbjtDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXE1pY3Jvc29mdFxcV2luZG93c0FwcHM7QzpcXHB5dGhvbi0zLjYuMCcKUEFUSEVYVCA9ICcuQ09NOy5FWEU7LkJBVDsuQ01EOy5WQlM7LlZCRTsuSlM7LkpTRTsuV1NGOy5XU0g7Lk1TQycKUEFUSF9JTkZPID0gJy9hcGkvc3R1ZGVudHMvNC9ib29rbWFya2VkLXZhY2FuY2llcy8nClBST0NFU1NPUl9BUkNISVRFQ1RVUkUgPSAneDg2JwpQUk9DRVNTT1JfQVJDSElURVc2NDMyID0gJ0FNRDY0JwpQUk9DRVNTT1JfSURFTlRJRklFUiA9ICdJbnRlbDY0IEZhbWlseSA2IE1vZGVsIDU4IFN0ZXBwaW5nIDksIEdlbnVpbmVJbnRlbCcKUFJPQ0VTU09SX0xFVkVMID0gJzYnClBST0NFU1NPUl9SRVZJU0lPTiA9ICczYTA5JwpQUk9HUkFNREFUQSA9ICdDOlxcUHJvZ3JhbURhdGEnClBST0dSQU1GSUxFUyA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KScKUFJPR1JBTUZJTEVTKFg4NikgPSAnQzpcXFByb2dyYW0gRmlsZXMgKHg4NiknClBST0dSQU1XNjQzMiA9ICdDOlxcUHJvZ3JhbSBGaWxlcycKUFJPTVBUID0gJyRQJEcnClBTTU9EVUxFUEFUSCA9ICdDOlxcV0lORE9XU1xcc3lzdGVtMzJcXFdpbmRvd3NQb3dlclNoZWxsXFx2MS4wXFxNb2R1bGVzXFwnClBVQkxJQyA9ICdDOlxcVXNlcnNcXFB1YmxpYycKUVVFUllfU1RSSU5HID0gJycKUkVNT1RFX0FERFIgPSAnMTI3LjAuMC4xJwpSRU1PVEVfSE9TVCA9ICcnClJFUVVFU1RfTUVUSE9EID0gJ1BPU1QnClJVTl9NQUlOID0gJ3RydWUnClNDUklQVF9OQU1FID0gJycKU0VSVkVSX05BTUUgPSAnRmFyaGFuJwpTRVJWRVJfUE9SVCA9ICc4MDAwJwpTRVJWRVJfUFJPVE9DT0wgPSAnSFRUUC8xLjEnClNFUlZFUl9TT0ZUV0FSRSA9ICdXU0dJU2VydmVyLzAuMicKU0VTU0lPTk5BTUUgPSAnQ29uc29sZScKU1lTVEVNRFJJVkUgPSAnQzonClNZU1RFTVJPT1QgPSAnQzpcXFdJTkRPV1MnClRFTVAgPSAnQzpcXFVzZXJzXFxGQVJIQV9+MVxcQXBwRGF0YVxcTG9jYWxcXFRlbXAnClRNUCA9ICdDOlxcVXNlcnNcXEZBUkhBX34xXFxBcHBEYXRhXFxMb2NhbFxcVGVtcCcKVVNFUkRPTUFJTiA9ICdGYXJoYW4nClVTRVJET01BSU5fUk9BTUlOR1BST0ZJTEUgPSAnRmFyaGFuJwpVU0VSTkFNRSA9ICdGYXJoYW4gRmFyYXNkYWsnClVTRVJQUk9GSUxFID0gJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwJwpWQk9YX01TSV9JTlNUQUxMX1BBVEggPSAnQzpcXFByb2dyYW0gRmlsZXNcXE9yYWNsZVxcVmlydHVhbEJveFxcJwpXSU5ESVIgPSAnQzpcXFdJTkRPV1MnCndzZ2kuZXJyb3JzID0gPF9pby5UZXh0SU9XcmFwcGVyIG5hbWU9JzxzdGRlcnI+JyBtb2RlPSd3JyBlbmNvZGluZz0ndXRmLTgnPgp3c2dpLmZpbGVfd3JhcHBlciA9ICcnCndzZ2kuaW5wdXQgPSA8X2lvLkJ1ZmZlcmVkUmVhZGVyIG5hbWU9NDM2Pgp3c2dpLm11bHRpcHJvY2VzcyA9IEZhbHNlCndzZ2kubXVsdGl0aHJlYWQgPSBUcnVlCndzZ2kucnVuX29uY2UgPSBGYWxzZQp3c2dpLnVybF9zY2hlbWUgPSAnaHR0cCcKd3NnaS52ZXJzaW9uID0gCgpTZXR0aW5nczoKVXNpbmcgc2V0dGluZ3MgbW9kdWxlIGthcGUuc2V0dGluZ3MKQUJTT0xVVEVfVVJMX09WRVJSSURFUyA9IHt9CkFETUlOUyA9IFtdCkFMTE9XRURfSE9TVFMgPSBbJ2JvdC5yZWNydWl0LmlkJywgJzEwNC4yMzYuNzYuMTYxJywgJ2xvY2FsaG9zdCcsICcxMjcuMC4wLjEnXQpBUFBFTkRfU0xBU0ggPSBUcnVlCkFVVEhFTlRJQ0FUSU9OX0JBQ0tFTkRTID0gWydkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCddCkFVVEhfUEFTU1dPUkRfVkFMSURBVE9SUyA9ICcqKioqKioqKioqKioqKioqKioqKicKQVVUSF9VU0VSX01PREVMID0gJ2F1dGguVXNlcicKQkFTRV9ESVIgPSAnRDpcXFBQTEEnCkNBQ0hFUyA9IHsnZGVmYXVsdCc6IHsnQkFDS0VORCc6ICdkamFuZ28uY29yZS5jYWNoZS5iYWNrZW5kcy5sb2NtZW0uTG9jTWVtQ2FjaGUnfX0KQ0FDSEVfTUlERExFV0FSRV9BTElBUyA9ICdkZWZhdWx0JwpDQUNIRV9NSURETEVXQVJFX0tFWV9QUkVGSVggPSAnKioqKioqKioqKioqKioqKioqKionCkNBQ0hFX01JRERMRVdBUkVfU0VDT05EUyA9IDYwMApDU1JGX0NPT0tJRV9BR0UgPSAzMTQ0OTYwMApDU1JGX0NPT0tJRV9ET01BSU4gPSBOb25lCkNTUkZfQ09PS0lFX0hUVFBPTkxZID0gRmFsc2UKQ1NSRl9DT09LSUVfTkFNRSA9ICdjc3JmdG9rZW4nCkNTUkZfQ09PS0lFX1BBVEggPSAnLycKQ1NSRl9DT09LSUVfU0VDVVJFID0gRmFsc2UKQ1NSRl9GQUlMVVJFX1ZJRVcgPSAnZGphbmdvLnZpZXdzLmNzcmYuY3NyZl9mYWlsdXJlJwpDU1JGX0hFQURFUl9OQU1FID0gJ0hUVFBfWF9DU1JGVE9LRU4nCkNTUkZfVFJVU1RFRF9PUklHSU5TID0gW10KREFUQUJBU0VTID0geydkZWZhdWx0JzogeydFTkdJTkUnOiAnZGphbmdvLmRiLmJhY2tlbmRzLnBvc3RncmVzcWxfcHN5Y29wZzInLCAnTkFNRSc6ICdrYXBlJywgJ1VTRVInOiAna2FwZScsICdQQVNTV09SRCc6ICcqKioqKioqKioqKioqKioqKioqKicsICdIT1NUJzogJ2xvY2FsaG9zdCcsICdQT1JUJzogJycsICdBVE9NSUNfUkVRVUVTVFMnOiBGYWxzZSwgJ0FVVE9DT01NSVQnOiBUcnVlLCAnQ09OTl9NQVhfQUdFJzogMCwgJ09QVElPTlMnOiB7fSwgJ1RJTUVfWk9ORSc6IE5vbmUsICdURVNUJzogeydDSEFSU0VUJzogTm9uZSwgJ0NPTExBVElPTic6IE5vbmUsICdOQU1FJzogTm9uZSwgJ01JUlJPUic6IE5vbmV9fX0KREFUQUJBU0VfUk9VVEVSUyA9IFtdCkRBVEFfVVBMT0FEX01BWF9NRU1PUllfU0laRSA9IDI2MjE0NDAKREFUQV9VUExPQURfTUFYX05VTUJFUl9GSUVMRFMgPSAxMDAwCkRBVEVUSU1FX0ZPUk1BVCA9ICdOIGosIFksIFAnCkRBVEVUSU1FX0lOUFVUX0ZPUk1BVFMgPSBbJyVZLSVtLSVkICVIOiVNOiVTJywgJyVZLSVtLSVkICVIOiVNOiVTLiVmJywgJyVZLSVtLSVkICVIOiVNJywgJyVZLSVtLSVkJywgJyVtLyVkLyVZICVIOiVNOiVTJywgJyVtLyVkLyVZICVIOiVNOiVTLiVmJywgJyVtLyVkLyVZICVIOiVNJywgJyVtLyVkLyVZJywgJyVtLyVkLyV5ICVIOiVNOiVTJywgJyVtLyVkLyV5ICVIOiVNOiVTLiVmJywgJyVtLyVkLyV5ICVIOiVNJywgJyVtLyVkLyV5J10KREFURV9GT1JNQVQgPSAnTiBqLCBZJwpEQVRFX0lOUFVUX0ZPUk1BVFMgPSBbJyVZLSVtLSVkJywgJyVtLyVkLyVZJywgJyVtLyVkLyV5JywgJyViICVkICVZJywgJyViICVkLCAlWScsICclZCAlYiAlWScsICclZCAlYiwgJVknLCAnJUIgJWQgJVknLCAnJUIgJWQsICVZJywgJyVkICVCICVZJywgJyVkICVCLCAlWSddCkRFQlVHID0gVHJ1ZQpERUJVR19QUk9QQUdBVEVfRVhDRVBUSU9OUyA9IEZhbHNlCkRFQ0lNQUxfU0VQQVJBVE9SID0gJy4nCkRFRkFVTFRfQ0hBUlNFVCA9ICd1dGYtOCcKREVGQVVMVF9DT05URU5UX1RZUEUgPSAndGV4dC9odG1sJwpERUZBVUxUX0VYQ0VQVElPTl9SRVBPUlRFUl9GSUxURVIgPSAnZGphbmdvLnZpZXdzLmRlYnVnLlNhZmVFeGNlcHRpb25SZXBvcnRlckZpbHRlcicKREVGQVVMVF9GSUxFX1NUT1JBR0UgPSAnZGphbmdvLmNvcmUuZmlsZXMuc3RvcmFnZS5GaWxlU3lzdGVtU3RvcmFnZScKREVGQVVMVF9GUk9NX0VNQUlMID0gJ3dlYm1hc3RlckBsb2NhbGhvc3QnCkRFRkFVTFRfSU5ERVhfVEFCTEVTUEFDRSA9ICcnCkRFRkFVTFRfVEFCTEVTUEFDRSA9ICcnCkRJU0FMTE9XRURfVVNFUl9BR0VOVFMgPSBbXQpFTUFJTF9CQUNLRU5EID0gJ2RqYW5nby5jb3JlLm1haWwuYmFja2VuZHMuc210cC5FbWFpbEJhY2tlbmQnCkVNQUlMX0hPU1QgPSAnbG9jYWxob3N0JwpFTUFJTF9IT1NUX1BBU1NXT1JEID0gJyoqKioqKioqKioqKioqKioqKioqJwpFTUFJTF9IT1NUX1VTRVIgPSAnJwpFTUFJTF9QT1JUID0gMjUKRU1BSUxfU1NMX0NFUlRGSUxFID0gTm9uZQpFTUFJTF9TU0xfS0VZRklMRSA9ICcqKioqKioqKioqKioqKioqKioqKicKRU1BSUxfU1VCSkVDVF9QUkVGSVggPSAnW0RqYW5nb10gJwpFTUFJTF9USU1FT1VUID0gTm9uZQpFTUFJTF9VU0VfU1NMID0gRmFsc2UKRU1BSUxfVVNFX1RMUyA9IEZhbHNlCkZJTEVfQ0hBUlNFVCA9ICd1dGYtOCcKRklMRV9VUExPQURfRElSRUNUT1JZX1BFUk1JU1NJT05TID0gTm9uZQpGSUxFX1VQTE9BRF9IQU5ETEVSUyA9IFsnZGphbmdvLmNvcmUuZmlsZXMudXBsb2FkaGFuZGxlci5NZW1vcnlGaWxlVXBsb2FkSGFuZGxlcicsICdkamFuZ28uY29yZS5maWxlcy51cGxvYWRoYW5kbGVyLlRlbXBvcmFyeUZpbGVVcGxvYWRIYW5kbGVyJ10KRklMRV9VUExPQURfTUFYX01FTU9SWV9TSVpFID0gMjYyMTQ0MApGSUxFX1VQTE9BRF9QRVJNSVNTSU9OUyA9IE5vbmUKRklMRV9VUExPQURfVEVNUF9ESVIgPSBOb25lCkZJUlNUX0RBWV9PRl9XRUVLID0gMApGSVhUVVJFX0RJUlMgPSBbXQpGT1JDRV9TQ1JJUFRfTkFNRSA9IE5vbmUKRk9STUFUX01PRFVMRV9QQVRIID0gTm9uZQpHWklQX0NPTlRFTlRfVFlQRVMgPSAKSUdOT1JBQkxFXzQwNF9VUkxTID0gW10KSU5TVEFMTEVEX0FQUFMgPSBbJ2RqYW5nby5jb250cmliLmFkbWluJywgJ2RqYW5nby5jb250cmliLmF1dGgnLCAnZGphbmdvLmNvbnRyaWIuY29udGVudHR5cGVzJywgJ2RqYW5nby5jb250cmliLnNlc3Npb25zJywgJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzJywgJ2RqYW5nby5jb250cmliLnN0YXRpY2ZpbGVzJywgJ3dlYnBhY2tfbG9hZGVyJywgJ2NvcmUnLCAncmVzdF9mcmFtZXdvcmsnLCAnZGphbmdvX25vc2UnLCAncmVzdF9mcmFtZXdvcmtfc3dhZ2dlcicsICdzaWxrJ10KSU5URVJOQUxfSVBTID0gW10KTEFOR1VBR0VTID0gWygnYWYnLCAnQWZyaWthYW5zJyksICgnYXInLCAnQXJhYmljJyksICgnYXN0JywgJ0FzdHVyaWFuJyksICgnYXonLCAnQXplcmJhaWphbmknKSwgKCdiZycsICdCdWxnYXJpYW4nKSwgKCdiZScsICdCZWxhcnVzaWFuJyksICgnYm4nLCAnQmVuZ2FsaScpLCAoJ2JyJywgJ0JyZXRvbicpLCAoJ2JzJywgJ0Jvc25pYW4nKSwgKCdjYScsICdDYXRhbGFuJyksICgnY3MnLCAnQ3plY2gnKSwgKCdjeScsICdXZWxzaCcpLCAoJ2RhJywgJ0RhbmlzaCcpLCAoJ2RlJywgJ0dlcm1hbicpLCAoJ2RzYicsICdMb3dlciBTb3JiaWFuJyksICgnZWwnLCAnR3JlZWsnKSwgKCdlbicsICdFbmdsaXNoJyksICgnZW4tYXUnLCAnQXVzdHJhbGlhbiBFbmdsaXNoJyksICgnZW4tZ2InLCAnQnJpdGlzaCBFbmdsaXNoJyksICgnZW8nLCAnRXNwZXJhbnRvJyksICgnZXMnLCAnU3BhbmlzaCcpLCAoJ2VzLWFyJywgJ0FyZ2VudGluaWFuIFNwYW5pc2gnKSwgKCdlcy1jbycsICdDb2xvbWJpYW4gU3BhbmlzaCcpLCAoJ2VzLW14JywgJ01leGljYW4gU3BhbmlzaCcpLCAoJ2VzLW5pJywgJ05pY2FyYWd1YW4gU3BhbmlzaCcpLCAoJ2VzLXZlJywgJ1ZlbmV6dWVsYW4gU3BhbmlzaCcpLCAoJ2V0JywgJ0VzdG9uaWFuJyksICgnZXUnLCAnQmFzcXVlJyksICgnZmEnLCAnUGVyc2lhbicpLCAoJ2ZpJywgJ0Zpbm5pc2gnKSwgKCdmcicsICdGcmVuY2gnKSwgKCdmeScsICdGcmlzaWFuJyksICgnZ2EnLCAnSXJpc2gnKSwgKCdnZCcsICdTY290dGlzaCBHYWVsaWMnKSwgKCdnbCcsICdHYWxpY2lhbicpLCAoJ2hlJywgJ0hlYnJldycpLCAoJ2hpJywgJ0hpbmRpJyksICgnaHInLCAnQ3JvYXRpYW4nKSwgKCdoc2InLCAnVXBwZXIgU29yYmlhbicpLCAoJ2h1JywgJ0h1bmdhcmlhbicpLCAoJ2lhJywgJ0ludGVybGluZ3VhJyksICgnaWQnLCAnSW5kb25lc2lhbicpLCAoJ2lvJywgJ0lkbycpLCAoJ2lzJywgJ0ljZWxhbmRpYycpLCAoJ2l0JywgJ0l0YWxpYW4nKSwgKCdqYScsICdKYXBhbmVzZScpLCAoJ2thJywgJ0dlb3JnaWFuJyksICgna2snLCAnS2F6YWtoJyksICgna20nLCAnS2htZXInKSwgKCdrbicsICdLYW5uYWRhJyksICgna28nLCAnS29yZWFuJyksICgnbGInLCAnTHV4ZW1ib3VyZ2lzaCcpLCAoJ2x0JywgJ0xpdGh1YW5pYW4nKSwgKCdsdicsICdMYXR2aWFuJyksICgnbWsnLCAnTWFjZWRvbmlhbicpLCAoJ21sJywgJ01hbGF5YWxhbScpLCAoJ21uJywgJ01vbmdvbGlhbicpLCAoJ21yJywgJ01hcmF0aGknKSwgKCdteScsICdCdXJtZXNlJyksICgnbmInLCAnTm9yd2VnaWFuIEJva23DpWwnKSwgKCduZScsICdOZXBhbGknKSwgKCdubCcsICdEdXRjaCcpLCAoJ25uJywgJ05vcndlZ2lhbiBOeW5vcnNrJyksICgnb3MnLCAnT3NzZXRpYycpLCAoJ3BhJywgJ1B1bmphYmknKSwgKCdwbCcsICdQb2xpc2gnKSwgKCdwdCcsICdQb3J0dWd1ZXNlJyksICgncHQtYnInLCAnQnJhemlsaWFuIFBvcnR1Z3Vlc2UnKSwgKCdybycsICdSb21hbmlhbicpLCAoJ3J1JywgJ1J1c3NpYW4nKSwgKCdzaycsICdTbG92YWsnKSwgKCdzbCcsICdTbG92ZW5pYW4nKSwgKCdzcScsICdBbGJhbmlhbicpLCAoJ3NyJywgJ1NlcmJpYW4nKSwgKCdzci1sYXRuJywgJ1NlcmJpYW4gTGF0aW4nKSwgKCdzdicsICdTd2VkaXNoJyksICgnc3cnLCAnU3dhaGlsaScpLCAoJ3RhJywgJ1RhbWlsJyksICgndGUnLCAnVGVsdWd1JyksICgndGgnLCAnVGhhaScpLCAoJ3RyJywgJ1R1cmtpc2gnKSwgKCd0dCcsICdUYXRhcicpLCAoJ3VkbScsICdVZG11cnQnKSwgKCd1aycsICdVa3JhaW5pYW4nKSwgKCd1cicsICdVcmR1JyksICgndmknLCAnVmlldG5hbWVzZScpLCAoJ3poLWhhbnMnLCAnU2ltcGxpZmllZCBDaGluZXNlJyksICgnemgtaGFudCcsICdUcmFkaXRpb25hbCBDaGluZXNlJyldCkxBTkdVQUdFU19CSURJID0gWydoZScsICdhcicsICdmYScsICd1ciddCkxBTkdVQUdFX0NPREUgPSAnZW4tdXMnCkxBTkdVQUdFX0NPT0tJRV9BR0UgPSBOb25lCkxBTkdVQUdFX0NPT0tJRV9ET01BSU4gPSBOb25lCkxBTkdVQUdFX0NPT0tJRV9OQU1FID0gJ2RqYW5nb19sYW5ndWFnZScKTEFOR1VBR0VfQ09PS0lFX1BBVEggPSAnLycKTE9DQUxFX1BBVEhTID0gW10KTE9HR0lORyA9IHt9CkxPR0dJTkdfQ09ORklHID0gJ2xvZ2dpbmcuY29uZmlnLmRpY3RDb25maWcnCkxPR0lOX1JFRElSRUNUX1VSTCA9ICcvYWNjb3VudHMvcHJvZmlsZS8nCkxPR0lOX1VSTCA9ICcvYWNjb3VudHMvbG9naW4vJwpMT0dPVVRfUkVESVJFQ1RfVVJMID0gTm9uZQpNQU5BR0VSUyA9IFtdCk1FRElBX1JPT1QgPSAnL2hvbWUvZmlsZXMnCk1FRElBX1VSTCA9ICcvZmlsZXMvJwpNRVNTQUdFX1NUT1JBR0UgPSAnZGphbmdvLmNvbnRyaWIubWVzc2FnZXMuc3RvcmFnZS5mYWxsYmFjay5GYWxsYmFja1N0b3JhZ2UnCk1JRERMRVdBUkUgPSBbJ2RqYW5nby5taWRkbGV3YXJlLnNlY3VyaXR5LlNlY3VyaXR5TWlkZGxld2FyZScsICdkamFuZ28uY29udHJpYi5zZXNzaW9ucy5taWRkbGV3YXJlLlNlc3Npb25NaWRkbGV3YXJlJywgJ2RqYW5nby5taWRkbGV3YXJlLmNvbW1vbi5Db21tb25NaWRkbGV3YXJlJywgJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJywgJ2RqYW5nby5jb250cmliLmF1dGgubWlkZGxld2FyZS5BdXRoZW50aWNhdGlvbk1pZGRsZXdhcmUnLCAnZGphbmdvLmNvbnRyaWIubWVzc2FnZXMubWlkZGxld2FyZS5NZXNzYWdlTWlkZGxld2FyZScsICdkamFuZ28ubWlkZGxld2FyZS5jbGlja2phY2tpbmcuWEZyYW1lT3B0aW9uc01pZGRsZXdhcmUnLCAnc2lsay5taWRkbGV3YXJlLlNpbGt5TWlkZGxld2FyZSddCk1JRERMRVdBUkVfQ0xBU1NFUyA9IFsnZGphbmdvLm1pZGRsZXdhcmUuY29tbW9uLkNvbW1vbk1pZGRsZXdhcmUnLCAnZGphbmdvLm1pZGRsZXdhcmUuY3NyZi5Dc3JmVmlld01pZGRsZXdhcmUnXQpNSUdSQVRJT05fTU9EVUxFUyA9IHt9Ck1PTlRIX0RBWV9GT1JNQVQgPSAnRiBqJwpOT1NFX0FSR1MgPSBbJy0td2l0aC1jb3ZlcmFnZScsICctLWNvdmVyLXBhY2thZ2U9Y29yZS52aWV3cycsICctLWNvdmVyLWh0bWwtZGlyPXRlc3QvYmFja2VuZCcsICctLWNvdmVyLWh0bWwnXQpOVU1CRVJfR1JPVVBJTkcgPSAwClBBU1NXT1JEX0hBU0hFUlMgPSAnKioqKioqKioqKioqKioqKioqKionClBBU1NXT1JEX1JFU0VUX1RJTUVPVVRfREFZUyA9ICcqKioqKioqKioqKioqKioqKioqKicKUFJFUEVORF9XV1cgPSBGYWxzZQpSRVNUX0ZSQU1FV09SSyA9IHsnREVGQVVMVF9QRVJNSVNTSU9OX0NMQVNTRVMnOiBbJ3Jlc3RfZnJhbWV3b3JrLnBlcm1pc3Npb25zLkRqYW5nb01vZGVsUGVybWlzc2lvbnNPckFub25SZWFkT25seSddfQpST09UX1VSTENPTkYgPSAna2FwZS51cmxzJwpSVU5OSU5HX0RFVlNFUlZFUiA9IFRydWUKU0VDUkVUX0tFWSA9ICcqKioqKioqKioqKioqKioqKioqKicKU0VDVVJFX0JST1dTRVJfWFNTX0ZJTFRFUiA9IEZhbHNlClNFQ1VSRV9DT05URU5UX1RZUEVfTk9TTklGRiA9IEZhbHNlClNFQ1VSRV9IU1RTX0lOQ0xVREVfU1VCRE9NQUlOUyA9IEZhbHNlClNFQ1VSRV9IU1RTX1NFQ09ORFMgPSAwClNFQ1VSRV9QUk9YWV9TU0xfSEVBREVSID0gTm9uZQpTRUNVUkVfUkVESVJFQ1RfRVhFTVBUID0gW10KU0VDVVJFX1NTTF9IT1NUID0gTm9uZQpTRUNVUkVfU1NMX1JFRElSRUNUID0gRmFsc2UKU0VSVkVSX0VNQUlMID0gJ3Jvb3RAbG9jYWxob3N0JwpTRVNTSU9OX0NBQ0hFX0FMSUFTID0gJ2RlZmF1bHQnClNFU1NJT05fQ09PS0lFX0FHRSA9IDEyMDk2MDAKU0VTU0lPTl9DT09LSUVfRE9NQUlOID0gTm9uZQpTRVNTSU9OX0NPT0tJRV9IVFRQT05MWSA9IEZhbHNlClNFU1NJT05fQ09PS0lFX05BTUUgPSAnc2Vzc2lvbmlkJwpTRVNTSU9OX0NPT0tJRV9QQVRIID0gJy8nClNFU1NJT05fQ09PS0lFX1NFQ1VSRSA9IEZhbHNlClNFU1NJT05fRU5HSU5FID0gJ2RqYW5nby5jb250cmliLnNlc3Npb25zLmJhY2tlbmRzLmRiJwpTRVNTSU9OX0VYUElSRV9BVF9CUk9XU0VSX0NMT1NFID0gRmFsc2UKU0VTU0lPTl9GSUxFX1BBVEggPSBOb25lClNFU1NJT05fU0FWRV9FVkVSWV9SRVFVRVNUID0gRmFsc2UKU0VTU0lPTl9TRVJJQUxJWkVSID0gJ2RqYW5nby5jb250cmliLnNlc3Npb25zLnNlcmlhbGl6ZXJzLkpTT05TZXJpYWxpemVyJwpTRVRUSU5HU19NT0RVTEUgPSAna2FwZS5zZXR0aW5ncycKU0hPUlRfREFURVRJTUVfRk9STUFUID0gJ20vZC9ZIFAnClNIT1JUX0RBVEVfRk9STUFUID0gJ20vZC9ZJwpTSUdOSU5HX0JBQ0tFTkQgPSAnZGphbmdvLmNvcmUuc2lnbmluZy5UaW1lc3RhbXBTaWduZXInClNJTEVOQ0VEX1NZU1RFTV9DSEVDS1MgPSBbXQpTVEFUSUNGSUxFU19ESVJTID0gJ0Q6XFxQUExBXFxhc3NldHMnClNUQVRJQ0ZJTEVTX0ZJTkRFUlMgPSBbJ2RqYW5nby5jb250cmliLnN0YXRpY2ZpbGVzLmZpbmRlcnMuRmlsZVN5c3RlbUZpbmRlcicsICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcy5maW5kZXJzLkFwcERpcmVjdG9yaWVzRmluZGVyJ10KU1RBVElDRklMRVNfU1RPUkFHRSA9ICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcy5zdG9yYWdlLlN0YXRpY0ZpbGVzU3RvcmFnZScKU1RBVElDX1JPT1QgPSAnL2hvbWUvYXNzZXRzJwpTVEFUSUNfVVJMID0gJy9hc3NldHMvJwpURU1QTEFURVMgPSBbeydCQUNLRU5EJzogJ2RqYW5nby50ZW1wbGF0ZS5iYWNrZW5kcy5kamFuZ28uRGphbmdvVGVtcGxhdGVzJywgJ0RJUlMnOiBbXSwgJ0FQUF9ESVJTJzogVHJ1ZSwgJ09QVElPTlMnOiB7J2NvbnRleHRfcHJvY2Vzc29ycyc6IFsnZGphbmdvLnRlbXBsYXRlLmNvbnRleHRfcHJvY2Vzc29ycy5kZWJ1ZycsICdkamFuZ28udGVtcGxhdGUuY29udGV4dF9wcm9jZXNzb3JzLnJlcXVlc3QnLCAnZGphbmdvLmNvbnRyaWIuYXV0aC5jb250ZXh0X3Byb2Nlc3NvcnMuYXV0aCcsICdkamFuZ28uY29udHJpYi5tZXNzYWdlcy5jb250ZXh0X3Byb2Nlc3NvcnMubWVzc2FnZXMnXX19XQpURVNUX05PTl9TRVJJQUxJWkVEX0FQUFMgPSBbXQpURVNUX1JVTk5FUiA9ICdkamFuZ29fbm9zZS5Ob3NlVGVzdFN1aXRlUnVubmVyJwpUSE9VU0FORF9TRVBBUkFUT1IgPSAnLCcKVElNRV9GT1JNQVQgPSAnUCcKVElNRV9JTlBVVF9GT1JNQVRTID0gWyclSDolTTolUycsICclSDolTTolUy4lZicsICclSDolTSddClRJTUVfWk9ORSA9ICdVVEMnClVTRV9FVEFHUyA9IEZhbHNlClVTRV9JMThOID0gVHJ1ZQpVU0VfTDEwTiA9IFRydWUKVVNFX1RIT1VTQU5EX1NFUEFSQVRPUiA9IEZhbHNlClVTRV9UWiA9IFRydWUKVVNFX1hfRk9SV0FSREVEX0hPU1QgPSBGYWxzZQpVU0VfWF9GT1JXQVJERURfUE9SVCA9IEZhbHNlCldFQlBBQ0tfTE9BREVSID0geydERUZBVUxUJzogeydCVU5ETEVfRElSX05BTUUnOiAnYnVuZGxlcy8nLCAnU1RBVFNfRklMRSc6ICdEOlxcUFBMQVxcd2VicGFjay1zdGF0cy5qc29uJ319CldTR0lfQVBQTElDQVRJT04gPSAna2FwZS53c2dpLmFwcGxpY2F0aW9uJwpYX0ZSQU1FX09QVElPTlMgPSAnU0FNRU9SSUdJTicKWUVBUl9NT05USF9GT1JNQVQgPSAnRiBZJwoKCllvdSdyZSBzZWVpbmcgdGhpcyBlcnJvciBiZWNhdXNlIHlvdSBoYXZlIERFQlVHID0gVHJ1ZSBpbiB5b3VyCkRqYW5nbyBzZXR0aW5ncyBmaWxlLiBDaGFuZ2UgdGhhdCB0byBGYWxzZSwgYW5kIERqYW5nbyB3aWxsCmRpc3BsYXkgYSBzdGFuZGFyZCBwYWdlIGdlbmVyYXRlZCBieSB0aGUgaGFuZGxlciBmb3IgdGhpcyBzdGF0dXMgY29kZS4KCg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/plain\"}" - } -}, -{ - "model": "silk.response", - "pk": "a24102a3-6999-4f6f-a40b-3d4b487d83e7", - "fields": { - "request": "f5dfb207-5f77-43eb-ae89-094506f4d861", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "a2982c24-3ae3-4eb8-a33b-7c5916d2ab72", - "fields": { - "request": "86ae3739-ebf0-48b5-a091-1a80bedfca0c", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPlNpdGUgYWRtaW5pc3RyYXRpb24gfCBEamFuZ28gc2l0ZSBhZG1pbjwvdGl0bGU+CjxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvYWRtaW4vY3NzL2Jhc2UuY3NzIiAvPgo8bGluayByZWw9InN0eWxlc2hlZXQiIHR5cGU9InRleHQvY3NzIiBocmVmPSIvYXNzZXRzL2FkbWluL2Nzcy9kYXNoYm9hcmQuY3NzIiAvPgoKCjxtZXRhIG5hbWU9InJvYm90cyIgY29udGVudD0iTk9ORSxOT0FSQ0hJVkUiIC8+CjwvaGVhZD4KCgo8Ym9keSBjbGFzcz0iIGRhc2hib2FyZCIKICBkYXRhLWFkbWluLXV0Yy1vZmZzZXQ9IjAiPgoKPCEtLSBDb250YWluZXIgLS0+CjxkaXYgaWQ9ImNvbnRhaW5lciI+CgogICAgCiAgICA8IS0tIEhlYWRlciAtLT4KICAgIDxkaXYgaWQ9ImhlYWRlciI+CiAgICAgICAgPGRpdiBpZD0iYnJhbmRpbmciPgogICAgICAgIAo8aDEgaWQ9InNpdGUtbmFtZSI+PGEgaHJlZj0iL2FkbWluLyI+RGphbmdvIGFkbWluaXN0cmF0aW9uPC9hPjwvaDE+CgogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIDxkaXYgaWQ9InVzZXItdG9vbHMiPgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIFdlbGNvbWUsCiAgICAgICAgICAgICAgICA8c3Ryb25nPmthcGU8L3N0cm9uZz4uCiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii8iPlZpZXcgc2l0ZTwvYT4gLwogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vcGFzc3dvcmRfY2hhbmdlLyI+Q2hhbmdlIHBhc3N3b3JkPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9sb2dvdXQvIj5Mb2cgb3V0PC9hPgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgICAgICAKICAgICAgICAKICAgICAgICAKICAgIDwvZGl2PgogICAgPCEtLSBFTkQgSGVhZGVyIC0tPgogICAgCiAgICAKCiAgICAKICAgICAgICAKICAgIAoKICAgIDwhLS0gQ29udGVudCAtLT4KICAgIDxkaXYgaWQ9ImNvbnRlbnQiIGNsYXNzPSJjb2xNUyI+CiAgICAgICAgCiAgICAgICAgPGgxPlNpdGUgYWRtaW5pc3RyYXRpb248L2gxPgogICAgICAgIAo8ZGl2IGlkPSJjb250ZW50LW1haW4iPgoKCiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJhcHAtYXV0aCBtb2R1bGUiPgogICAgICAgIDx0YWJsZT4KICAgICAgICA8Y2FwdGlvbj4KICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2F1dGgvIiBjbGFzcz0ic2VjdGlvbiIgdGl0bGU9Ik1vZGVscyBpbiB0aGUgQXV0aGVudGljYXRpb24gYW5kIEF1dGhvcml6YXRpb24gYXBwbGljYXRpb24iPkF1dGhlbnRpY2F0aW9uIGFuZCBBdXRob3JpemF0aW9uPC9hPgogICAgICAgIDwvY2FwdGlvbj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1ncm91cCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL2dyb3VwLyI+R3JvdXBzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvZ3JvdXAvYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL2dyb3VwLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC11c2VyIj4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8iPlVzZXJzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgPC90YWJsZT4KICAgICAgICA8L2Rpdj4KICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImFwcC1jb3JlIG1vZHVsZSI+CiAgICAgICAgPHRhYmxlPgogICAgICAgIDxjYXB0aW9uPgogICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS8iIGNsYXNzPSJzZWN0aW9uIiB0aXRsZT0iTW9kZWxzIGluIHRoZSBDb3JlIGFwcGxpY2F0aW9uIj5Db3JlPC9hPgogICAgICAgIDwvY2FwdGlvbj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1hcHBsaWNhdGlvbiI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL2FwcGxpY2F0aW9uLyI+QXBwbGljYXRpb25zPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvYXBwbGljYXRpb24vYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL2FwcGxpY2F0aW9uLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1jb21wYW55Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8iPkNvbXBhbnlzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgICAgIDx0ciBjbGFzcz0ibW9kZWwtc3R1ZGVudCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvIj5TdHVkZW50czwvYT48L3RoPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvIiBjbGFzcz0iY2hhbmdlbGluayI+Q2hhbmdlPC9hPjwvdGQ+CiAgICAgICAgICAgIAogICAgICAgICAgICA8L3RyPgogICAgICAgIAogICAgICAgICAgICA8dHIgY2xhc3M9Im1vZGVsLXN1cGVydmlzb3IiPgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0aCBzY29wZT0icm93Ij48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yLyI+U3VwZXJ2aXNvcnM8L2E+PC90aD4KICAgICAgICAgICAgCgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0ZD48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yL2FkZC8iIGNsYXNzPSJhZGRsaW5rIj5BZGQ8L2E+PC90ZD4KICAgICAgICAgICAgCgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0ZD48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC12YWNhbmN5Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS8iPlZhY2FuY3lzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgPC90YWJsZT4KICAgICAgICA8L2Rpdj4KICAgIAoKPC9kaXY+CgogICAgICAgIAo8ZGl2IGlkPSJjb250ZW50LXJlbGF0ZWQiPgogICAgPGRpdiBjbGFzcz0ibW9kdWxlIiBpZD0icmVjZW50LWFjdGlvbnMtbW9kdWxlIj4KICAgICAgICA8aDI+UmVjZW50IGFjdGlvbnM8L2gyPgogICAgICAgIDxoMz5NeSBhY3Rpb25zPC9oMz4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgPHVsIGNsYXNzPSJhY3Rpb25saXN0Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaSBjbGFzcz0iYWRkbGluayI+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS9jb21wYW55LzIvY2hhbmdlLyI+Q29tcGFueSBvYmplY3Q8L2E+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxici8+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz0ibWluaSBxdWlldCI+Q29tcGFueTwvc3Bhbj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgICAgPGxpIGNsYXNzPSJkZWxldGVsaW5rIj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIENvbXBhbnkgb2JqZWN0CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxici8+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz0ibWluaSBxdWlldCI+Q29tcGFueTwvc3Bhbj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgICAgPGxpIGNsYXNzPSJhZGRsaW5rIj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9hdXRoL3VzZXIvNC9jaGFuZ2UvIj5mYXJoYW5zdXBlcjwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5Vc2VyPC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8bGkgY2xhc3M9ImFkZGxpbmsiPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8zL2NoYW5nZS8iPmZhcmhhbmNvcnA8L2E+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxici8+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz0ibWluaSBxdWlldCI+VXNlcjwvc3Bhbj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgICAgPGxpIGNsYXNzPSJhZGRsaW5rIj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9hdXRoL3VzZXIvMi9jaGFuZ2UvIj5mYXJoYW48L2E+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxici8+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz0ibWluaSBxdWlldCI+VXNlcjwvc3Bhbj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgICAgPGxpIGNsYXNzPSJhZGRsaW5rIj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9jb3JlL2NvbXBhbnkvMS9jaGFuZ2UvIj5Db21wYW55IG9iamVjdDwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5Db21wYW55PC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8L3VsPgogICAgICAgICAgICAKICAgIDwvZGl2Pgo8L2Rpdj4KCiAgICAgICAgPGJyIGNsYXNzPSJjbGVhciIgLz4KICAgIDwvZGl2PgogICAgPCEtLSBFTkQgQ29udGVudCAtLT4KCiAgICA8ZGl2IGlkPSJmb290ZXIiPjwvZGl2Pgo8L2Rpdj4KPCEtLSBFTkQgQ29udGFpbmVyIC0tPgoKPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 15:14:24 GMT\", \"Expires\": \"Mon, 27 Mar 2017 15:14:24 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\"}" - } -}, -{ - "model": "silk.response", - "pk": "a2e4f183-395b-43c5-9b85-0fcfd7274902", - "fields": { - "request": "bc1cab28-2c10-4e3c-968d-7f8c989e49c4", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "a3425312-badd-4582-9b4c-78769aabb9e6", - "fields": { - "request": "54dcc720-f8b6-418b-86b5-1456c704352d", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "a3bc36cd-70ff-4fb2-9a1b-827a95a4ac15", - "fields": { - "request": "fc7bd6c7-f199-4503-b65a-b02b8eac1632", - "status_code": 500, - "raw_body": "QXR0cmlidXRlRXJyb3IgYXQgL2FwaQondHVwbGUnIG9iamVjdCBoYXMgbm8gYXR0cmlidXRlICdfbWV0YScKClJlcXVlc3QgTWV0aG9kOiBHRVQKUmVxdWVzdCBVUkw6IGh0dHA6Ly8xMjcuMC4wLjE6ODAwMC9hcGkKRGphbmdvIFZlcnNpb246IDEuMTAuNQpQeXRob24gRXhlY3V0YWJsZTogQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXHB5dGhvbi5leGUKUHl0aG9uIFZlcnNpb246IDMuNi4wClB5dGhvbiBQYXRoOiBbJ0Q6XFxQUExBJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXHB5dGhvbjM2LnppcCcsICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyXFxETExzJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXGxpYicsICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXGxpYlxcc2l0ZS1wYWNrYWdlcyddClNlcnZlciB0aW1lOiBNb24sIDI3IE1hciAyMDE3IDE4OjE4OjMwICswMDAwCkluc3RhbGxlZCBBcHBsaWNhdGlvbnM6ClsnZGphbmdvLmNvbnRyaWIuYWRtaW4nLAogJ2RqYW5nby5jb250cmliLmF1dGgnLAogJ2RqYW5nby5jb250cmliLmNvbnRlbnR0eXBlcycsCiAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMnLAogJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzJywKICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcycsCiAnd2VicGFja19sb2FkZXInLAogJ2NvcmUnLAogJ3Jlc3RfZnJhbWV3b3JrJywKICdkamFuZ29fbm9zZScsCiAncmVzdF9mcmFtZXdvcmtfc3dhZ2dlcicsCiAnc2lsayddCkluc3RhbGxlZCBNaWRkbGV3YXJlOgpbJ2RqYW5nby5taWRkbGV3YXJlLnNlY3VyaXR5LlNlY3VyaXR5TWlkZGxld2FyZScsCiAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMubWlkZGxld2FyZS5TZXNzaW9uTWlkZGxld2FyZScsCiAnZGphbmdvLm1pZGRsZXdhcmUuY29tbW9uLkNvbW1vbk1pZGRsZXdhcmUnLAogJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5hdXRoLm1pZGRsZXdhcmUuQXV0aGVudGljYXRpb25NaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5tZXNzYWdlcy5taWRkbGV3YXJlLk1lc3NhZ2VNaWRkbGV3YXJlJywKICdkamFuZ28ubWlkZGxld2FyZS5jbGlja2phY2tpbmcuWEZyYW1lT3B0aW9uc01pZGRsZXdhcmUnLAogJ3NpbGsubWlkZGxld2FyZS5TaWxreU1pZGRsZXdhcmUnXQoKClRyYWNlYmFjazogIAoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXGRqYW5nb1xjb3JlXGhhbmRsZXJzXGV4Y2VwdGlvbi5weSIgaW4gaW5uZXIKICAzOS4gICAgICAgICAgICAgcmVzcG9uc2UgPSBnZXRfcmVzcG9uc2UocmVxdWVzdCkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cY29yZVxoYW5kbGVyc1xiYXNlLnB5IiBpbiBfZ2V0X3Jlc3BvbnNlCiAgMTg3LiAgICAgICAgICAgICAgICAgcmVzcG9uc2UgPSBzZWxmLnByb2Nlc3NfZXhjZXB0aW9uX2J5X21pZGRsZXdhcmUoZSwgcmVxdWVzdCkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cY29yZVxoYW5kbGVyc1xiYXNlLnB5IiBpbiBfZ2V0X3Jlc3BvbnNlCiAgMTg1LiAgICAgICAgICAgICAgICAgcmVzcG9uc2UgPSB3cmFwcGVkX2NhbGxiYWNrKHJlcXVlc3QsICpjYWxsYmFja19hcmdzLCAqKmNhbGxiYWNrX2t3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cdmlld3NcZGVjb3JhdG9yc1xjc3JmLnB5IiBpbiB3cmFwcGVkX3ZpZXcKICA1OC4gICAgICAgICByZXR1cm4gdmlld19mdW5jKCphcmdzLCAqKmt3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cdmlld3NcZ2VuZXJpY1xiYXNlLnB5IiBpbiB2aWV3CiAgNjguICAgICAgICAgICAgIHJldHVybiBzZWxmLmRpc3BhdGNoKHJlcXVlc3QsICphcmdzLCAqKmt3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3cy5weSIgaW4gZGlzcGF0Y2gKICA0ODMuICAgICAgICAgICAgIHJlc3BvbnNlID0gc2VsZi5oYW5kbGVfZXhjZXB0aW9uKGV4YykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3cy5weSIgaW4gaGFuZGxlX2V4Y2VwdGlvbgogIDQ0My4gICAgICAgICAgICAgc2VsZi5yYWlzZV91bmNhdWdodF9leGNlcHRpb24oZXhjKQoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXHJlc3RfZnJhbWV3b3JrXHZpZXdzLnB5IiBpbiBkaXNwYXRjaAogIDQ4MC4gICAgICAgICAgICAgcmVzcG9uc2UgPSBoYW5kbGVyKHJlcXVlc3QsICphcmdzLCAqKmt3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya19zd2FnZ2VyXHZpZXdzLnB5IiBpbiBnZXQKICAzMi4gICAgICAgICAgICAgc2NoZW1hID0gZ2VuZXJhdG9yLmdldF9zY2hlbWEocmVxdWVzdD1yZXF1ZXN0KQoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXHJlc3RfZnJhbWV3b3JrXHNjaGVtYXMucHkiIGluIGdldF9zY2hlbWEKICAyNDIuICAgICAgICAgbGlua3MgPSBzZWxmLmdldF9saW5rcyhyZXF1ZXN0KQoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXHJlc3RfZnJhbWV3b3JrXHNjaGVtYXMucHkiIGluIGdldF9saW5rcwogIDI3My4gICAgICAgICAgICAgbGluayA9IHNlbGYuZ2V0X2xpbmsocGF0aCwgbWV0aG9kLCB2aWV3KQoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXHJlc3RfZnJhbWV3b3JrXHNjaGVtYXMucHkiIGluIGdldF9saW5rCiAgMzcyLiAgICAgICAgIGZpZWxkcyArPSBzZWxmLmdldF9zZXJpYWxpemVyX2ZpZWxkcyhwYXRoLCBtZXRob2QsIHZpZXcpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNccmVzdF9mcmFtZXdvcmtcc2NoZW1hcy5weSIgaW4gZ2V0X3NlcmlhbGl6ZXJfZmllbGRzCiAgNDg4LiAgICAgICAgIGZvciBmaWVsZCBpbiBzZXJpYWxpemVyLmZpZWxkcy52YWx1ZXMoKToKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1xzZXJpYWxpemVycy5weSIgaW4gZmllbGRzCiAgMzYzLiAgICAgICAgICAgICBmb3Iga2V5LCB2YWx1ZSBpbiBzZWxmLmdldF9maWVsZHMoKS5pdGVtcygpOgoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXHJlc3RfZnJhbWV3b3JrXHNlcmlhbGl6ZXJzLnB5IiBpbiBnZXRfZmllbGRzCiAgOTgzLiAgICAgICAgIGluZm8gPSBtb2RlbF9tZXRhLmdldF9maWVsZF9pbmZvKG1vZGVsKQoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXHJlc3RfZnJhbWV3b3JrXHV0aWxzXG1vZGVsX21ldGEucHkiIGluIGdldF9maWVsZF9pbmZvCiAgMzcuICAgICBvcHRzID0gbW9kZWwuX21ldGEuY29uY3JldGVfbW9kZWwuX21ldGEKCkV4Y2VwdGlvbiBUeXBlOiBBdHRyaWJ1dGVFcnJvciBhdCAvYXBpCkV4Y2VwdGlvbiBWYWx1ZTogJ3R1cGxlJyBvYmplY3QgaGFzIG5vIGF0dHJpYnV0ZSAnX21ldGEnClJlcXVlc3QgaW5mb3JtYXRpb246ClVTRVI6IGthcGUKCkdFVDogTm8gR0VUIGRhdGEKClBPU1Q6IE5vIFBPU1QgZGF0YQoKRklMRVM6IE5vIEZJTEVTIGRhdGEKCkNPT0tJRVM6CnNlc3Npb25pZCA9ICdibHQ4NzdnNWZqbXVjeHkzZGQ1dXhjaXphdmI5b3BvdicKY3NyZnRva2VuID0gJzFFRVAyU3dLdDFLOVFiV25GUFN5V1BJaWJ0TzdNQWFWcUtMRWVvb0ZnWVZ5ZGpZUG9nbjBPd3AyOW9VVzZBNksnCgpNRVRBOgpBTExVU0VSU1BST0ZJTEUgPSAnQzpcXFByb2dyYW1EYXRhJwpBUFBEQVRBID0gJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxSb2FtaW5nJwpDT01NT05QUk9HUkFNRklMRVMgPSAnQzpcXFByb2dyYW0gRmlsZXMgKHg4NilcXENvbW1vbiBGaWxlcycKQ09NTU9OUFJPR1JBTUZJTEVTKFg4NikgPSAnQzpcXFByb2dyYW0gRmlsZXMgKHg4NilcXENvbW1vbiBGaWxlcycKQ09NTU9OUFJPR1JBTVc2NDMyID0gJ0M6XFxQcm9ncmFtIEZpbGVzXFxDb21tb24gRmlsZXMnCkNPTVBVVEVSTkFNRSA9ICdGQVJIQU4nCkNPTVNQRUMgPSAnQzpcXFdJTkRPV1NcXHN5c3RlbTMyXFxjbWQuZXhlJwpDT05URU5UX0xFTkdUSCA9ICcnCkNPTlRFTlRfVFlQRSA9ICd0ZXh0L3BsYWluJwpDU1JGX0NPT0tJRSA9ICcxRUVQMlN3S3QxSzlRYlduRlBTeVdQSWlidE83TUFhVnFLTEVlb29GZ1lWeWRqWVBvZ24wT3dwMjlvVVc2QTZLJwpESkFOR09fU0VUVElOR1NfTU9EVUxFID0gJ2thcGUuc2V0dGluZ3MnCkZQU19CUk9XU0VSX0FQUF9QUk9GSUxFX1NUUklORyA9ICdJbnRlcm5ldCBFeHBsb3JlcicKRlBTX0JST1dTRVJfVVNFUl9QUk9GSUxFX1NUUklORyA9ICdEZWZhdWx0JwpGUF9OT19IT1NUX0NIRUNLID0gJ05PJwpHQVRFV0FZX0lOVEVSRkFDRSA9ICdDR0kvMS4xJwpIT01FRFJJVkUgPSAnQzonCkhPTUVQQVRIID0gJ1xcVXNlcnNcXGZhcmhhXzAwMCcKSFRUUF9BQ0NFUFQgPSAndGV4dC9odG1sLGFwcGxpY2F0aW9uL3hodG1sK3htbCxhcHBsaWNhdGlvbi94bWw7cT0wLjksaW1hZ2Uvd2VicCwqLyo7cT0wLjgnCkhUVFBfQUNDRVBUX0VOQ09ESU5HID0gJ2d6aXAsIGRlZmxhdGUsIHNkY2gsIGJyJwpIVFRQX0FDQ0VQVF9MQU5HVUFHRSA9ICdpZC1JRCxpZDtxPTAuOCxlbi1VUztxPTAuNixlbjtxPTAuNCcKSFRUUF9DT05ORUNUSU9OID0gJ2tlZXAtYWxpdmUnCkhUVFBfQ09PS0lFID0gJ3Nlc3Npb25pZD1ibHQ4NzdnNWZqbXVjeHkzZGQ1dXhjaXphdmI5b3BvdjsgY3NyZnRva2VuPTFFRVAyU3dLdDFLOVFiV25GUFN5V1BJaWJ0TzdNQWFWcUtMRWVvb0ZnWVZ5ZGpZUG9nbjBPd3AyOW9VVzZBNksnCkhUVFBfSE9TVCA9ICcxMjcuMC4wLjE6ODAwMCcKSFRUUF9VUEdSQURFX0lOU0VDVVJFX1JFUVVFU1RTID0gJzEnCkhUVFBfVVNFUl9BR0VOVCA9ICdNb3ppbGxhLzUuMCAoV2luZG93cyBOVCAxMC4wOyBXT1c2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzU2LjAuMjkyNC44NyBTYWZhcmkvNTM3LjM2JwpMT0NBTEFQUERBVEEgPSAnQzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXExvY2FsJwpMT0dPTlNFUlZFUiA9ICdcXFxcRkFSSEFOJwpOVU1CRVJfT0ZfUFJPQ0VTU09SUyA9ICcyJwpPTkVEUklWRSA9ICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcT25lRHJpdmUnCk9TID0gJ1dpbmRvd3NfTlQnClBBVEggPSAnQzpcXFByb2dyYW1EYXRhXFxPcmFjbGVcXEphdmFcXGphdmFwYXRoO0M6XFxQcm9ncmFtIEZpbGVzXFxIYXNrZWxsXFxiaW47QzpcXFByb2dyYW0gRmlsZXNcXEhhc2tlbGwgUGxhdGZvcm1cXDcuMTAuM1xcbGliXFxleHRyYWxpYnNcXGJpbjtDOlxcUHJvZ3JhbSBGaWxlc1xcSGFza2VsbCBQbGF0Zm9ybVxcNy4xMC4zXFxiaW47QzpcXFdJTkRPV1NcXHN5c3RlbTMyO0M6XFxXSU5ET1dTO0M6XFxXSU5ET1dTXFxTeXN0ZW0zMlxcV2JlbTtDOlxcV0lORE9XU1xcU3lzdGVtMzJcXFdpbmRvd3NQb3dlclNoZWxsXFx2MS4wXFw7QzpcXFByb2dyYW0gRmlsZXNcXEhhc2tlbGwgUGxhdGZvcm1cXDcuMTAuM1xcbWluZ3dcXGJpbjtDOlxcUHJvZ3JhbSBGaWxlc1xcSmF2YVxcamRrMS44LjBfNzdcXGJpbjtDOlxcY3lnd2luNjRcXGJpbjslbG9jYWxhcHBkYXRhJVxcTWljcm9zb2Z0XFxXaW5kb3dzQXBwcztEOlxcWEFNUFBcXHBocDtDOlxcUHJvZ3JhbSBGaWxlc1xcR2l0XFxjbWQ7QzpcXHhhbXBwXFxwaHA7QzpcXFByb2dyYW1EYXRhXFxDb21wb3NlclNldHVwXFxiaW47QzpcXFByb2dyYW0gRmlsZXMgKHg4NilcXG5vZGVqc1xcO0M6XFxQcm9ncmFtIEZpbGVzXFxQb3N0Z3JlU1FMXFw5LjZcXGJpbjtDOlxcUHJvZ3JhbSBGaWxlc1xcTUFUTEFCXFxSMjAxN2FcXGJpbjtDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyXFxTY3JpcHRzXFw7QzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXExvY2FsXFxQcm9ncmFtc1xcUHl0aG9uXFxQeXRob24zNi0zMlxcO0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxSb2FtaW5nXFxjYWJhbFxcYmluO0Q6XFxYQU1QUFxccGhwO0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxSb2FtaW5nXFxDb21wb3NlclxcdmVuZG9yXFxiaW47QzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXExvY2FsXFxNaWNyb3NvZnRcXFdpbmRvd3NBcHBzO0M6XFxweXRob24tMy42LjAnClBBVEhFWFQgPSAnLkNPTTsuRVhFOy5CQVQ7LkNNRDsuVkJTOy5WQkU7LkpTOy5KU0U7LldTRjsuV1NIOy5NU0MnClBBVEhfSU5GTyA9ICcvYXBpJwpQUk9DRVNTT1JfQVJDSElURUNUVVJFID0gJ3g4NicKUFJPQ0VTU09SX0FSQ0hJVEVXNjQzMiA9ICdBTUQ2NCcKUFJPQ0VTU09SX0lERU5USUZJRVIgPSAnSW50ZWw2NCBGYW1pbHkgNiBNb2RlbCA1OCBTdGVwcGluZyA5LCBHZW51aW5lSW50ZWwnClBST0NFU1NPUl9MRVZFTCA9ICc2JwpQUk9DRVNTT1JfUkVWSVNJT04gPSAnM2EwOScKUFJPR1JBTURBVEEgPSAnQzpcXFByb2dyYW1EYXRhJwpQUk9HUkFNRklMRVMgPSAnQzpcXFByb2dyYW0gRmlsZXMgKHg4NiknClBST0dSQU1GSUxFUyhYODYpID0gJ0M6XFxQcm9ncmFtIEZpbGVzICh4ODYpJwpQUk9HUkFNVzY0MzIgPSAnQzpcXFByb2dyYW0gRmlsZXMnClBST01QVCA9ICckUCRHJwpQU01PRFVMRVBBVEggPSAnQzpcXFdJTkRPV1NcXHN5c3RlbTMyXFxXaW5kb3dzUG93ZXJTaGVsbFxcdjEuMFxcTW9kdWxlc1xcJwpQVUJMSUMgPSAnQzpcXFVzZXJzXFxQdWJsaWMnClFVRVJZX1NUUklORyA9ICcnClJFTU9URV9BRERSID0gJzEyNy4wLjAuMScKUkVNT1RFX0hPU1QgPSAnJwpSRVFVRVNUX01FVEhPRCA9ICdHRVQnClJVTl9NQUlOID0gJ3RydWUnClNDUklQVF9OQU1FID0gJycKU0VSVkVSX05BTUUgPSAnRmFyaGFuJwpTRVJWRVJfUE9SVCA9ICc4MDAwJwpTRVJWRVJfUFJPVE9DT0wgPSAnSFRUUC8xLjEnClNFUlZFUl9TT0ZUV0FSRSA9ICdXU0dJU2VydmVyLzAuMicKU0VTU0lPTk5BTUUgPSAnQ29uc29sZScKU1lTVEVNRFJJVkUgPSAnQzonClNZU1RFTVJPT1QgPSAnQzpcXFdJTkRPV1MnClRFTVAgPSAnQzpcXFVzZXJzXFxGQVJIQV9+MVxcQXBwRGF0YVxcTG9jYWxcXFRlbXAnClRNUCA9ICdDOlxcVXNlcnNcXEZBUkhBX34xXFxBcHBEYXRhXFxMb2NhbFxcVGVtcCcKVVNFUkRPTUFJTiA9ICdGYXJoYW4nClVTRVJET01BSU5fUk9BTUlOR1BST0ZJTEUgPSAnRmFyaGFuJwpVU0VSTkFNRSA9ICdGYXJoYW4gRmFyYXNkYWsnClVTRVJQUk9GSUxFID0gJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwJwpWQk9YX01TSV9JTlNUQUxMX1BBVEggPSAnQzpcXFByb2dyYW0gRmlsZXNcXE9yYWNsZVxcVmlydHVhbEJveFxcJwpXSU5ESVIgPSAnQzpcXFdJTkRPV1MnCndzZ2kuZXJyb3JzID0gPF9pby5UZXh0SU9XcmFwcGVyIG5hbWU9JzxzdGRlcnI+JyBtb2RlPSd3JyBlbmNvZGluZz0ndXRmLTgnPgp3c2dpLmZpbGVfd3JhcHBlciA9ICcnCndzZ2kuaW5wdXQgPSA8X2lvLkJ1ZmZlcmVkUmVhZGVyIG5hbWU9MTE4MD4Kd3NnaS5tdWx0aXByb2Nlc3MgPSBGYWxzZQp3c2dpLm11bHRpdGhyZWFkID0gVHJ1ZQp3c2dpLnJ1bl9vbmNlID0gRmFsc2UKd3NnaS51cmxfc2NoZW1lID0gJ2h0dHAnCndzZ2kudmVyc2lvbiA9IAoKU2V0dGluZ3M6ClVzaW5nIHNldHRpbmdzIG1vZHVsZSBrYXBlLnNldHRpbmdzCkFCU09MVVRFX1VSTF9PVkVSUklERVMgPSB7fQpBRE1JTlMgPSBbXQpBTExPV0VEX0hPU1RTID0gWydib3QucmVjcnVpdC5pZCcsICcxMDQuMjM2Ljc2LjE2MScsICdsb2NhbGhvc3QnLCAnMTI3LjAuMC4xJ10KQVBQRU5EX1NMQVNIID0gVHJ1ZQpBVVRIRU5USUNBVElPTl9CQUNLRU5EUyA9IFsnZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQnXQpBVVRIX1BBU1NXT1JEX1ZBTElEQVRPUlMgPSAnKioqKioqKioqKioqKioqKioqKionCkFVVEhfVVNFUl9NT0RFTCA9ICdhdXRoLlVzZXInCkJBU0VfRElSID0gJ0Q6XFxQUExBJwpDQUNIRVMgPSB7J2RlZmF1bHQnOiB7J0JBQ0tFTkQnOiAnZGphbmdvLmNvcmUuY2FjaGUuYmFja2VuZHMubG9jbWVtLkxvY01lbUNhY2hlJ319CkNBQ0hFX01JRERMRVdBUkVfQUxJQVMgPSAnZGVmYXVsdCcKQ0FDSEVfTUlERExFV0FSRV9LRVlfUFJFRklYID0gJyoqKioqKioqKioqKioqKioqKioqJwpDQUNIRV9NSURETEVXQVJFX1NFQ09ORFMgPSA2MDAKQ1NSRl9DT09LSUVfQUdFID0gMzE0NDk2MDAKQ1NSRl9DT09LSUVfRE9NQUlOID0gTm9uZQpDU1JGX0NPT0tJRV9IVFRQT05MWSA9IEZhbHNlCkNTUkZfQ09PS0lFX05BTUUgPSAnY3NyZnRva2VuJwpDU1JGX0NPT0tJRV9QQVRIID0gJy8nCkNTUkZfQ09PS0lFX1NFQ1VSRSA9IEZhbHNlCkNTUkZfRkFJTFVSRV9WSUVXID0gJ2RqYW5nby52aWV3cy5jc3JmLmNzcmZfZmFpbHVyZScKQ1NSRl9IRUFERVJfTkFNRSA9ICdIVFRQX1hfQ1NSRlRPS0VOJwpDU1JGX1RSVVNURURfT1JJR0lOUyA9IFtdCkRBVEFCQVNFUyA9IHsnZGVmYXVsdCc6IHsnRU5HSU5FJzogJ2RqYW5nby5kYi5iYWNrZW5kcy5wb3N0Z3Jlc3FsX3BzeWNvcGcyJywgJ05BTUUnOiAna2FwZScsICdVU0VSJzogJ2thcGUnLCAnUEFTU1dPUkQnOiAnKioqKioqKioqKioqKioqKioqKionLCAnSE9TVCc6ICdsb2NhbGhvc3QnLCAnUE9SVCc6ICcnLCAnQVRPTUlDX1JFUVVFU1RTJzogRmFsc2UsICdBVVRPQ09NTUlUJzogVHJ1ZSwgJ0NPTk5fTUFYX0FHRSc6IDAsICdPUFRJT05TJzoge30sICdUSU1FX1pPTkUnOiBOb25lLCAnVEVTVCc6IHsnQ0hBUlNFVCc6IE5vbmUsICdDT0xMQVRJT04nOiBOb25lLCAnTkFNRSc6IE5vbmUsICdNSVJST1InOiBOb25lfX19CkRBVEFCQVNFX1JPVVRFUlMgPSBbXQpEQVRBX1VQTE9BRF9NQVhfTUVNT1JZX1NJWkUgPSAyNjIxNDQwCkRBVEFfVVBMT0FEX01BWF9OVU1CRVJfRklFTERTID0gMTAwMApEQVRFVElNRV9GT1JNQVQgPSAnTiBqLCBZLCBQJwpEQVRFVElNRV9JTlBVVF9GT1JNQVRTID0gWyclWS0lbS0lZCAlSDolTTolUycsICclWS0lbS0lZCAlSDolTTolUy4lZicsICclWS0lbS0lZCAlSDolTScsICclWS0lbS0lZCcsICclbS8lZC8lWSAlSDolTTolUycsICclbS8lZC8lWSAlSDolTTolUy4lZicsICclbS8lZC8lWSAlSDolTScsICclbS8lZC8lWScsICclbS8lZC8leSAlSDolTTolUycsICclbS8lZC8leSAlSDolTTolUy4lZicsICclbS8lZC8leSAlSDolTScsICclbS8lZC8leSddCkRBVEVfRk9STUFUID0gJ04gaiwgWScKREFURV9JTlBVVF9GT1JNQVRTID0gWyclWS0lbS0lZCcsICclbS8lZC8lWScsICclbS8lZC8leScsICclYiAlZCAlWScsICclYiAlZCwgJVknLCAnJWQgJWIgJVknLCAnJWQgJWIsICVZJywgJyVCICVkICVZJywgJyVCICVkLCAlWScsICclZCAlQiAlWScsICclZCAlQiwgJVknXQpERUJVRyA9IFRydWUKREVCVUdfUFJPUEFHQVRFX0VYQ0VQVElPTlMgPSBGYWxzZQpERUNJTUFMX1NFUEFSQVRPUiA9ICcuJwpERUZBVUxUX0NIQVJTRVQgPSAndXRmLTgnCkRFRkFVTFRfQ09OVEVOVF9UWVBFID0gJ3RleHQvaHRtbCcKREVGQVVMVF9FWENFUFRJT05fUkVQT1JURVJfRklMVEVSID0gJ2RqYW5nby52aWV3cy5kZWJ1Zy5TYWZlRXhjZXB0aW9uUmVwb3J0ZXJGaWx0ZXInCkRFRkFVTFRfRklMRV9TVE9SQUdFID0gJ2RqYW5nby5jb3JlLmZpbGVzLnN0b3JhZ2UuRmlsZVN5c3RlbVN0b3JhZ2UnCkRFRkFVTFRfRlJPTV9FTUFJTCA9ICd3ZWJtYXN0ZXJAbG9jYWxob3N0JwpERUZBVUxUX0lOREVYX1RBQkxFU1BBQ0UgPSAnJwpERUZBVUxUX1RBQkxFU1BBQ0UgPSAnJwpESVNBTExPV0VEX1VTRVJfQUdFTlRTID0gW10KRU1BSUxfQkFDS0VORCA9ICdkamFuZ28uY29yZS5tYWlsLmJhY2tlbmRzLnNtdHAuRW1haWxCYWNrZW5kJwpFTUFJTF9IT1NUID0gJ2xvY2FsaG9zdCcKRU1BSUxfSE9TVF9QQVNTV09SRCA9ICcqKioqKioqKioqKioqKioqKioqKicKRU1BSUxfSE9TVF9VU0VSID0gJycKRU1BSUxfUE9SVCA9IDI1CkVNQUlMX1NTTF9DRVJURklMRSA9IE5vbmUKRU1BSUxfU1NMX0tFWUZJTEUgPSAnKioqKioqKioqKioqKioqKioqKionCkVNQUlMX1NVQkpFQ1RfUFJFRklYID0gJ1tEamFuZ29dICcKRU1BSUxfVElNRU9VVCA9IE5vbmUKRU1BSUxfVVNFX1NTTCA9IEZhbHNlCkVNQUlMX1VTRV9UTFMgPSBGYWxzZQpGSUxFX0NIQVJTRVQgPSAndXRmLTgnCkZJTEVfVVBMT0FEX0RJUkVDVE9SWV9QRVJNSVNTSU9OUyA9IE5vbmUKRklMRV9VUExPQURfSEFORExFUlMgPSBbJ2RqYW5nby5jb3JlLmZpbGVzLnVwbG9hZGhhbmRsZXIuTWVtb3J5RmlsZVVwbG9hZEhhbmRsZXInLCAnZGphbmdvLmNvcmUuZmlsZXMudXBsb2FkaGFuZGxlci5UZW1wb3JhcnlGaWxlVXBsb2FkSGFuZGxlciddCkZJTEVfVVBMT0FEX01BWF9NRU1PUllfU0laRSA9IDI2MjE0NDAKRklMRV9VUExPQURfUEVSTUlTU0lPTlMgPSBOb25lCkZJTEVfVVBMT0FEX1RFTVBfRElSID0gTm9uZQpGSVJTVF9EQVlfT0ZfV0VFSyA9IDAKRklYVFVSRV9ESVJTID0gW10KRk9SQ0VfU0NSSVBUX05BTUUgPSBOb25lCkZPUk1BVF9NT0RVTEVfUEFUSCA9IE5vbmUKR1pJUF9DT05URU5UX1RZUEVTID0gCklHTk9SQUJMRV80MDRfVVJMUyA9IFtdCklOU1RBTExFRF9BUFBTID0gWydkamFuZ28uY29udHJpYi5hZG1pbicsICdkamFuZ28uY29udHJpYi5hdXRoJywgJ2RqYW5nby5jb250cmliLmNvbnRlbnR0eXBlcycsICdkamFuZ28uY29udHJpYi5zZXNzaW9ucycsICdkamFuZ28uY29udHJpYi5tZXNzYWdlcycsICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcycsICd3ZWJwYWNrX2xvYWRlcicsICdjb3JlJywgJ3Jlc3RfZnJhbWV3b3JrJywgJ2RqYW5nb19ub3NlJywgJ3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXInLCAnc2lsayddCklOVEVSTkFMX0lQUyA9IFtdCkxBTkdVQUdFUyA9IFsoJ2FmJywgJ0FmcmlrYWFucycpLCAoJ2FyJywgJ0FyYWJpYycpLCAoJ2FzdCcsICdBc3R1cmlhbicpLCAoJ2F6JywgJ0F6ZXJiYWlqYW5pJyksICgnYmcnLCAnQnVsZ2FyaWFuJyksICgnYmUnLCAnQmVsYXJ1c2lhbicpLCAoJ2JuJywgJ0JlbmdhbGknKSwgKCdicicsICdCcmV0b24nKSwgKCdicycsICdCb3NuaWFuJyksICgnY2EnLCAnQ2F0YWxhbicpLCAoJ2NzJywgJ0N6ZWNoJyksICgnY3knLCAnV2Vsc2gnKSwgKCdkYScsICdEYW5pc2gnKSwgKCdkZScsICdHZXJtYW4nKSwgKCdkc2InLCAnTG93ZXIgU29yYmlhbicpLCAoJ2VsJywgJ0dyZWVrJyksICgnZW4nLCAnRW5nbGlzaCcpLCAoJ2VuLWF1JywgJ0F1c3RyYWxpYW4gRW5nbGlzaCcpLCAoJ2VuLWdiJywgJ0JyaXRpc2ggRW5nbGlzaCcpLCAoJ2VvJywgJ0VzcGVyYW50bycpLCAoJ2VzJywgJ1NwYW5pc2gnKSwgKCdlcy1hcicsICdBcmdlbnRpbmlhbiBTcGFuaXNoJyksICgnZXMtY28nLCAnQ29sb21iaWFuIFNwYW5pc2gnKSwgKCdlcy1teCcsICdNZXhpY2FuIFNwYW5pc2gnKSwgKCdlcy1uaScsICdOaWNhcmFndWFuIFNwYW5pc2gnKSwgKCdlcy12ZScsICdWZW5lenVlbGFuIFNwYW5pc2gnKSwgKCdldCcsICdFc3RvbmlhbicpLCAoJ2V1JywgJ0Jhc3F1ZScpLCAoJ2ZhJywgJ1BlcnNpYW4nKSwgKCdmaScsICdGaW5uaXNoJyksICgnZnInLCAnRnJlbmNoJyksICgnZnknLCAnRnJpc2lhbicpLCAoJ2dhJywgJ0lyaXNoJyksICgnZ2QnLCAnU2NvdHRpc2ggR2FlbGljJyksICgnZ2wnLCAnR2FsaWNpYW4nKSwgKCdoZScsICdIZWJyZXcnKSwgKCdoaScsICdIaW5kaScpLCAoJ2hyJywgJ0Nyb2F0aWFuJyksICgnaHNiJywgJ1VwcGVyIFNvcmJpYW4nKSwgKCdodScsICdIdW5nYXJpYW4nKSwgKCdpYScsICdJbnRlcmxpbmd1YScpLCAoJ2lkJywgJ0luZG9uZXNpYW4nKSwgKCdpbycsICdJZG8nKSwgKCdpcycsICdJY2VsYW5kaWMnKSwgKCdpdCcsICdJdGFsaWFuJyksICgnamEnLCAnSmFwYW5lc2UnKSwgKCdrYScsICdHZW9yZ2lhbicpLCAoJ2trJywgJ0themFraCcpLCAoJ2ttJywgJ0tobWVyJyksICgna24nLCAnS2FubmFkYScpLCAoJ2tvJywgJ0tvcmVhbicpLCAoJ2xiJywgJ0x1eGVtYm91cmdpc2gnKSwgKCdsdCcsICdMaXRodWFuaWFuJyksICgnbHYnLCAnTGF0dmlhbicpLCAoJ21rJywgJ01hY2Vkb25pYW4nKSwgKCdtbCcsICdNYWxheWFsYW0nKSwgKCdtbicsICdNb25nb2xpYW4nKSwgKCdtcicsICdNYXJhdGhpJyksICgnbXknLCAnQnVybWVzZScpLCAoJ25iJywgJ05vcndlZ2lhbiBCb2ttw6VsJyksICgnbmUnLCAnTmVwYWxpJyksICgnbmwnLCAnRHV0Y2gnKSwgKCdubicsICdOb3J3ZWdpYW4gTnlub3JzaycpLCAoJ29zJywgJ09zc2V0aWMnKSwgKCdwYScsICdQdW5qYWJpJyksICgncGwnLCAnUG9saXNoJyksICgncHQnLCAnUG9ydHVndWVzZScpLCAoJ3B0LWJyJywgJ0JyYXppbGlhbiBQb3J0dWd1ZXNlJyksICgncm8nLCAnUm9tYW5pYW4nKSwgKCdydScsICdSdXNzaWFuJyksICgnc2snLCAnU2xvdmFrJyksICgnc2wnLCAnU2xvdmVuaWFuJyksICgnc3EnLCAnQWxiYW5pYW4nKSwgKCdzcicsICdTZXJiaWFuJyksICgnc3ItbGF0bicsICdTZXJiaWFuIExhdGluJyksICgnc3YnLCAnU3dlZGlzaCcpLCAoJ3N3JywgJ1N3YWhpbGknKSwgKCd0YScsICdUYW1pbCcpLCAoJ3RlJywgJ1RlbHVndScpLCAoJ3RoJywgJ1RoYWknKSwgKCd0cicsICdUdXJraXNoJyksICgndHQnLCAnVGF0YXInKSwgKCd1ZG0nLCAnVWRtdXJ0JyksICgndWsnLCAnVWtyYWluaWFuJyksICgndXInLCAnVXJkdScpLCAoJ3ZpJywgJ1ZpZXRuYW1lc2UnKSwgKCd6aC1oYW5zJywgJ1NpbXBsaWZpZWQgQ2hpbmVzZScpLCAoJ3poLWhhbnQnLCAnVHJhZGl0aW9uYWwgQ2hpbmVzZScpXQpMQU5HVUFHRVNfQklESSA9IFsnaGUnLCAnYXInLCAnZmEnLCAndXInXQpMQU5HVUFHRV9DT0RFID0gJ2VuLXVzJwpMQU5HVUFHRV9DT09LSUVfQUdFID0gTm9uZQpMQU5HVUFHRV9DT09LSUVfRE9NQUlOID0gTm9uZQpMQU5HVUFHRV9DT09LSUVfTkFNRSA9ICdkamFuZ29fbGFuZ3VhZ2UnCkxBTkdVQUdFX0NPT0tJRV9QQVRIID0gJy8nCkxPQ0FMRV9QQVRIUyA9IFtdCkxPR0dJTkcgPSB7fQpMT0dHSU5HX0NPTkZJRyA9ICdsb2dnaW5nLmNvbmZpZy5kaWN0Q29uZmlnJwpMT0dJTl9SRURJUkVDVF9VUkwgPSAnL2FjY291bnRzL3Byb2ZpbGUvJwpMT0dJTl9VUkwgPSAnL2FjY291bnRzL2xvZ2luLycKTE9HT1VUX1JFRElSRUNUX1VSTCA9IE5vbmUKTUFOQUdFUlMgPSBbXQpNRURJQV9ST09UID0gJy9ob21lL2ZpbGVzJwpNRURJQV9VUkwgPSAnL2ZpbGVzLycKTUVTU0FHRV9TVE9SQUdFID0gJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzLnN0b3JhZ2UuZmFsbGJhY2suRmFsbGJhY2tTdG9yYWdlJwpNSURETEVXQVJFID0gWydkamFuZ28ubWlkZGxld2FyZS5zZWN1cml0eS5TZWN1cml0eU1pZGRsZXdhcmUnLCAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMubWlkZGxld2FyZS5TZXNzaW9uTWlkZGxld2FyZScsICdkamFuZ28ubWlkZGxld2FyZS5jb21tb24uQ29tbW9uTWlkZGxld2FyZScsICdkamFuZ28ubWlkZGxld2FyZS5jc3JmLkNzcmZWaWV3TWlkZGxld2FyZScsICdkamFuZ28uY29udHJpYi5hdXRoLm1pZGRsZXdhcmUuQXV0aGVudGljYXRpb25NaWRkbGV3YXJlJywgJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzLm1pZGRsZXdhcmUuTWVzc2FnZU1pZGRsZXdhcmUnLCAnZGphbmdvLm1pZGRsZXdhcmUuY2xpY2tqYWNraW5nLlhGcmFtZU9wdGlvbnNNaWRkbGV3YXJlJywgJ3NpbGsubWlkZGxld2FyZS5TaWxreU1pZGRsZXdhcmUnXQpNSURETEVXQVJFX0NMQVNTRVMgPSBbJ2RqYW5nby5taWRkbGV3YXJlLmNvbW1vbi5Db21tb25NaWRkbGV3YXJlJywgJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJ10KTUlHUkFUSU9OX01PRFVMRVMgPSB7fQpNT05USF9EQVlfRk9STUFUID0gJ0YgaicKTk9TRV9BUkdTID0gWyctLXdpdGgtY292ZXJhZ2UnLCAnLS1jb3Zlci1wYWNrYWdlPWNvcmUudmlld3MnLCAnLS1jb3Zlci1odG1sLWRpcj10ZXN0L2JhY2tlbmQnLCAnLS1jb3Zlci1odG1sJ10KTlVNQkVSX0dST1VQSU5HID0gMApQQVNTV09SRF9IQVNIRVJTID0gJyoqKioqKioqKioqKioqKioqKioqJwpQQVNTV09SRF9SRVNFVF9USU1FT1VUX0RBWVMgPSAnKioqKioqKioqKioqKioqKioqKionClBSRVBFTkRfV1dXID0gRmFsc2UKUkVTVF9GUkFNRVdPUksgPSB7J0RFRkFVTFRfUEVSTUlTU0lPTl9DTEFTU0VTJzogWydyZXN0X2ZyYW1ld29yay5wZXJtaXNzaW9ucy5EamFuZ29Nb2RlbFBlcm1pc3Npb25zT3JBbm9uUmVhZE9ubHknXX0KUk9PVF9VUkxDT05GID0gJ2thcGUudXJscycKUlVOTklOR19ERVZTRVJWRVIgPSBUcnVlClNFQ1JFVF9LRVkgPSAnKioqKioqKioqKioqKioqKioqKionClNFQ1VSRV9CUk9XU0VSX1hTU19GSUxURVIgPSBGYWxzZQpTRUNVUkVfQ09OVEVOVF9UWVBFX05PU05JRkYgPSBGYWxzZQpTRUNVUkVfSFNUU19JTkNMVURFX1NVQkRPTUFJTlMgPSBGYWxzZQpTRUNVUkVfSFNUU19TRUNPTkRTID0gMApTRUNVUkVfUFJPWFlfU1NMX0hFQURFUiA9IE5vbmUKU0VDVVJFX1JFRElSRUNUX0VYRU1QVCA9IFtdClNFQ1VSRV9TU0xfSE9TVCA9IE5vbmUKU0VDVVJFX1NTTF9SRURJUkVDVCA9IEZhbHNlClNFUlZFUl9FTUFJTCA9ICdyb290QGxvY2FsaG9zdCcKU0VTU0lPTl9DQUNIRV9BTElBUyA9ICdkZWZhdWx0JwpTRVNTSU9OX0NPT0tJRV9BR0UgPSAxMjA5NjAwClNFU1NJT05fQ09PS0lFX0RPTUFJTiA9IE5vbmUKU0VTU0lPTl9DT09LSUVfSFRUUE9OTFkgPSBGYWxzZQpTRVNTSU9OX0NPT0tJRV9OQU1FID0gJ3Nlc3Npb25pZCcKU0VTU0lPTl9DT09LSUVfUEFUSCA9ICcvJwpTRVNTSU9OX0NPT0tJRV9TRUNVUkUgPSBGYWxzZQpTRVNTSU9OX0VOR0lORSA9ICdkamFuZ28uY29udHJpYi5zZXNzaW9ucy5iYWNrZW5kcy5kYicKU0VTU0lPTl9FWFBJUkVfQVRfQlJPV1NFUl9DTE9TRSA9IEZhbHNlClNFU1NJT05fRklMRV9QQVRIID0gTm9uZQpTRVNTSU9OX1NBVkVfRVZFUllfUkVRVUVTVCA9IEZhbHNlClNFU1NJT05fU0VSSUFMSVpFUiA9ICdkamFuZ28uY29udHJpYi5zZXNzaW9ucy5zZXJpYWxpemVycy5KU09OU2VyaWFsaXplcicKU0VUVElOR1NfTU9EVUxFID0gJ2thcGUuc2V0dGluZ3MnClNIT1JUX0RBVEVUSU1FX0ZPUk1BVCA9ICdtL2QvWSBQJwpTSE9SVF9EQVRFX0ZPUk1BVCA9ICdtL2QvWScKU0lHTklOR19CQUNLRU5EID0gJ2RqYW5nby5jb3JlLnNpZ25pbmcuVGltZXN0YW1wU2lnbmVyJwpTSUxFTkNFRF9TWVNURU1fQ0hFQ0tTID0gW10KU1RBVElDRklMRVNfRElSUyA9ICdEOlxcUFBMQVxcYXNzZXRzJwpTVEFUSUNGSUxFU19GSU5ERVJTID0gWydkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcy5maW5kZXJzLkZpbGVTeXN0ZW1GaW5kZXInLCAnZGphbmdvLmNvbnRyaWIuc3RhdGljZmlsZXMuZmluZGVycy5BcHBEaXJlY3Rvcmllc0ZpbmRlciddClNUQVRJQ0ZJTEVTX1NUT1JBR0UgPSAnZGphbmdvLmNvbnRyaWIuc3RhdGljZmlsZXMuc3RvcmFnZS5TdGF0aWNGaWxlc1N0b3JhZ2UnClNUQVRJQ19ST09UID0gJy9ob21lL2Fzc2V0cycKU1RBVElDX1VSTCA9ICcvYXNzZXRzLycKVEVNUExBVEVTID0gW3snQkFDS0VORCc6ICdkamFuZ28udGVtcGxhdGUuYmFja2VuZHMuZGphbmdvLkRqYW5nb1RlbXBsYXRlcycsICdESVJTJzogW10sICdBUFBfRElSUyc6IFRydWUsICdPUFRJT05TJzogeydjb250ZXh0X3Byb2Nlc3NvcnMnOiBbJ2RqYW5nby50ZW1wbGF0ZS5jb250ZXh0X3Byb2Nlc3NvcnMuZGVidWcnLCAnZGphbmdvLnRlbXBsYXRlLmNvbnRleHRfcHJvY2Vzc29ycy5yZXF1ZXN0JywgJ2RqYW5nby5jb250cmliLmF1dGguY29udGV4dF9wcm9jZXNzb3JzLmF1dGgnLCAnZGphbmdvLmNvbnRyaWIubWVzc2FnZXMuY29udGV4dF9wcm9jZXNzb3JzLm1lc3NhZ2VzJ119fV0KVEVTVF9OT05fU0VSSUFMSVpFRF9BUFBTID0gW10KVEVTVF9SVU5ORVIgPSAnZGphbmdvX25vc2UuTm9zZVRlc3RTdWl0ZVJ1bm5lcicKVEhPVVNBTkRfU0VQQVJBVE9SID0gJywnClRJTUVfRk9STUFUID0gJ1AnClRJTUVfSU5QVVRfRk9STUFUUyA9IFsnJUg6JU06JVMnLCAnJUg6JU06JVMuJWYnLCAnJUg6JU0nXQpUSU1FX1pPTkUgPSAnVVRDJwpVU0VfRVRBR1MgPSBGYWxzZQpVU0VfSTE4TiA9IFRydWUKVVNFX0wxME4gPSBUcnVlClVTRV9USE9VU0FORF9TRVBBUkFUT1IgPSBGYWxzZQpVU0VfVFogPSBUcnVlClVTRV9YX0ZPUldBUkRFRF9IT1NUID0gRmFsc2UKVVNFX1hfRk9SV0FSREVEX1BPUlQgPSBGYWxzZQpXRUJQQUNLX0xPQURFUiA9IHsnREVGQVVMVCc6IHsnQlVORExFX0RJUl9OQU1FJzogJ2J1bmRsZXMvJywgJ1NUQVRTX0ZJTEUnOiAnRDpcXFBQTEFcXHdlYnBhY2stc3RhdHMuanNvbid9fQpXU0dJX0FQUExJQ0FUSU9OID0gJ2thcGUud3NnaS5hcHBsaWNhdGlvbicKWF9GUkFNRV9PUFRJT05TID0gJ1NBTUVPUklHSU4nCllFQVJfTU9OVEhfRk9STUFUID0gJ0YgWScKCgpZb3UncmUgc2VlaW5nIHRoaXMgZXJyb3IgYmVjYXVzZSB5b3UgaGF2ZSBERUJVRyA9IFRydWUgaW4geW91cgpEamFuZ28gc2V0dGluZ3MgZmlsZS4gQ2hhbmdlIHRoYXQgdG8gRmFsc2UsIGFuZCBEamFuZ28gd2lsbApkaXNwbGF5IGEgc3RhbmRhcmQgcGFnZSBnZW5lcmF0ZWQgYnkgdGhlIGhhbmRsZXIgZm9yIHRoaXMgc3RhdHVzIGNvZGUuCgo=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/plain\"}" - } -}, -{ - "model": "silk.response", - "pk": "a3ff25f7-d630-4a69-93ff-21f5ad1c79aa", - "fields": { - "request": "2b739563-68b9-418a-8f0f-bd8752914512", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPkFkZCBzdHVkZW50IHwgRGphbmdvIHNpdGUgYWRtaW48L3RpdGxlPgo8bGluayByZWw9InN0eWxlc2hlZXQiIHR5cGU9InRleHQvY3NzIiBocmVmPSIvYXNzZXRzL2FkbWluL2Nzcy9iYXNlLmNzcyIgLz4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvZm9ybXMuY3NzIiAvPgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9jb3JlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IvanF1ZXJ5L2pxdWVyeS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvanF1ZXJ5LmluaXQuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2FkbWluL1JlbGF0ZWRPYmplY3RMb29rdXBzLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hY3Rpb25zLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy91cmxpZnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL3ByZXBvcHVsYXRlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IveHJlZ2V4cC94cmVnZXhwLmpzIj48L3NjcmlwdD4KCjxtZXRhIG5hbWU9InJvYm90cyIgY29udGVudD0iTk9ORSxOT0FSQ0hJVkUiIC8+CjwvaGVhZD4KCgo8Ym9keSBjbGFzcz0iIGFwcC1jb3JlIG1vZGVsLXN0dWRlbnQgY2hhbmdlLWZvcm0iCiAgZGF0YS1hZG1pbi11dGMtb2Zmc2V0PSIwIj4KCjwhLS0gQ29udGFpbmVyIC0tPgo8ZGl2IGlkPSJjb250YWluZXIiPgoKICAgIAogICAgPCEtLSBIZWFkZXIgLS0+CiAgICA8ZGl2IGlkPSJoZWFkZXIiPgogICAgICAgIDxkaXYgaWQ9ImJyYW5kaW5nIj4KICAgICAgICAKPGgxIGlkPSJzaXRlLW5hbWUiPjxhIGhyZWY9Ii9hZG1pbi8iPkRqYW5nbyBhZG1pbmlzdHJhdGlvbjwvYT48L2gxPgoKICAgICAgICA8L2Rpdj4KICAgICAgICAKICAgICAgICAKICAgICAgICA8ZGl2IGlkPSJ1c2VyLXRvb2xzIj4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICBXZWxjb21lLAogICAgICAgICAgICAgICAgPHN0cm9uZz5rYXBlPC9zdHJvbmc+LgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvIj5WaWV3IHNpdGU8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL3Bhc3N3b3JkX2NoYW5nZS8iPkNoYW5nZSBwYXNzd29yZDwvYT4gLwogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vbG9nb3V0LyI+TG9nIG91dDwvYT4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgCiAgICA8L2Rpdj4KICAgIDwhLS0gRU5EIEhlYWRlciAtLT4KICAgIAo8ZGl2IGNsYXNzPSJicmVhZGNydW1icyI+CjxhIGhyZWY9Ii9hZG1pbi8iPkhvbWU8L2E+CiZyc2FxdW87IDxhIGhyZWY9Ii9hZG1pbi9jb3JlLyI+Q29yZTwvYT4KJnJzYXF1bzsgPGEgaHJlZj0iL2FkbWluL2NvcmUvc3R1ZGVudC8iPlN0dWRlbnRzPC9hPgomcnNhcXVvOyBBZGQgc3R1ZGVudAo8L2Rpdj4KCiAgICAKCiAgICAKICAgICAgICAKICAgIAoKICAgIDwhLS0gQ29udGVudCAtLT4KICAgIDxkaXYgaWQ9ImNvbnRlbnQiIGNsYXNzPSJjb2xNIj4KICAgICAgICAKICAgICAgICA8aDE+QWRkIHN0dWRlbnQ8L2gxPgogICAgICAgIDxkaXYgaWQ9ImNvbnRlbnQtbWFpbiI+CgoKCjxmb3JtIGVuY3R5cGU9Im11bHRpcGFydC9mb3JtLWRhdGEiIGFjdGlvbj0iIiBtZXRob2Q9InBvc3QiIGlkPSJzdHVkZW50X2Zvcm0iIG5vdmFsaWRhdGU+PGlucHV0IHR5cGU9J2hpZGRlbicgbmFtZT0nY3NyZm1pZGRsZXdhcmV0b2tlbicgdmFsdWU9J2p1ZGdXTWdsWWJTMHVpbnJHTXJRWmU1VTgwbHg3bWxGSUFrNThpOGdMODNwUnFwVHBkV2lSVk1FNlZybXJtaHUnIC8+CjxkaXY+CgoKCgoKCgogIDxmaWVsZHNldCBjbGFzcz0ibW9kdWxlIGFsaWduZWQgIj4KICAgIAogICAgCiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC11c2VyIj4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGRpdj4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPGxhYmVsIGNsYXNzPSJyZXF1aXJlZCIgZm9yPSJpZF91c2VyIj5Vc2VyOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgCjxkaXYgY2xhc3M9InJlbGF0ZWQtd2lkZ2V0LXdyYXBwZXIiPgogICAgPHNlbGVjdCBpZD0iaWRfdXNlciIgbmFtZT0idXNlciIgcmVxdWlyZWQ+CjxvcHRpb24gdmFsdWU9IiIgc2VsZWN0ZWQ9InNlbGVjdGVkIj4tLS0tLS0tLS08L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMiI+ZmFyaGFuPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjMiPmZhcmhhbmNvcnA8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iNCI+ZmFyaGFuc3VwZXI8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMSI+a2FwZTwvb3B0aW9uPgo8L3NlbGVjdD4KICAgIAogICAgICAgIAogICAgICAgIDxhIGNsYXNzPSJyZWxhdGVkLXdpZGdldC13cmFwcGVyLWxpbmsgY2hhbmdlLXJlbGF0ZWQiIGlkPSJjaGFuZ2VfaWRfdXNlciIKICAgICAgICAgICAgZGF0YS1ocmVmLXRlbXBsYXRlPSIvYWRtaW4vYXV0aC91c2VyL19fZmtfXy9jaGFuZ2UvP190b19maWVsZD1pZCZhbXA7X3BvcHVwPTEiCiAgICAgICAgICAgIHRpdGxlPSJDaGFuZ2Ugc2VsZWN0ZWQgdXNlciI+CiAgICAgICAgICAgIDxpbWcgc3JjPSIvYXNzZXRzL2FkbWluL2ltZy9pY29uLWNoYW5nZWxpbmsuc3ZnIiBhbHQ9IkNoYW5nZSIvPgogICAgICAgIDwvYT4KICAgICAgICAKICAgICAgICAKICAgICAgICA8YSBjbGFzcz0icmVsYXRlZC13aWRnZXQtd3JhcHBlci1saW5rIGFkZC1yZWxhdGVkIiBpZD0iYWRkX2lkX3VzZXIiCiAgICAgICAgICAgIGhyZWY9Ii9hZG1pbi9hdXRoL3VzZXIvYWRkLz9fdG9fZmllbGQ9aWQmYW1wO19wb3B1cD0xIgogICAgICAgICAgICB0aXRsZT0iQWRkIGFub3RoZXIgdXNlciI+CiAgICAgICAgICAgIDxpbWcgc3JjPSIvYXNzZXRzL2FkbWluL2ltZy9pY29uLWFkZGxpbmsuc3ZnIiBhbHQ9IkFkZCIvPgogICAgICAgIDwvYT4KICAgICAgICAKICAgICAgICAKICAgIAo8L2Rpdj4KCiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPC9kaXY+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgCiAgICAgICAgPGRpdiBjbGFzcz0iZm9ybS1yb3cgZmllbGQtbnBtIj4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGRpdj4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPGxhYmVsIGNsYXNzPSJyZXF1aXJlZCIgZm9yPSJpZF9ucG0iPk5wbTo8L2xhYmVsPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxpbnB1dCBjbGFzcz0idkludGVnZXJGaWVsZCIgaWQ9ImlkX25wbSIgbmFtZT0ibnBtIiB0eXBlPSJ0ZXh0IiByZXF1aXJlZCAvPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDwvZGl2PgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImZvcm0tcm93IGZpZWxkLXJlc3VtZSI+CiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXY+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxsYWJlbCBmb3I9ImlkX3Jlc3VtZSI+UmVzdW1lOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgPGlucHV0IGlkPSJpZF9yZXN1bWUiIG5hbWU9InJlc3VtZSIgdHlwZT0iZmlsZSIgLz4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC1waG9uZV9udW1iZXIiPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgZm9yPSJpZF9waG9uZV9udW1iZXIiPlBob25lIG51bWJlcjo8L2xhYmVsPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxpbnB1dCBjbGFzcz0idlRleHRGaWVsZCIgaWQ9ImlkX3Bob25lX251bWJlciIgbWF4bGVuZ3RoPSIxMDAiIG5hbWU9InBob25lX251bWJlciIgdHlwZT0idGV4dCIgLz4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC1ib29rbWFya2VkX3ZhY2FuY2llcyI+CiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXY+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxsYWJlbCBjbGFzcz0icmVxdWlyZWQiIGZvcj0iaWRfYm9va21hcmtlZF92YWNhbmNpZXMiPkJvb2ttYXJrZWQgdmFjYW5jaWVzOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgCjxkaXYgY2xhc3M9InJlbGF0ZWQtd2lkZ2V0LXdyYXBwZXIiPgogICAgPHNlbGVjdCBtdWx0aXBsZT0ibXVsdGlwbGUiIGlkPSJpZF9ib29rbWFya2VkX3ZhY2FuY2llcyIgbmFtZT0iYm9va21hcmtlZF92YWNhbmNpZXMiIHJlcXVpcmVkPgo8L3NlbGVjdD4KICAgIAogICAgICAgIAogICAgICAgIAogICAgICAgIDxhIGNsYXNzPSJyZWxhdGVkLXdpZGdldC13cmFwcGVyLWxpbmsgYWRkLXJlbGF0ZWQiIGlkPSJhZGRfaWRfYm9va21hcmtlZF92YWNhbmNpZXMiCiAgICAgICAgICAgIGhyZWY9Ii9hZG1pbi9jb3JlL3ZhY2FuY3kvYWRkLz9fdG9fZmllbGQ9aWQmYW1wO19wb3B1cD0xIgogICAgICAgICAgICB0aXRsZT0iQWRkIGFub3RoZXIgdmFjYW5jeSI+CiAgICAgICAgICAgIDxpbWcgc3JjPSIvYXNzZXRzL2FkbWluL2ltZy9pY29uLWFkZGxpbmsuc3ZnIiBhbHQ9IkFkZCIvPgogICAgICAgIDwvYT4KICAgICAgICAKICAgICAgICAKICAgIAo8L2Rpdj4KCiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8cCBjbGFzcz0iaGVscCI+SG9sZCBkb3duICJDb250cm9sIiwgb3IgIkNvbW1hbmQiIG9uIGEgTWFjLCB0byBzZWxlY3QgbW9yZSB0aGFuIG9uZS48L3A+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKPC9maWVsZHNldD4KCgoKCgoKCgoKCgoKCjxkaXYgY2xhc3M9InN1Ym1pdC1yb3ciPgo8aW5wdXQgdHlwZT0ic3VibWl0IiB2YWx1ZT0iU2F2ZSIgY2xhc3M9ImRlZmF1bHQiIG5hbWU9Il9zYXZlIiAvPgoKCjxpbnB1dCB0eXBlPSJzdWJtaXQiIHZhbHVlPSJTYXZlIGFuZCBhZGQgYW5vdGhlciIgbmFtZT0iX2FkZGFub3RoZXIiIC8+CjxpbnB1dCB0eXBlPSJzdWJtaXQiIHZhbHVlPSJTYXZlIGFuZCBjb250aW51ZSBlZGl0aW5nIiBuYW1lPSJfY29udGludWUiIC8+CjwvZGl2PgoKCgogICAgPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiCiAgICAgICAgICAgIGlkPSJkamFuZ28tYWRtaW4tZm9ybS1hZGQtY29uc3RhbnRzIgogICAgICAgICAgICBzcmM9Ii9hc3NldHMvYWRtaW4vanMvY2hhbmdlX2Zvcm0uanMiCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgZGF0YS1tb2RlbC1uYW1lPSJzdHVkZW50IgogICAgICAgICAgICA+CiAgICA8L3NjcmlwdD4KCgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IgogICAgICAgIGlkPSJkamFuZ28tYWRtaW4tcHJlcG9wdWxhdGVkLWZpZWxkcy1jb25zdGFudHMiCiAgICAgICAgc3JjPSIvYXNzZXRzL2FkbWluL2pzL3ByZXBvcHVsYXRlX2luaXQuanMiCiAgICAgICAgZGF0YS1wcmVwb3B1bGF0ZWQtZmllbGRzPSJbXSI+Cjwvc2NyaXB0PgoKCjwvZGl2Pgo8L2Zvcm0+PC9kaXY+CgogICAgICAgIAogICAgICAgIDxiciBjbGFzcz0iY2xlYXIiIC8+CiAgICA8L2Rpdj4KICAgIDwhLS0gRU5EIENvbnRlbnQgLS0+CgogICAgPGRpdiBpZD0iZm9vdGVyIj48L2Rpdj4KPC9kaXY+CjwhLS0gRU5EIENvbnRhaW5lciAtLT4KCjwvYm9keT4KPC9odG1sPgo=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 15:14:29 GMT\", \"Expires\": \"Mon, 27 Mar 2017 15:14:29 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "a424d4ab-0d8c-46a5-b30e-cbf958006102", - "fields": { - "request": "dafd0acf-9d73-4487-b0c2-655024e3c650", - "status_code": 500, - "raw_body": "QXR0cmlidXRlRXJyb3IgYXQgL2FwaS9zdHVkZW50cy8xL2Jvb2ttYXJrZWQtdmFjYW5jaWVzLwonZGljdCcgb2JqZWN0IGhhcyBubyBhdHRyaWJ1dGUgJ2lkJwoKUmVxdWVzdCBNZXRob2Q6IFBPU1QKUmVxdWVzdCBVUkw6IGh0dHA6Ly8xMjcuMC4wLjE6ODAwMC9hcGkvc3R1ZGVudHMvMS9ib29rbWFya2VkLXZhY2FuY2llcy8KRGphbmdvIFZlcnNpb246IDEuMTAuNQpQeXRob24gRXhlY3V0YWJsZTogQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXHB5dGhvbi5leGUKUHl0aG9uIFZlcnNpb246IDMuNi4wClB5dGhvbiBQYXRoOiBbJ0Q6XFxQUExBJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXHB5dGhvbjM2LnppcCcsICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyXFxETExzJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXGxpYicsICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXGxpYlxcc2l0ZS1wYWNrYWdlcyddClNlcnZlciB0aW1lOiBNb24sIDI3IE1hciAyMDE3IDE1OjM3OjAzICswMDAwCkluc3RhbGxlZCBBcHBsaWNhdGlvbnM6ClsnZGphbmdvLmNvbnRyaWIuYWRtaW4nLAogJ2RqYW5nby5jb250cmliLmF1dGgnLAogJ2RqYW5nby5jb250cmliLmNvbnRlbnR0eXBlcycsCiAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMnLAogJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzJywKICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcycsCiAnd2VicGFja19sb2FkZXInLAogJ2NvcmUnLAogJ3Jlc3RfZnJhbWV3b3JrJywKICdkamFuZ29fbm9zZScsCiAncmVzdF9mcmFtZXdvcmtfc3dhZ2dlcicsCiAnc2lsayddCkluc3RhbGxlZCBNaWRkbGV3YXJlOgpbJ2RqYW5nby5taWRkbGV3YXJlLnNlY3VyaXR5LlNlY3VyaXR5TWlkZGxld2FyZScsCiAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMubWlkZGxld2FyZS5TZXNzaW9uTWlkZGxld2FyZScsCiAnZGphbmdvLm1pZGRsZXdhcmUuY29tbW9uLkNvbW1vbk1pZGRsZXdhcmUnLAogJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5hdXRoLm1pZGRsZXdhcmUuQXV0aGVudGljYXRpb25NaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5tZXNzYWdlcy5taWRkbGV3YXJlLk1lc3NhZ2VNaWRkbGV3YXJlJywKICdkamFuZ28ubWlkZGxld2FyZS5jbGlja2phY2tpbmcuWEZyYW1lT3B0aW9uc01pZGRsZXdhcmUnLAogJ3NpbGsubWlkZGxld2FyZS5TaWxreU1pZGRsZXdhcmUnXQoKClRyYWNlYmFjazogIAoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXGRqYW5nb1xjb3JlXGhhbmRsZXJzXGV4Y2VwdGlvbi5weSIgaW4gaW5uZXIKICAzOS4gICAgICAgICAgICAgcmVzcG9uc2UgPSBnZXRfcmVzcG9uc2UocmVxdWVzdCkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cY29yZVxoYW5kbGVyc1xiYXNlLnB5IiBpbiBfZ2V0X3Jlc3BvbnNlCiAgMTg3LiAgICAgICAgICAgICAgICAgcmVzcG9uc2UgPSBzZWxmLnByb2Nlc3NfZXhjZXB0aW9uX2J5X21pZGRsZXdhcmUoZSwgcmVxdWVzdCkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cY29yZVxoYW5kbGVyc1xiYXNlLnB5IiBpbiBfZ2V0X3Jlc3BvbnNlCiAgMTg1LiAgICAgICAgICAgICAgICAgcmVzcG9uc2UgPSB3cmFwcGVkX2NhbGxiYWNrKHJlcXVlc3QsICpjYWxsYmFja19hcmdzLCAqKmNhbGxiYWNrX2t3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cdmlld3NcZGVjb3JhdG9yc1xjc3JmLnB5IiBpbiB3cmFwcGVkX3ZpZXcKICA1OC4gICAgICAgICByZXR1cm4gdmlld19mdW5jKCphcmdzLCAqKmt3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3c2V0cy5weSIgaW4gdmlldwogIDgzLiAgICAgICAgICAgICByZXR1cm4gc2VsZi5kaXNwYXRjaChyZXF1ZXN0LCAqYXJncywgKiprd2FyZ3MpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNccmVzdF9mcmFtZXdvcmtcdmlld3MucHkiIGluIGRpc3BhdGNoCiAgNDgzLiAgICAgICAgICAgICByZXNwb25zZSA9IHNlbGYuaGFuZGxlX2V4Y2VwdGlvbihleGMpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNccmVzdF9mcmFtZXdvcmtcdmlld3MucHkiIGluIGhhbmRsZV9leGNlcHRpb24KICA0NDMuICAgICAgICAgICAgIHNlbGYucmFpc2VfdW5jYXVnaHRfZXhjZXB0aW9uKGV4YykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3cy5weSIgaW4gZGlzcGF0Y2gKICA0ODAuICAgICAgICAgICAgIHJlc3BvbnNlID0gaGFuZGxlcihyZXF1ZXN0LCAqYXJncywgKiprd2FyZ3MpCgpGaWxlICJEOlxQUExBXGNvcmVcdmlld3NcYWNjb3VudHMucHkiIGluIGJvb2ttYXJrX3ZhY2FuY2llcwogIDMwLiAgICAgICAgIHZhY2FuY3kgPSBnZXRfb2JqZWN0X29yXzQwNChWYWNhbmN5Lm9iamVjdHMuYWxsKCksIHBrPXJlcXVlc3QuZGF0YS5pZCkKCkV4Y2VwdGlvbiBUeXBlOiBBdHRyaWJ1dGVFcnJvciBhdCAvYXBpL3N0dWRlbnRzLzEvYm9va21hcmtlZC12YWNhbmNpZXMvCkV4Y2VwdGlvbiBWYWx1ZTogJ2RpY3QnIG9iamVjdCBoYXMgbm8gYXR0cmlidXRlICdpZCcKUmVxdWVzdCBpbmZvcm1hdGlvbjoKVVNFUjoga2FwZQoKR0VUOiBObyBHRVQgZGF0YQoKUE9TVDogTm8gUE9TVCBkYXRhCgpGSUxFUzogTm8gRklMRVMgZGF0YQoKQ09PS0lFUzoKc2Vzc2lvbmlkID0gJ2JsdDg3N2c1ZmptdWN4eTNkZDV1eGNpemF2YjlvcG92Jwpjc3JmdG9rZW4gPSAnMUVFUDJTd0t0MUs5UWJXbkZQU3lXUElpYnRPN01BYVZxS0xFZW9vRmdZVnlkallQb2duME93cDI5b1VXNkE2SycKCk1FVEE6CkFMTFVTRVJTUFJPRklMRSA9ICdDOlxcUHJvZ3JhbURhdGEnCkFQUERBVEEgPSAnQzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmcnCkNPTU1PTlBST0dSQU1GSUxFUyA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcQ29tbW9uIEZpbGVzJwpDT01NT05QUk9HUkFNRklMRVMoWDg2KSA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcQ29tbW9uIEZpbGVzJwpDT01NT05QUk9HUkFNVzY0MzIgPSAnQzpcXFByb2dyYW0gRmlsZXNcXENvbW1vbiBGaWxlcycKQ09NUFVURVJOQU1FID0gJ0ZBUkhBTicKQ09NU1BFQyA9ICdDOlxcV0lORE9XU1xcc3lzdGVtMzJcXGNtZC5leGUnCkNPTlRFTlRfTEVOR1RIID0gJzg4JwpDT05URU5UX1RZUEUgPSAnYXBwbGljYXRpb24vanNvbicKQ1NSRl9DT09LSUUgPSAnMUVFUDJTd0t0MUs5UWJXbkZQU3lXUElpYnRPN01BYVZxS0xFZW9vRmdZVnlkallQb2duME93cDI5b1VXNkE2SycKREpBTkdPX1NFVFRJTkdTX01PRFVMRSA9ICdrYXBlLnNldHRpbmdzJwpGUFNfQlJPV1NFUl9BUFBfUFJPRklMRV9TVFJJTkcgPSAnSW50ZXJuZXQgRXhwbG9yZXInCkZQU19CUk9XU0VSX1VTRVJfUFJPRklMRV9TVFJJTkcgPSAnRGVmYXVsdCcKRlBfTk9fSE9TVF9DSEVDSyA9ICdOTycKR0FURVdBWV9JTlRFUkZBQ0UgPSAnQ0dJLzEuMScKSE9NRURSSVZFID0gJ0M6JwpIT01FUEFUSCA9ICdcXFVzZXJzXFxmYXJoYV8wMDAnCkhUVFBfQUNDRVBUID0gJ2FwcGxpY2F0aW9uL2pzb24nCkhUVFBfQUNDRVBUX0VOQ09ESU5HID0gJ2d6aXAsIGRlZmxhdGUsIGJyJwpIVFRQX0FDQ0VQVF9MQU5HVUFHRSA9ICdpZC1JRCxpZDtxPTAuOCxlbi1VUztxPTAuNixlbjtxPTAuNCcKSFRUUF9DT05ORUNUSU9OID0gJ2tlZXAtYWxpdmUnCkhUVFBfQ09PS0lFID0gJ3Nlc3Npb25pZD1ibHQ4NzdnNWZqbXVjeHkzZGQ1dXhjaXphdmI5b3BvdjsgY3NyZnRva2VuPTFFRVAyU3dLdDFLOVFiV25GUFN5V1BJaWJ0TzdNQWFWcUtMRWVvb0ZnWVZ5ZGpZUG9nbjBPd3AyOW9VVzZBNksnCkhUVFBfSE9TVCA9ICcxMjcuMC4wLjE6ODAwMCcKSFRUUF9PUklHSU4gPSAnaHR0cDovLzEyNy4wLjAuMTo4MDAwJwpIVFRQX1JFRkVSRVIgPSAnaHR0cDovLzEyNy4wLjAuMTo4MDAwL2FwaScKSFRUUF9VU0VSX0FHRU5UID0gJ01vemlsbGEvNS4wIChXaW5kb3dzIE5UIDEwLjA7IFdPVzY0KSBBcHBsZVdlYktpdC81MzcuMzYgKEtIVE1MLCBsaWtlIEdlY2tvKSBDaHJvbWUvNTYuMC4yOTI0Ljg3IFNhZmFyaS81MzcuMzYnCkhUVFBfWF9DU1JGVE9LRU4gPSAnanE5MUJ1RjVlNVI3U2pNRlJjMlROZnZXVThsRE82d3lJd2dRTjB4MDEyMndmck83QUR4bEZXY0dTM3JzODZzbicKTE9DQUxBUFBEQVRBID0gJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbCcKTE9HT05TRVJWRVIgPSAnXFxcXEZBUkhBTicKTlVNQkVSX09GX1BST0NFU1NPUlMgPSAnMicKT05FRFJJVkUgPSAnQzpcXFVzZXJzXFxmYXJoYV8wMDBcXE9uZURyaXZlJwpPUyA9ICdXaW5kb3dzX05UJwpQQVRIID0gJ0M6XFxQcm9ncmFtRGF0YVxcT3JhY2xlXFxKYXZhXFxqYXZhcGF0aDtDOlxcUHJvZ3JhbSBGaWxlc1xcSGFza2VsbFxcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxIYXNrZWxsIFBsYXRmb3JtXFw3LjEwLjNcXGxpYlxcZXh0cmFsaWJzXFxiaW47QzpcXFByb2dyYW0gRmlsZXNcXEhhc2tlbGwgUGxhdGZvcm1cXDcuMTAuM1xcYmluO0M6XFxXSU5ET1dTXFxzeXN0ZW0zMjtDOlxcV0lORE9XUztDOlxcV0lORE9XU1xcU3lzdGVtMzJcXFdiZW07QzpcXFdJTkRPV1NcXFN5c3RlbTMyXFxXaW5kb3dzUG93ZXJTaGVsbFxcdjEuMFxcO0M6XFxQcm9ncmFtIEZpbGVzXFxIYXNrZWxsIFBsYXRmb3JtXFw3LjEwLjNcXG1pbmd3XFxiaW47QzpcXFByb2dyYW0gRmlsZXNcXEphdmFcXGpkazEuOC4wXzc3XFxiaW47QzpcXGN5Z3dpbjY0XFxiaW47JWxvY2FsYXBwZGF0YSVcXE1pY3Jvc29mdFxcV2luZG93c0FwcHM7RDpcXFhBTVBQXFxwaHA7QzpcXFByb2dyYW0gRmlsZXNcXEdpdFxcY21kO0M6XFx4YW1wcFxccGhwO0M6XFxQcm9ncmFtRGF0YVxcQ29tcG9zZXJTZXR1cFxcYmluO0M6XFxQcm9ncmFtIEZpbGVzICh4ODYpXFxub2RlanNcXDtDOlxcUHJvZ3JhbSBGaWxlc1xcUG9zdGdyZVNRTFxcOS42XFxiaW47QzpcXFByb2dyYW0gRmlsZXNcXE1BVExBQlxcUjIwMTdhXFxiaW47QzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXExvY2FsXFxQcm9ncmFtc1xcUHl0aG9uXFxQeXRob24zNi0zMlxcU2NyaXB0c1xcO0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXDtDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcUm9hbWluZ1xcY2FiYWxcXGJpbjtEOlxcWEFNUFBcXHBocDtDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcUm9hbWluZ1xcQ29tcG9zZXJcXHZlbmRvclxcYmluO0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcTWljcm9zb2Z0XFxXaW5kb3dzQXBwcztDOlxccHl0aG9uLTMuNi4wJwpQQVRIRVhUID0gJy5DT007LkVYRTsuQkFUOy5DTUQ7LlZCUzsuVkJFOy5KUzsuSlNFOy5XU0Y7LldTSDsuTVNDJwpQQVRIX0lORk8gPSAnL2FwaS9zdHVkZW50cy8xL2Jvb2ttYXJrZWQtdmFjYW5jaWVzLycKUFJPQ0VTU09SX0FSQ0hJVEVDVFVSRSA9ICd4ODYnClBST0NFU1NPUl9BUkNISVRFVzY0MzIgPSAnQU1ENjQnClBST0NFU1NPUl9JREVOVElGSUVSID0gJ0ludGVsNjQgRmFtaWx5IDYgTW9kZWwgNTggU3RlcHBpbmcgOSwgR2VudWluZUludGVsJwpQUk9DRVNTT1JfTEVWRUwgPSAnNicKUFJPQ0VTU09SX1JFVklTSU9OID0gJzNhMDknClBST0dSQU1EQVRBID0gJ0M6XFxQcm9ncmFtRGF0YScKUFJPR1JBTUZJTEVTID0gJ0M6XFxQcm9ncmFtIEZpbGVzICh4ODYpJwpQUk9HUkFNRklMRVMoWDg2KSA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KScKUFJPR1JBTVc2NDMyID0gJ0M6XFxQcm9ncmFtIEZpbGVzJwpQUk9NUFQgPSAnJFAkRycKUFNNT0RVTEVQQVRIID0gJ0M6XFxXSU5ET1dTXFxzeXN0ZW0zMlxcV2luZG93c1Bvd2VyU2hlbGxcXHYxLjBcXE1vZHVsZXNcXCcKUFVCTElDID0gJ0M6XFxVc2Vyc1xcUHVibGljJwpRVUVSWV9TVFJJTkcgPSAnJwpSRU1PVEVfQUREUiA9ICcxMjcuMC4wLjEnClJFTU9URV9IT1NUID0gJycKUkVRVUVTVF9NRVRIT0QgPSAnUE9TVCcKUlVOX01BSU4gPSAndHJ1ZScKU0NSSVBUX05BTUUgPSAnJwpTRVJWRVJfTkFNRSA9ICdGYXJoYW4nClNFUlZFUl9QT1JUID0gJzgwMDAnClNFUlZFUl9QUk9UT0NPTCA9ICdIVFRQLzEuMScKU0VSVkVSX1NPRlRXQVJFID0gJ1dTR0lTZXJ2ZXIvMC4yJwpTRVNTSU9OTkFNRSA9ICdDb25zb2xlJwpTWVNURU1EUklWRSA9ICdDOicKU1lTVEVNUk9PVCA9ICdDOlxcV0lORE9XUycKVEVNUCA9ICdDOlxcVXNlcnNcXEZBUkhBX34xXFxBcHBEYXRhXFxMb2NhbFxcVGVtcCcKVE1QID0gJ0M6XFxVc2Vyc1xcRkFSSEFffjFcXEFwcERhdGFcXExvY2FsXFxUZW1wJwpVU0VSRE9NQUlOID0gJ0ZhcmhhbicKVVNFUkRPTUFJTl9ST0FNSU5HUFJPRklMRSA9ICdGYXJoYW4nClVTRVJOQU1FID0gJ0ZhcmhhbiBGYXJhc2RhaycKVVNFUlBST0ZJTEUgPSAnQzpcXFVzZXJzXFxmYXJoYV8wMDAnClZCT1hfTVNJX0lOU1RBTExfUEFUSCA9ICdDOlxcUHJvZ3JhbSBGaWxlc1xcT3JhY2xlXFxWaXJ0dWFsQm94XFwnCldJTkRJUiA9ICdDOlxcV0lORE9XUycKd3NnaS5lcnJvcnMgPSA8X2lvLlRleHRJT1dyYXBwZXIgbmFtZT0nPHN0ZGVycj4nIG1vZGU9J3cnIGVuY29kaW5nPSd1dGYtOCc+CndzZ2kuZmlsZV93cmFwcGVyID0gJycKd3NnaS5pbnB1dCA9IDxfaW8uQnVmZmVyZWRSZWFkZXIgbmFtZT0xODg4Pgp3c2dpLm11bHRpcHJvY2VzcyA9IEZhbHNlCndzZ2kubXVsdGl0aHJlYWQgPSBUcnVlCndzZ2kucnVuX29uY2UgPSBGYWxzZQp3c2dpLnVybF9zY2hlbWUgPSAnaHR0cCcKd3NnaS52ZXJzaW9uID0gCgpTZXR0aW5nczoKVXNpbmcgc2V0dGluZ3MgbW9kdWxlIGthcGUuc2V0dGluZ3MKQUJTT0xVVEVfVVJMX09WRVJSSURFUyA9IHt9CkFETUlOUyA9IFtdCkFMTE9XRURfSE9TVFMgPSBbJ2JvdC5yZWNydWl0LmlkJywgJzEwNC4yMzYuNzYuMTYxJywgJ2xvY2FsaG9zdCcsICcxMjcuMC4wLjEnXQpBUFBFTkRfU0xBU0ggPSBUcnVlCkFVVEhFTlRJQ0FUSU9OX0JBQ0tFTkRTID0gWydkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCddCkFVVEhfUEFTU1dPUkRfVkFMSURBVE9SUyA9ICcqKioqKioqKioqKioqKioqKioqKicKQVVUSF9VU0VSX01PREVMID0gJ2F1dGguVXNlcicKQkFTRV9ESVIgPSAnRDpcXFBQTEEnCkNBQ0hFUyA9IHsnZGVmYXVsdCc6IHsnQkFDS0VORCc6ICdkamFuZ28uY29yZS5jYWNoZS5iYWNrZW5kcy5sb2NtZW0uTG9jTWVtQ2FjaGUnfX0KQ0FDSEVfTUlERExFV0FSRV9BTElBUyA9ICdkZWZhdWx0JwpDQUNIRV9NSURETEVXQVJFX0tFWV9QUkVGSVggPSAnKioqKioqKioqKioqKioqKioqKionCkNBQ0hFX01JRERMRVdBUkVfU0VDT05EUyA9IDYwMApDU1JGX0NPT0tJRV9BR0UgPSAzMTQ0OTYwMApDU1JGX0NPT0tJRV9ET01BSU4gPSBOb25lCkNTUkZfQ09PS0lFX0hUVFBPTkxZID0gRmFsc2UKQ1NSRl9DT09LSUVfTkFNRSA9ICdjc3JmdG9rZW4nCkNTUkZfQ09PS0lFX1BBVEggPSAnLycKQ1NSRl9DT09LSUVfU0VDVVJFID0gRmFsc2UKQ1NSRl9GQUlMVVJFX1ZJRVcgPSAnZGphbmdvLnZpZXdzLmNzcmYuY3NyZl9mYWlsdXJlJwpDU1JGX0hFQURFUl9OQU1FID0gJ0hUVFBfWF9DU1JGVE9LRU4nCkNTUkZfVFJVU1RFRF9PUklHSU5TID0gW10KREFUQUJBU0VTID0geydkZWZhdWx0JzogeydFTkdJTkUnOiAnZGphbmdvLmRiLmJhY2tlbmRzLnBvc3RncmVzcWxfcHN5Y29wZzInLCAnTkFNRSc6ICdrYXBlJywgJ1VTRVInOiAna2FwZScsICdQQVNTV09SRCc6ICcqKioqKioqKioqKioqKioqKioqKicsICdIT1NUJzogJ2xvY2FsaG9zdCcsICdQT1JUJzogJycsICdBVE9NSUNfUkVRVUVTVFMnOiBGYWxzZSwgJ0FVVE9DT01NSVQnOiBUcnVlLCAnQ09OTl9NQVhfQUdFJzogMCwgJ09QVElPTlMnOiB7fSwgJ1RJTUVfWk9ORSc6IE5vbmUsICdURVNUJzogeydDSEFSU0VUJzogTm9uZSwgJ0NPTExBVElPTic6IE5vbmUsICdOQU1FJzogTm9uZSwgJ01JUlJPUic6IE5vbmV9fX0KREFUQUJBU0VfUk9VVEVSUyA9IFtdCkRBVEFfVVBMT0FEX01BWF9NRU1PUllfU0laRSA9IDI2MjE0NDAKREFUQV9VUExPQURfTUFYX05VTUJFUl9GSUVMRFMgPSAxMDAwCkRBVEVUSU1FX0ZPUk1BVCA9ICdOIGosIFksIFAnCkRBVEVUSU1FX0lOUFVUX0ZPUk1BVFMgPSBbJyVZLSVtLSVkICVIOiVNOiVTJywgJyVZLSVtLSVkICVIOiVNOiVTLiVmJywgJyVZLSVtLSVkICVIOiVNJywgJyVZLSVtLSVkJywgJyVtLyVkLyVZICVIOiVNOiVTJywgJyVtLyVkLyVZICVIOiVNOiVTLiVmJywgJyVtLyVkLyVZICVIOiVNJywgJyVtLyVkLyVZJywgJyVtLyVkLyV5ICVIOiVNOiVTJywgJyVtLyVkLyV5ICVIOiVNOiVTLiVmJywgJyVtLyVkLyV5ICVIOiVNJywgJyVtLyVkLyV5J10KREFURV9GT1JNQVQgPSAnTiBqLCBZJwpEQVRFX0lOUFVUX0ZPUk1BVFMgPSBbJyVZLSVtLSVkJywgJyVtLyVkLyVZJywgJyVtLyVkLyV5JywgJyViICVkICVZJywgJyViICVkLCAlWScsICclZCAlYiAlWScsICclZCAlYiwgJVknLCAnJUIgJWQgJVknLCAnJUIgJWQsICVZJywgJyVkICVCICVZJywgJyVkICVCLCAlWSddCkRFQlVHID0gVHJ1ZQpERUJVR19QUk9QQUdBVEVfRVhDRVBUSU9OUyA9IEZhbHNlCkRFQ0lNQUxfU0VQQVJBVE9SID0gJy4nCkRFRkFVTFRfQ0hBUlNFVCA9ICd1dGYtOCcKREVGQVVMVF9DT05URU5UX1RZUEUgPSAndGV4dC9odG1sJwpERUZBVUxUX0VYQ0VQVElPTl9SRVBPUlRFUl9GSUxURVIgPSAnZGphbmdvLnZpZXdzLmRlYnVnLlNhZmVFeGNlcHRpb25SZXBvcnRlckZpbHRlcicKREVGQVVMVF9GSUxFX1NUT1JBR0UgPSAnZGphbmdvLmNvcmUuZmlsZXMuc3RvcmFnZS5GaWxlU3lzdGVtU3RvcmFnZScKREVGQVVMVF9GUk9NX0VNQUlMID0gJ3dlYm1hc3RlckBsb2NhbGhvc3QnCkRFRkFVTFRfSU5ERVhfVEFCTEVTUEFDRSA9ICcnCkRFRkFVTFRfVEFCTEVTUEFDRSA9ICcnCkRJU0FMTE9XRURfVVNFUl9BR0VOVFMgPSBbXQpFTUFJTF9CQUNLRU5EID0gJ2RqYW5nby5jb3JlLm1haWwuYmFja2VuZHMuc210cC5FbWFpbEJhY2tlbmQnCkVNQUlMX0hPU1QgPSAnbG9jYWxob3N0JwpFTUFJTF9IT1NUX1BBU1NXT1JEID0gJyoqKioqKioqKioqKioqKioqKioqJwpFTUFJTF9IT1NUX1VTRVIgPSAnJwpFTUFJTF9QT1JUID0gMjUKRU1BSUxfU1NMX0NFUlRGSUxFID0gTm9uZQpFTUFJTF9TU0xfS0VZRklMRSA9ICcqKioqKioqKioqKioqKioqKioqKicKRU1BSUxfU1VCSkVDVF9QUkVGSVggPSAnW0RqYW5nb10gJwpFTUFJTF9USU1FT1VUID0gTm9uZQpFTUFJTF9VU0VfU1NMID0gRmFsc2UKRU1BSUxfVVNFX1RMUyA9IEZhbHNlCkZJTEVfQ0hBUlNFVCA9ICd1dGYtOCcKRklMRV9VUExPQURfRElSRUNUT1JZX1BFUk1JU1NJT05TID0gTm9uZQpGSUxFX1VQTE9BRF9IQU5ETEVSUyA9IFsnZGphbmdvLmNvcmUuZmlsZXMudXBsb2FkaGFuZGxlci5NZW1vcnlGaWxlVXBsb2FkSGFuZGxlcicsICdkamFuZ28uY29yZS5maWxlcy51cGxvYWRoYW5kbGVyLlRlbXBvcmFyeUZpbGVVcGxvYWRIYW5kbGVyJ10KRklMRV9VUExPQURfTUFYX01FTU9SWV9TSVpFID0gMjYyMTQ0MApGSUxFX1VQTE9BRF9QRVJNSVNTSU9OUyA9IE5vbmUKRklMRV9VUExPQURfVEVNUF9ESVIgPSBOb25lCkZJUlNUX0RBWV9PRl9XRUVLID0gMApGSVhUVVJFX0RJUlMgPSBbXQpGT1JDRV9TQ1JJUFRfTkFNRSA9IE5vbmUKRk9STUFUX01PRFVMRV9QQVRIID0gTm9uZQpHWklQX0NPTlRFTlRfVFlQRVMgPSAKSUdOT1JBQkxFXzQwNF9VUkxTID0gW10KSU5TVEFMTEVEX0FQUFMgPSBbJ2RqYW5nby5jb250cmliLmFkbWluJywgJ2RqYW5nby5jb250cmliLmF1dGgnLCAnZGphbmdvLmNvbnRyaWIuY29udGVudHR5cGVzJywgJ2RqYW5nby5jb250cmliLnNlc3Npb25zJywgJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzJywgJ2RqYW5nby5jb250cmliLnN0YXRpY2ZpbGVzJywgJ3dlYnBhY2tfbG9hZGVyJywgJ2NvcmUnLCAncmVzdF9mcmFtZXdvcmsnLCAnZGphbmdvX25vc2UnLCAncmVzdF9mcmFtZXdvcmtfc3dhZ2dlcicsICdzaWxrJ10KSU5URVJOQUxfSVBTID0gW10KTEFOR1VBR0VTID0gWygnYWYnLCAnQWZyaWthYW5zJyksICgnYXInLCAnQXJhYmljJyksICgnYXN0JywgJ0FzdHVyaWFuJyksICgnYXonLCAnQXplcmJhaWphbmknKSwgKCdiZycsICdCdWxnYXJpYW4nKSwgKCdiZScsICdCZWxhcnVzaWFuJyksICgnYm4nLCAnQmVuZ2FsaScpLCAoJ2JyJywgJ0JyZXRvbicpLCAoJ2JzJywgJ0Jvc25pYW4nKSwgKCdjYScsICdDYXRhbGFuJyksICgnY3MnLCAnQ3plY2gnKSwgKCdjeScsICdXZWxzaCcpLCAoJ2RhJywgJ0RhbmlzaCcpLCAoJ2RlJywgJ0dlcm1hbicpLCAoJ2RzYicsICdMb3dlciBTb3JiaWFuJyksICgnZWwnLCAnR3JlZWsnKSwgKCdlbicsICdFbmdsaXNoJyksICgnZW4tYXUnLCAnQXVzdHJhbGlhbiBFbmdsaXNoJyksICgnZW4tZ2InLCAnQnJpdGlzaCBFbmdsaXNoJyksICgnZW8nLCAnRXNwZXJhbnRvJyksICgnZXMnLCAnU3BhbmlzaCcpLCAoJ2VzLWFyJywgJ0FyZ2VudGluaWFuIFNwYW5pc2gnKSwgKCdlcy1jbycsICdDb2xvbWJpYW4gU3BhbmlzaCcpLCAoJ2VzLW14JywgJ01leGljYW4gU3BhbmlzaCcpLCAoJ2VzLW5pJywgJ05pY2FyYWd1YW4gU3BhbmlzaCcpLCAoJ2VzLXZlJywgJ1ZlbmV6dWVsYW4gU3BhbmlzaCcpLCAoJ2V0JywgJ0VzdG9uaWFuJyksICgnZXUnLCAnQmFzcXVlJyksICgnZmEnLCAnUGVyc2lhbicpLCAoJ2ZpJywgJ0Zpbm5pc2gnKSwgKCdmcicsICdGcmVuY2gnKSwgKCdmeScsICdGcmlzaWFuJyksICgnZ2EnLCAnSXJpc2gnKSwgKCdnZCcsICdTY290dGlzaCBHYWVsaWMnKSwgKCdnbCcsICdHYWxpY2lhbicpLCAoJ2hlJywgJ0hlYnJldycpLCAoJ2hpJywgJ0hpbmRpJyksICgnaHInLCAnQ3JvYXRpYW4nKSwgKCdoc2InLCAnVXBwZXIgU29yYmlhbicpLCAoJ2h1JywgJ0h1bmdhcmlhbicpLCAoJ2lhJywgJ0ludGVybGluZ3VhJyksICgnaWQnLCAnSW5kb25lc2lhbicpLCAoJ2lvJywgJ0lkbycpLCAoJ2lzJywgJ0ljZWxhbmRpYycpLCAoJ2l0JywgJ0l0YWxpYW4nKSwgKCdqYScsICdKYXBhbmVzZScpLCAoJ2thJywgJ0dlb3JnaWFuJyksICgna2snLCAnS2F6YWtoJyksICgna20nLCAnS2htZXInKSwgKCdrbicsICdLYW5uYWRhJyksICgna28nLCAnS29yZWFuJyksICgnbGInLCAnTHV4ZW1ib3VyZ2lzaCcpLCAoJ2x0JywgJ0xpdGh1YW5pYW4nKSwgKCdsdicsICdMYXR2aWFuJyksICgnbWsnLCAnTWFjZWRvbmlhbicpLCAoJ21sJywgJ01hbGF5YWxhbScpLCAoJ21uJywgJ01vbmdvbGlhbicpLCAoJ21yJywgJ01hcmF0aGknKSwgKCdteScsICdCdXJtZXNlJyksICgnbmInLCAnTm9yd2VnaWFuIEJva23DpWwnKSwgKCduZScsICdOZXBhbGknKSwgKCdubCcsICdEdXRjaCcpLCAoJ25uJywgJ05vcndlZ2lhbiBOeW5vcnNrJyksICgnb3MnLCAnT3NzZXRpYycpLCAoJ3BhJywgJ1B1bmphYmknKSwgKCdwbCcsICdQb2xpc2gnKSwgKCdwdCcsICdQb3J0dWd1ZXNlJyksICgncHQtYnInLCAnQnJhemlsaWFuIFBvcnR1Z3Vlc2UnKSwgKCdybycsICdSb21hbmlhbicpLCAoJ3J1JywgJ1J1c3NpYW4nKSwgKCdzaycsICdTbG92YWsnKSwgKCdzbCcsICdTbG92ZW5pYW4nKSwgKCdzcScsICdBbGJhbmlhbicpLCAoJ3NyJywgJ1NlcmJpYW4nKSwgKCdzci1sYXRuJywgJ1NlcmJpYW4gTGF0aW4nKSwgKCdzdicsICdTd2VkaXNoJyksICgnc3cnLCAnU3dhaGlsaScpLCAoJ3RhJywgJ1RhbWlsJyksICgndGUnLCAnVGVsdWd1JyksICgndGgnLCAnVGhhaScpLCAoJ3RyJywgJ1R1cmtpc2gnKSwgKCd0dCcsICdUYXRhcicpLCAoJ3VkbScsICdVZG11cnQnKSwgKCd1aycsICdVa3JhaW5pYW4nKSwgKCd1cicsICdVcmR1JyksICgndmknLCAnVmlldG5hbWVzZScpLCAoJ3poLWhhbnMnLCAnU2ltcGxpZmllZCBDaGluZXNlJyksICgnemgtaGFudCcsICdUcmFkaXRpb25hbCBDaGluZXNlJyldCkxBTkdVQUdFU19CSURJID0gWydoZScsICdhcicsICdmYScsICd1ciddCkxBTkdVQUdFX0NPREUgPSAnZW4tdXMnCkxBTkdVQUdFX0NPT0tJRV9BR0UgPSBOb25lCkxBTkdVQUdFX0NPT0tJRV9ET01BSU4gPSBOb25lCkxBTkdVQUdFX0NPT0tJRV9OQU1FID0gJ2RqYW5nb19sYW5ndWFnZScKTEFOR1VBR0VfQ09PS0lFX1BBVEggPSAnLycKTE9DQUxFX1BBVEhTID0gW10KTE9HR0lORyA9IHt9CkxPR0dJTkdfQ09ORklHID0gJ2xvZ2dpbmcuY29uZmlnLmRpY3RDb25maWcnCkxPR0lOX1JFRElSRUNUX1VSTCA9ICcvYWNjb3VudHMvcHJvZmlsZS8nCkxPR0lOX1VSTCA9ICcvYWNjb3VudHMvbG9naW4vJwpMT0dPVVRfUkVESVJFQ1RfVVJMID0gTm9uZQpNQU5BR0VSUyA9IFtdCk1FRElBX1JPT1QgPSAnL2hvbWUvZmlsZXMnCk1FRElBX1VSTCA9ICcvZmlsZXMvJwpNRVNTQUdFX1NUT1JBR0UgPSAnZGphbmdvLmNvbnRyaWIubWVzc2FnZXMuc3RvcmFnZS5mYWxsYmFjay5GYWxsYmFja1N0b3JhZ2UnCk1JRERMRVdBUkUgPSBbJ2RqYW5nby5taWRkbGV3YXJlLnNlY3VyaXR5LlNlY3VyaXR5TWlkZGxld2FyZScsICdkamFuZ28uY29udHJpYi5zZXNzaW9ucy5taWRkbGV3YXJlLlNlc3Npb25NaWRkbGV3YXJlJywgJ2RqYW5nby5taWRkbGV3YXJlLmNvbW1vbi5Db21tb25NaWRkbGV3YXJlJywgJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJywgJ2RqYW5nby5jb250cmliLmF1dGgubWlkZGxld2FyZS5BdXRoZW50aWNhdGlvbk1pZGRsZXdhcmUnLCAnZGphbmdvLmNvbnRyaWIubWVzc2FnZXMubWlkZGxld2FyZS5NZXNzYWdlTWlkZGxld2FyZScsICdkamFuZ28ubWlkZGxld2FyZS5jbGlja2phY2tpbmcuWEZyYW1lT3B0aW9uc01pZGRsZXdhcmUnLCAnc2lsay5taWRkbGV3YXJlLlNpbGt5TWlkZGxld2FyZSddCk1JRERMRVdBUkVfQ0xBU1NFUyA9IFsnZGphbmdvLm1pZGRsZXdhcmUuY29tbW9uLkNvbW1vbk1pZGRsZXdhcmUnLCAnZGphbmdvLm1pZGRsZXdhcmUuY3NyZi5Dc3JmVmlld01pZGRsZXdhcmUnXQpNSUdSQVRJT05fTU9EVUxFUyA9IHt9Ck1PTlRIX0RBWV9GT1JNQVQgPSAnRiBqJwpOT1NFX0FSR1MgPSBbJy0td2l0aC1jb3ZlcmFnZScsICctLWNvdmVyLXBhY2thZ2U9Y29yZS52aWV3cycsICctLWNvdmVyLWh0bWwtZGlyPXRlc3QvYmFja2VuZCcsICctLWNvdmVyLWh0bWwnXQpOVU1CRVJfR1JPVVBJTkcgPSAwClBBU1NXT1JEX0hBU0hFUlMgPSAnKioqKioqKioqKioqKioqKioqKionClBBU1NXT1JEX1JFU0VUX1RJTUVPVVRfREFZUyA9ICcqKioqKioqKioqKioqKioqKioqKicKUFJFUEVORF9XV1cgPSBGYWxzZQpSRVNUX0ZSQU1FV09SSyA9IHsnREVGQVVMVF9QRVJNSVNTSU9OX0NMQVNTRVMnOiBbJ3Jlc3RfZnJhbWV3b3JrLnBlcm1pc3Npb25zLkRqYW5nb01vZGVsUGVybWlzc2lvbnNPckFub25SZWFkT25seSddfQpST09UX1VSTENPTkYgPSAna2FwZS51cmxzJwpSVU5OSU5HX0RFVlNFUlZFUiA9IFRydWUKU0VDUkVUX0tFWSA9ICcqKioqKioqKioqKioqKioqKioqKicKU0VDVVJFX0JST1dTRVJfWFNTX0ZJTFRFUiA9IEZhbHNlClNFQ1VSRV9DT05URU5UX1RZUEVfTk9TTklGRiA9IEZhbHNlClNFQ1VSRV9IU1RTX0lOQ0xVREVfU1VCRE9NQUlOUyA9IEZhbHNlClNFQ1VSRV9IU1RTX1NFQ09ORFMgPSAwClNFQ1VSRV9QUk9YWV9TU0xfSEVBREVSID0gTm9uZQpTRUNVUkVfUkVESVJFQ1RfRVhFTVBUID0gW10KU0VDVVJFX1NTTF9IT1NUID0gTm9uZQpTRUNVUkVfU1NMX1JFRElSRUNUID0gRmFsc2UKU0VSVkVSX0VNQUlMID0gJ3Jvb3RAbG9jYWxob3N0JwpTRVNTSU9OX0NBQ0hFX0FMSUFTID0gJ2RlZmF1bHQnClNFU1NJT05fQ09PS0lFX0FHRSA9IDEyMDk2MDAKU0VTU0lPTl9DT09LSUVfRE9NQUlOID0gTm9uZQpTRVNTSU9OX0NPT0tJRV9IVFRQT05MWSA9IEZhbHNlClNFU1NJT05fQ09PS0lFX05BTUUgPSAnc2Vzc2lvbmlkJwpTRVNTSU9OX0NPT0tJRV9QQVRIID0gJy8nClNFU1NJT05fQ09PS0lFX1NFQ1VSRSA9IEZhbHNlClNFU1NJT05fRU5HSU5FID0gJ2RqYW5nby5jb250cmliLnNlc3Npb25zLmJhY2tlbmRzLmRiJwpTRVNTSU9OX0VYUElSRV9BVF9CUk9XU0VSX0NMT1NFID0gRmFsc2UKU0VTU0lPTl9GSUxFX1BBVEggPSBOb25lClNFU1NJT05fU0FWRV9FVkVSWV9SRVFVRVNUID0gRmFsc2UKU0VTU0lPTl9TRVJJQUxJWkVSID0gJ2RqYW5nby5jb250cmliLnNlc3Npb25zLnNlcmlhbGl6ZXJzLkpTT05TZXJpYWxpemVyJwpTRVRUSU5HU19NT0RVTEUgPSAna2FwZS5zZXR0aW5ncycKU0hPUlRfREFURVRJTUVfRk9STUFUID0gJ20vZC9ZIFAnClNIT1JUX0RBVEVfRk9STUFUID0gJ20vZC9ZJwpTSUdOSU5HX0JBQ0tFTkQgPSAnZGphbmdvLmNvcmUuc2lnbmluZy5UaW1lc3RhbXBTaWduZXInClNJTEVOQ0VEX1NZU1RFTV9DSEVDS1MgPSBbXQpTVEFUSUNGSUxFU19ESVJTID0gJ0Q6XFxQUExBXFxhc3NldHMnClNUQVRJQ0ZJTEVTX0ZJTkRFUlMgPSBbJ2RqYW5nby5jb250cmliLnN0YXRpY2ZpbGVzLmZpbmRlcnMuRmlsZVN5c3RlbUZpbmRlcicsICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcy5maW5kZXJzLkFwcERpcmVjdG9yaWVzRmluZGVyJ10KU1RBVElDRklMRVNfU1RPUkFHRSA9ICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcy5zdG9yYWdlLlN0YXRpY0ZpbGVzU3RvcmFnZScKU1RBVElDX1JPT1QgPSAnL2hvbWUvYXNzZXRzJwpTVEFUSUNfVVJMID0gJy9hc3NldHMvJwpURU1QTEFURVMgPSBbeydCQUNLRU5EJzogJ2RqYW5nby50ZW1wbGF0ZS5iYWNrZW5kcy5kamFuZ28uRGphbmdvVGVtcGxhdGVzJywgJ0RJUlMnOiBbXSwgJ0FQUF9ESVJTJzogVHJ1ZSwgJ09QVElPTlMnOiB7J2NvbnRleHRfcHJvY2Vzc29ycyc6IFsnZGphbmdvLnRlbXBsYXRlLmNvbnRleHRfcHJvY2Vzc29ycy5kZWJ1ZycsICdkamFuZ28udGVtcGxhdGUuY29udGV4dF9wcm9jZXNzb3JzLnJlcXVlc3QnLCAnZGphbmdvLmNvbnRyaWIuYXV0aC5jb250ZXh0X3Byb2Nlc3NvcnMuYXV0aCcsICdkamFuZ28uY29udHJpYi5tZXNzYWdlcy5jb250ZXh0X3Byb2Nlc3NvcnMubWVzc2FnZXMnXX19XQpURVNUX05PTl9TRVJJQUxJWkVEX0FQUFMgPSBbXQpURVNUX1JVTk5FUiA9ICdkamFuZ29fbm9zZS5Ob3NlVGVzdFN1aXRlUnVubmVyJwpUSE9VU0FORF9TRVBBUkFUT1IgPSAnLCcKVElNRV9GT1JNQVQgPSAnUCcKVElNRV9JTlBVVF9GT1JNQVRTID0gWyclSDolTTolUycsICclSDolTTolUy4lZicsICclSDolTSddClRJTUVfWk9ORSA9ICdVVEMnClVTRV9FVEFHUyA9IEZhbHNlClVTRV9JMThOID0gVHJ1ZQpVU0VfTDEwTiA9IFRydWUKVVNFX1RIT1VTQU5EX1NFUEFSQVRPUiA9IEZhbHNlClVTRV9UWiA9IFRydWUKVVNFX1hfRk9SV0FSREVEX0hPU1QgPSBGYWxzZQpVU0VfWF9GT1JXQVJERURfUE9SVCA9IEZhbHNlCldFQlBBQ0tfTE9BREVSID0geydERUZBVUxUJzogeydCVU5ETEVfRElSX05BTUUnOiAnYnVuZGxlcy8nLCAnU1RBVFNfRklMRSc6ICdEOlxcUFBMQVxcd2VicGFjay1zdGF0cy5qc29uJ319CldTR0lfQVBQTElDQVRJT04gPSAna2FwZS53c2dpLmFwcGxpY2F0aW9uJwpYX0ZSQU1FX09QVElPTlMgPSAnU0FNRU9SSUdJTicKWUVBUl9NT05USF9GT1JNQVQgPSAnRiBZJwoKCllvdSdyZSBzZWVpbmcgdGhpcyBlcnJvciBiZWNhdXNlIHlvdSBoYXZlIERFQlVHID0gVHJ1ZSBpbiB5b3VyCkRqYW5nbyBzZXR0aW5ncyBmaWxlLiBDaGFuZ2UgdGhhdCB0byBGYWxzZSwgYW5kIERqYW5nbyB3aWxsCmRpc3BsYXkgYSBzdGFuZGFyZCBwYWdlIGdlbmVyYXRlZCBieSB0aGUgaGFuZGxlciBmb3IgdGhpcyBzdGF0dXMgY29kZS4KCg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/plain\"}" - } -}, -{ - "model": "silk.response", - "pk": "a43b80f4-8ddf-4345-9a04-6a4936d5e3e6", - "fields": { - "request": "bc3ca836-0e79-4419-8ceb-d8a5e3109f84", - "status_code": 200, - "raw_body": "eyJzd2FnZ2VyIjogIjIuMCIsICJpbmZvIjogeyJ0aXRsZSI6ICIiLCAidmVyc2lvbiI6ICIifSwgInBhdGhzIjogeyIvYXBpL2FwcGxpY2F0aW9ucy8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAiYXBwbGljYXRpb25zX2xpc3QiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogInBhZ2UiLCAicmVxdWlyZWQiOiBmYWxzZSwgImluIjogInF1ZXJ5IiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbImFwcGxpY2F0aW9ucyJdfSwgInBvc3QiOiB7Im9wZXJhdGlvbklkIjogImFwcGxpY2F0aW9uc19jcmVhdGUiLCAicmVzcG9uc2VzIjogeyIyMDEiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InN0dWRlbnRfbnBtIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgInZhY2FuY3lfaWQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9fSwgInJlcXVpcmVkIjogWyJzdHVkZW50X25wbSIsICJ2YWNhbmN5X2lkIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsiYXBwbGljYXRpb25zIl19fSwgIi9hcGkvYXBwbGljYXRpb25zL3tpZH0vIjogeyJnZXQiOiB7Im9wZXJhdGlvbklkIjogImFwcGxpY2F0aW9uc19yZWFkIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbImFwcGxpY2F0aW9ucyJdfSwgInB1dCI6IHsib3BlcmF0aW9uSWQiOiAiYXBwbGljYXRpb25zX3VwZGF0ZSIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InN0dWRlbnRfbnBtIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgInZhY2FuY3lfaWQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9fSwgInJlcXVpcmVkIjogWyJzdHVkZW50X25wbSIsICJ2YWNhbmN5X2lkIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsiYXBwbGljYXRpb25zIl19LCAicGF0Y2giOiB7Im9wZXJhdGlvbklkIjogImFwcGxpY2F0aW9uc19wYXJ0aWFsX3VwZGF0ZSIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InN0dWRlbnRfbnBtIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgInZhY2FuY3lfaWQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9fX19XSwgImNvbnN1bWVzIjogWyJhcHBsaWNhdGlvbi9qc29uIl0sICJ0YWdzIjogWyJhcHBsaWNhdGlvbnMiXX0sICJkZWxldGUiOiB7Im9wZXJhdGlvbklkIjogImFwcGxpY2F0aW9uc19kZWxldGUiLCAicmVzcG9uc2VzIjogeyIyMDQiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsiYXBwbGljYXRpb25zIl19fSwgIi9hcGkvY29tcGFuaWVzLyI6IHsiZ2V0IjogeyJvcGVyYXRpb25JZCI6ICJjb21wYW5pZXNfbGlzdCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAicGFnZSIsICJyZXF1aXJlZCI6IGZhbHNlLCAiaW4iOiAicXVlcnkiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsiY29tcGFuaWVzIl19LCAicG9zdCI6IHsib3BlcmF0aW9uSWQiOiAiY29tcGFuaWVzX2NyZWF0ZSIsICJyZXNwb25zZXMiOiB7IjIwMSI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidXNlciI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAib2JqZWN0In0sICJkZXNjcmlwdGlvbiI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sICJ2ZXJpZmllZCI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiYm9vbGVhbiJ9LCAibG9nbyI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sICJhbGFtYXQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9fSwgInJlcXVpcmVkIjogWyJ1c2VyIiwgImRlc2NyaXB0aW9uIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsiY29tcGFuaWVzIl19fSwgIi9hcGkvY29tcGFuaWVzL3tpZH0vIjogeyJnZXQiOiB7Im9wZXJhdGlvbklkIjogImNvbXBhbmllc19yZWFkIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbImNvbXBhbmllcyJdfSwgInB1dCI6IHsib3BlcmF0aW9uSWQiOiAiY29tcGFuaWVzX3VwZGF0ZSIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InVzZXIiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogIm9iamVjdCJ9LCAiZGVzY3JpcHRpb24iOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAidmVyaWZpZWQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImJvb2xlYW4ifSwgImxvZ28iOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiYWxhbWF0IjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifX0sICJyZXF1aXJlZCI6IFsidXNlciIsICJkZXNjcmlwdGlvbiJdfX1dLCAiY29uc3VtZXMiOiBbImFwcGxpY2F0aW9uL2pzb24iXSwgInRhZ3MiOiBbImNvbXBhbmllcyJdfSwgInBhdGNoIjogeyJvcGVyYXRpb25JZCI6ICJjb21wYW5pZXNfcGFydGlhbF91cGRhdGUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ1c2VyIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJvYmplY3QifSwgImRlc2NyaXB0aW9uIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgInZlcmlmaWVkIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJib29sZWFuIn0sICJsb2dvIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImFsYW1hdCI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn19fX1dLCAiY29uc3VtZXMiOiBbImFwcGxpY2F0aW9uL2pzb24iXSwgInRhZ3MiOiBbImNvbXBhbmllcyJdfSwgImRlbGV0ZSI6IHsib3BlcmF0aW9uSWQiOiAiY29tcGFuaWVzX2RlbGV0ZSIsICJyZXNwb25zZXMiOiB7IjIwNCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJjb21wYW5pZXMiXX19LCAiL2FwaS9zdHVkZW50cy8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAic3R1ZGVudHNfbGlzdCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAicGFnZSIsICJyZXF1aXJlZCI6IGZhbHNlLCAiaW4iOiAicXVlcnkiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsic3R1ZGVudHMiXX0sICJwb3N0IjogeyJvcGVyYXRpb25JZCI6ICJzdHVkZW50c19jcmVhdGUiLCAicmVzcG9uc2VzIjogeyIyMDEiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InVzZXIiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogIm9iamVjdCJ9LCAibnBtIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJpbnRlZ2VyIn0sICJyZXN1bWUiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImZpbGUifSwgInBob25lX251bWJlciI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sICJib29rbWFya2VkX3ZhY2FuY2llcyI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiYXJyYXkiLCAiaXRlbXMiOiB7InR5cGUiOiAic3RyaW5nIn19fSwgInJlcXVpcmVkIjogWyJ1c2VyIiwgIm5wbSJdfX1dLCAiY29uc3VtZXMiOiBbImFwcGxpY2F0aW9uL2pzb24iXSwgInRhZ3MiOiBbInN0dWRlbnRzIl19fSwgIi9hcGkvc3R1ZGVudHMve2lkfS8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAic3R1ZGVudHNfcmVhZCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJzdHVkZW50cyJdfSwgInB1dCI6IHsib3BlcmF0aW9uSWQiOiAic3R1ZGVudHNfdXBkYXRlIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCB7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidXNlciI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAib2JqZWN0In0sICJucG0iOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImludGVnZXIifSwgInJlc3VtZSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiZmlsZSJ9LCAicGhvbmVfbnVtYmVyIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImJvb2ttYXJrZWRfdmFjYW5jaWVzIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJhcnJheSIsICJpdGVtcyI6IHsidHlwZSI6ICJzdHJpbmcifX19LCAicmVxdWlyZWQiOiBbInVzZXIiLCAibnBtIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsic3R1ZGVudHMiXX0sICJwYXRjaCI6IHsib3BlcmF0aW9uSWQiOiAic3R1ZGVudHNfcGFydGlhbF91cGRhdGUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ1c2VyIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJvYmplY3QifSwgIm5wbSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiaW50ZWdlciJ9LCAicmVzdW1lIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJmaWxlIn0sICJwaG9uZV9udW1iZXIiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiYm9va21hcmtlZF92YWNhbmNpZXMiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImFycmF5IiwgIml0ZW1zIjogeyJ0eXBlIjogInN0cmluZyJ9fX19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsic3R1ZGVudHMiXX0sICJkZWxldGUiOiB7Im9wZXJhdGlvbklkIjogInN0dWRlbnRzX2RlbGV0ZSIsICJyZXNwb25zZXMiOiB7IjIwNCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJzdHVkZW50cyJdfX0sICIvYXBpL3N0dWRlbnRzL3tpZH0vYm9va21hcmtlZC12YWNhbmNpZXMvIjogeyJwb3N0IjogeyJvcGVyYXRpb25JZCI6ICJzdHVkZW50c19ib29rbWFya192YWNhbmNpZXMiLCAicmVzcG9uc2VzIjogeyIyMDEiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ1c2VyIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJvYmplY3QifSwgIm5wbSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiaW50ZWdlciJ9LCAicmVzdW1lIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJmaWxlIn0sICJwaG9uZV9udW1iZXIiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiYm9va21hcmtlZF92YWNhbmNpZXMiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImFycmF5IiwgIml0ZW1zIjogeyJ0eXBlIjogInN0cmluZyJ9fX0sICJyZXF1aXJlZCI6IFsidXNlciIsICJucG0iXX19XSwgImNvbnN1bWVzIjogWyJhcHBsaWNhdGlvbi9qc29uIl0sICJ0YWdzIjogWyJzdHVkZW50cyJdfSwgImRlbGV0ZSI6IHsib3BlcmF0aW9uSWQiOiAic3R1ZGVudHNfdW5ib29rbWFya192YWNhbmNpZXMiLCAicmVzcG9uc2VzIjogeyIyMDQiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsic3R1ZGVudHMiXX19LCAiL2FwaS9zdXBlcnZpc29ycy8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAic3VwZXJ2aXNvcnNfbGlzdCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAicGFnZSIsICJyZXF1aXJlZCI6IGZhbHNlLCAiaW4iOiAicXVlcnkiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsic3VwZXJ2aXNvcnMiXX0sICJwb3N0IjogeyJvcGVyYXRpb25JZCI6ICJzdXBlcnZpc29yc19jcmVhdGUiLCAicmVzcG9uc2VzIjogeyIyMDEiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InVzZXIiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogIm9iamVjdCJ9LCAibmlwIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJpbnRlZ2VyIn19LCAicmVxdWlyZWQiOiBbInVzZXIiLCAibmlwIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsic3VwZXJ2aXNvcnMiXX19LCAiL2FwaS9zdXBlcnZpc29ycy97aWR9LyI6IHsiZ2V0IjogeyJvcGVyYXRpb25JZCI6ICJzdXBlcnZpc29yc19yZWFkIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbInN1cGVydmlzb3JzIl19LCAicHV0IjogeyJvcGVyYXRpb25JZCI6ICJzdXBlcnZpc29yc191cGRhdGUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ1c2VyIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJvYmplY3QifSwgIm5pcCI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiaW50ZWdlciJ9fSwgInJlcXVpcmVkIjogWyJ1c2VyIiwgIm5pcCJdfX1dLCAiY29uc3VtZXMiOiBbImFwcGxpY2F0aW9uL2pzb24iXSwgInRhZ3MiOiBbInN1cGVydmlzb3JzIl19LCAicGF0Y2giOiB7Im9wZXJhdGlvbklkIjogInN1cGVydmlzb3JzX3BhcnRpYWxfdXBkYXRlIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCB7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidXNlciI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAib2JqZWN0In0sICJuaXAiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImludGVnZXIifX19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsic3VwZXJ2aXNvcnMiXX0sICJkZWxldGUiOiB7Im9wZXJhdGlvbklkIjogInN1cGVydmlzb3JzX2RlbGV0ZSIsICJyZXNwb25zZXMiOiB7IjIwNCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJzdXBlcnZpc29ycyJdfX0sICIvYXBpL3VzZXJzLyI6IHsiZ2V0IjogeyJvcGVyYXRpb25JZCI6ICJ1c2Vyc19saXN0IiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJwYWdlIiwgInJlcXVpcmVkIjogZmFsc2UsICJpbiI6ICJxdWVyeSIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJ1c2VycyJdfSwgInBvc3QiOiB7Im9wZXJhdGlvbklkIjogInVzZXJzX2NyZWF0ZSIsICJyZXNwb25zZXMiOiB7IjIwMSI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidXNlcm5hbWUiOiB7ImRlc2NyaXB0aW9uIjogIlJlcXVpcmVkLiAxNTAgY2hhcmFjdGVycyBvciBmZXdlci4gTGV0dGVycywgZGlnaXRzIGFuZCBALy4vKy8tL18gb25seS4iLCAidHlwZSI6ICJzdHJpbmcifSwgImVtYWlsIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImlzX3N0YWZmIjogeyJkZXNjcmlwdGlvbiI6ICJEZXNpZ25hdGVzIHdoZXRoZXIgdGhlIHVzZXIgY2FuIGxvZyBpbnRvIHRoaXMgYWRtaW4gc2l0ZS4iLCAidHlwZSI6ICJib29sZWFuIn19LCAicmVxdWlyZWQiOiBbInVzZXJuYW1lIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsidXNlcnMiXX19LCAiL2FwaS91c2Vycy9tZS8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAidXNlcnNfbWUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbXSwgInRhZ3MiOiBbInVzZXJzIl19fSwgIi9hcGkvdXNlcnMve2lkfS8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAidXNlcnNfcmVhZCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJ1c2VycyJdfSwgInB1dCI6IHsib3BlcmF0aW9uSWQiOiAidXNlcnNfdXBkYXRlIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCB7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidXNlcm5hbWUiOiB7ImRlc2NyaXB0aW9uIjogIlJlcXVpcmVkLiAxNTAgY2hhcmFjdGVycyBvciBmZXdlci4gTGV0dGVycywgZGlnaXRzIGFuZCBALy4vKy8tL18gb25seS4iLCAidHlwZSI6ICJzdHJpbmcifSwgImVtYWlsIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImlzX3N0YWZmIjogeyJkZXNjcmlwdGlvbiI6ICJEZXNpZ25hdGVzIHdoZXRoZXIgdGhlIHVzZXIgY2FuIGxvZyBpbnRvIHRoaXMgYWRtaW4gc2l0ZS4iLCAidHlwZSI6ICJib29sZWFuIn19LCAicmVxdWlyZWQiOiBbInVzZXJuYW1lIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsidXNlcnMiXX0sICJwYXRjaCI6IHsib3BlcmF0aW9uSWQiOiAidXNlcnNfcGFydGlhbF91cGRhdGUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ1c2VybmFtZSI6IHsiZGVzY3JpcHRpb24iOiAiUmVxdWlyZWQuIDE1MCBjaGFyYWN0ZXJzIG9yIGZld2VyLiBMZXR0ZXJzLCBkaWdpdHMgYW5kIEAvLi8rLy0vXyBvbmx5LiIsICJ0eXBlIjogInN0cmluZyJ9LCAiZW1haWwiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiaXNfc3RhZmYiOiB7ImRlc2NyaXB0aW9uIjogIkRlc2lnbmF0ZXMgd2hldGhlciB0aGUgdXNlciBjYW4gbG9nIGludG8gdGhpcyBhZG1pbiBzaXRlLiIsICJ0eXBlIjogImJvb2xlYW4ifX19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsidXNlcnMiXX0sICJkZWxldGUiOiB7Im9wZXJhdGlvbklkIjogInVzZXJzX2RlbGV0ZSIsICJyZXNwb25zZXMiOiB7IjIwNCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJ1c2VycyJdfX0sICIvYXBpL3ZhY2FuY2llcy8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAidmFjYW5jaWVzX2xpc3QiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogInBhZ2UiLCAicmVxdWlyZWQiOiBmYWxzZSwgImluIjogInF1ZXJ5IiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbInZhY2FuY2llcyJdfSwgInBvc3QiOiB7Im9wZXJhdGlvbklkIjogInZhY2FuY2llc19jcmVhdGUiLCAicmVzcG9uc2VzIjogeyIyMDEiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7ImNvbXBhbnkiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogIm9iamVjdCJ9LCAidmVyaWZpZWQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImJvb2xlYW4ifSwgIm9wZW5fdGltZSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sICJkZXNjcmlwdGlvbiI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sICJjbG9zZV90aW1lIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifX0sICJyZXF1aXJlZCI6IFsiY29tcGFueSIsICJvcGVuX3RpbWUiLCAiY2xvc2VfdGltZSJdfX1dLCAiY29uc3VtZXMiOiBbImFwcGxpY2F0aW9uL2pzb24iXSwgInRhZ3MiOiBbInZhY2FuY2llcyJdfX0sICIvYXBpL3ZhY2FuY2llcy97aWR9LyI6IHsiZ2V0IjogeyJvcGVyYXRpb25JZCI6ICJ2YWNhbmNpZXNfcmVhZCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJ2YWNhbmNpZXMiXX0sICJwdXQiOiB7Im9wZXJhdGlvbklkIjogInZhY2FuY2llc191cGRhdGUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJjb21wYW55IjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJvYmplY3QifSwgInZlcmlmaWVkIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJib29sZWFuIn0sICJvcGVuX3RpbWUiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiZGVzY3JpcHRpb24iOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiY2xvc2VfdGltZSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn19LCAicmVxdWlyZWQiOiBbImNvbXBhbnkiLCAib3Blbl90aW1lIiwgImNsb3NlX3RpbWUiXX19XSwgImNvbnN1bWVzIjogWyJhcHBsaWNhdGlvbi9qc29uIl0sICJ0YWdzIjogWyJ2YWNhbmNpZXMiXX0sICJwYXRjaCI6IHsib3BlcmF0aW9uSWQiOiAidmFjYW5jaWVzX3BhcnRpYWxfdXBkYXRlIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCB7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsiY29tcGFueSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAib2JqZWN0In0sICJ2ZXJpZmllZCI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiYm9vbGVhbiJ9LCAib3Blbl90aW1lIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImRlc2NyaXB0aW9uIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImNsb3NlX3RpbWUiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9fX19XSwgImNvbnN1bWVzIjogWyJhcHBsaWNhdGlvbi9qc29uIl0sICJ0YWdzIjogWyJ2YWNhbmNpZXMiXX0sICJkZWxldGUiOiB7Im9wZXJhdGlvbklkIjogInZhY2FuY2llc19kZWxldGUiLCAicmVzcG9uc2VzIjogeyIyMDQiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsidmFjYW5jaWVzIl19fX0sICJzZWN1cml0eURlZmluaXRpb25zIjogeyJiYXNpYyI6IHsidHlwZSI6ICJiYXNpYyJ9fX0=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"application/openapi+json\", \"Allow\": \"GET, HEAD, OPTIONS\", \"Vary\": \"Accept\"}" - } -}, -{ - "model": "silk.response", - "pk": "a4fb5cbc-303c-42e7-b9c0-6ba28fbda981", - "fields": { - "request": "c513db0a-3a61-4e5f-a8ed-3ce9ce79bff0", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "a55289db-14a3-438a-94d1-7784281611a5", - "fields": { - "request": "bc6350f5-d212-4f3c-a898-66544f3fc7ec", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "a775c65f-de3c-4150-ac0f-523be0cf2ac7", - "fields": { - "request": "d5422839-e569-4414-9b71-46e813a8aa74", - "status_code": 200, - "raw_body": "CjwhRE9DVFlQRSBodG1sPgo8aHRtbD4KPGhlYWQ+CiAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogIDx0aXRsZT5Td2FnZ2VyIFVJPC90aXRsZT4KICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2ltYWdlcy9mYXZpY29uLTMyeDMyLnBuZyIgc2l6ZXM9IjMyeDMyIiAvPgogIDxsaW5rIHJlbD0iaWNvbiIgdHlwZT0iaW1hZ2UvcG5nIiBocmVmPSIvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvaW1hZ2VzL2Zhdmljb24tMTZ4MTYucG5nIiBzaXplcz0iMTZ4MTYiIC8+CiAgPGxpbmsgaHJlZj0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2Nzcy90eXBvZ3JhcGh5LmNzcycgbWVkaWE9J3NjcmVlbicgcmVsPSdzdHlsZXNoZWV0JyB0eXBlPSd0ZXh0L2NzcycvPgogIDxsaW5rIGhyZWY9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9jc3MvcmVzZXQuY3NzJyBtZWRpYT0nc2NyZWVuJyByZWw9J3N0eWxlc2hlZXQnIHR5cGU9J3RleHQvY3NzJy8+CiAgPGxpbmsgaHJlZj0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2Nzcy9zY3JlZW4uY3NzJyBtZWRpYT0nc2NyZWVuJyByZWw9J3N0eWxlc2hlZXQnIHR5cGU9J3RleHQvY3NzJy8+CiAgPGxpbmsgaHJlZj0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2Nzcy9yZXNldC5jc3MnIG1lZGlhPSdwcmludCcgcmVsPSdzdHlsZXNoZWV0JyB0eXBlPSd0ZXh0L2NzcycvPgogIDxsaW5rIGhyZWY9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9jc3MvcHJpbnQuY3NzJyBtZWRpYT0ncHJpbnQnIHJlbD0nc3R5bGVzaGVldCcgdHlwZT0ndGV4dC9jc3MnLz4KICAKICAKICAKCiAgPHNjcmlwdCBzcmM9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9saWIvb2JqZWN0LWFzc2lnbi1wb2xseWZpbGwuanMnIHR5cGU9J3RleHQvamF2YXNjcmlwdCc+PC9zY3JpcHQ+CiAgPHNjcmlwdCBzcmM9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9saWIvanF1ZXJ5LTEuOC4wLm1pbi5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4KICA8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2xpYi9qcXVlcnkuc2xpZGV0by5taW4uanMnIHR5cGU9J3RleHQvamF2YXNjcmlwdCc+PC9zY3JpcHQ+CiAgPHNjcmlwdCBzcmM9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9saWIvanF1ZXJ5LndpZ2dsZS5taW4uanMnIHR5cGU9J3RleHQvamF2YXNjcmlwdCc+PC9zY3JpcHQ+CiAgPHNjcmlwdCBzcmM9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9saWIvanF1ZXJ5LmJhLWJicS5taW4uanMnIHR5cGU9J3RleHQvamF2YXNjcmlwdCc+PC9zY3JpcHQ+CiAgPHNjcmlwdCBzcmM9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9saWIvaGFuZGxlYmFycy0yLjAuMC5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4KICA8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2xpYi9qcy15YW1sLm1pbi5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4KICA8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2xpYi9sb2Rhc2gubWluLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgogIDxzY3JpcHQgc3JjPScvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvbGliL2JhY2tib25lLW1pbi5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4KICA8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL3N3YWdnZXItdWkubWluLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgogIDxzY3JpcHQgc3JjPScvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvbGliL2hpZ2hsaWdodC45LjEuMC5wYWNrLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgogIDxzY3JpcHQgc3JjPScvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvbGliL2hpZ2hsaWdodC45LjEuMC5wYWNrX2V4dGVuZGVkLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgogIDxzY3JpcHQgc3JjPScvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvbGliL2pzb25lZGl0b3IubWluLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgogIDxzY3JpcHQgc3JjPScvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvbGliL21hcmtlZC5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4KICA8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2xpYi9zd2FnZ2VyLW9hdXRoLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgoKICA8IS0tIFNvbWUgYmFzaWMgdHJhbnNsYXRpb25zIC0tPgogIDwhLS0gPHNjcmlwdCBzcmM9J2xhbmcvdHJhbnNsYXRvci5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4gLS0+CiAgPCEtLSA8c2NyaXB0IHNyYz0nbGFuZy9ydS5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4gLS0+CiAgPCEtLSA8c2NyaXB0IHNyYz0nbGFuZy9lbi5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4gLS0+Cgo8L2hlYWQ+Cgo8Ym9keSBjbGFzcz0ic3dhZ2dlci1zZWN0aW9uIj4KCjxkaXYgaWQ9J2hlYWRlcic+CiAgPGRpdiBjbGFzcz0ic3dhZ2dlci11aS13cmFwIj4KICAgIAogICAgICA8YSBpZD0ibG9nbyIgaHJlZj0iaHR0cDovL3N3YWdnZXIuaW8iPjxpbWcgY2xhc3M9ImxvZ29fX2ltZyIgYWx0PSJzd2FnZ2VyIiBoZWlnaHQ9IjMwIiB3aWR0aD0iMzAiIHNyYz0iL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2ltYWdlcy9sb2dvX3NtYWxsLnBuZyIgLz48c3BhbiBjbGFzcz0ibG9nb19fdGl0bGUiPnN3YWdnZXI8L3NwYW4+PC9hPgogICAgCiAgICA8Zm9ybSBpZD0nYXBpX3NlbGVjdG9yJz4KICAgICAgPGlucHV0IGlkPSJpbnB1dF9iYXNlVXJsIiBuYW1lPSJiYXNlVXJsIiB0eXBlPSJoaWRkZW4iLz4KICAgICAgCiAgICAgICAgPGlucHV0IHR5cGU9J2hpZGRlbicgbmFtZT0nY3NyZm1pZGRsZXdhcmV0b2tlbicgdmFsdWU9J0c4bFBMYTdOUXZhVTBYNVNUcGJ6RWg5VzY4VDB5aUJTNWVzRVhHWklEc2xqbjU3a0NRRzF3WVFHNDNaUFNpeEgnIC8+CiAgICAgICAgCiAgICAgICAgICA8ZGl2IGNsYXNzPSJpbnB1dCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgIAogICAgICAgICAgICAgIEhlbGxvLCBrYXBlCiAgICAgICAgICAgIAogICAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgICAKICAgICAgICAKICAgICAgCgogICAgICAKICAgICAgICAKICAgICAgICAgIDxkaXYgY2xhc3M9J2lucHV0Jz48YSBpZD0iYXV0aCIgY2xhc3M9ImhlYWRlcl9fYnRuIiBocmVmPSI/bmV4dD0vYXBpIiBkYXRhLXN3LXRyYW5zbGF0ZT5EamFuZ28gTG9nb3V0PC9hPjwvZGl2PgogICAgICAgIAogICAgICAKICAgICAgPGRpdiBpZD0nYXV0aF9jb250YWluZXInPjwvZGl2PgogICAgPC9mb3JtPgogIDwvZGl2Pgo8L2Rpdj4KCgo8ZGl2IGlkPSJtZXNzYWdlLWJhciIgY2xhc3M9InN3YWdnZXItdWktd3JhcCIgZGF0YS1zdy10cmFuc2xhdGU+Jm5ic3A7PC9kaXY+CjxkaXYgaWQ9InN3YWdnZXItdWktY29udGFpbmVyIiBjbGFzcz0ic3dhZ2dlci11aS13cmFwIj48L2Rpdj4KCjxzY3JpcHQgaWQ9ImRycy1zZXR0aW5ncyIgdHlwZT0iYXBwbGljYXRpb24vanNvbiI+CnsiYXBpc1NvcnRlciI6IG51bGwsICJkb2NFeHBhbnNpb24iOiBudWxsLCAianNvbkVkaXRvciI6IGZhbHNlLCAib3BlcmF0aW9uc1NvcnRlciI6IG51bGwsICJzaG93UmVxdWVzdEhlYWRlcnMiOiBmYWxzZSwgInN1cHBvcnRlZFN1Ym1pdE1ldGhvZHMiOiBbImdldCIsICJwb3N0IiwgInB1dCIsICJkZWxldGUiLCAicGF0Y2giXX0KPC9zY3JpcHQ+Cgo8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2luaXQuanMnIHR5cGU9J3RleHQvamF2YXNjcmlwdCc+PC9zY3JpcHQ+CgoKCjwvYm9keT4KPC9odG1sPgo=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Allow\": \"GET, HEAD, OPTIONS\", \"Vary\": \"Accept\"}" - } -}, -{ - "model": "silk.response", - "pk": "a815157a-2915-40e0-a15a-2e3ceb0674fd", - "fields": { - "request": "56d4a802-8642-4f43-922d-29ed8edeb677", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPkFkZCB1c2VyIHwgRGphbmdvIHNpdGUgYWRtaW48L3RpdGxlPgo8bGluayByZWw9InN0eWxlc2hlZXQiIHR5cGU9InRleHQvY3NzIiBocmVmPSIvYXNzZXRzL2FkbWluL2Nzcy9iYXNlLmNzcyIgLz4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvZm9ybXMuY3NzIiAvPgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9jb3JlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IvanF1ZXJ5L2pxdWVyeS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvanF1ZXJ5LmluaXQuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2FkbWluL1JlbGF0ZWRPYmplY3RMb29rdXBzLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hY3Rpb25zLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy91cmxpZnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL3ByZXBvcHVsYXRlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IveHJlZ2V4cC94cmVnZXhwLmpzIj48L3NjcmlwdD4KCjxtZXRhIG5hbWU9InJvYm90cyIgY29udGVudD0iTk9ORSxOT0FSQ0hJVkUiIC8+CjwvaGVhZD4KCgo8Ym9keSBjbGFzcz0iIGFwcC1hdXRoIG1vZGVsLXVzZXIgY2hhbmdlLWZvcm0iCiAgZGF0YS1hZG1pbi11dGMtb2Zmc2V0PSIwIj4KCjwhLS0gQ29udGFpbmVyIC0tPgo8ZGl2IGlkPSJjb250YWluZXIiPgoKICAgIAogICAgPCEtLSBIZWFkZXIgLS0+CiAgICA8ZGl2IGlkPSJoZWFkZXIiPgogICAgICAgIDxkaXYgaWQ9ImJyYW5kaW5nIj4KICAgICAgICAKPGgxIGlkPSJzaXRlLW5hbWUiPjxhIGhyZWY9Ii9hZG1pbi8iPkRqYW5nbyBhZG1pbmlzdHJhdGlvbjwvYT48L2gxPgoKICAgICAgICA8L2Rpdj4KICAgICAgICAKICAgICAgICAKICAgICAgICA8ZGl2IGlkPSJ1c2VyLXRvb2xzIj4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICBXZWxjb21lLAogICAgICAgICAgICAgICAgPHN0cm9uZz5rYXBlPC9zdHJvbmc+LgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvIj5WaWV3IHNpdGU8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL3Bhc3N3b3JkX2NoYW5nZS8iPkNoYW5nZSBwYXNzd29yZDwvYT4gLwogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vbG9nb3V0LyI+TG9nIG91dDwvYT4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgCiAgICA8L2Rpdj4KICAgIDwhLS0gRU5EIEhlYWRlciAtLT4KICAgIAo8ZGl2IGNsYXNzPSJicmVhZGNydW1icyI+CjxhIGhyZWY9Ii9hZG1pbi8iPkhvbWU8L2E+CiZyc2FxdW87IDxhIGhyZWY9Ii9hZG1pbi9hdXRoLyI+QXV0aGVudGljYXRpb24gYW5kIEF1dGhvcml6YXRpb248L2E+CiZyc2FxdW87IDxhIGhyZWY9Ii9hZG1pbi9hdXRoL3VzZXIvIj5Vc2VyczwvYT4KJnJzYXF1bzsgQWRkIHVzZXIKPC9kaXY+CgogICAgCgogICAgCiAgICAgICAgCiAgICAKCiAgICA8IS0tIENvbnRlbnQgLS0+CiAgICA8ZGl2IGlkPSJjb250ZW50IiBjbGFzcz0iY29sTSI+CiAgICAgICAgCiAgICAgICAgPGgxPkFkZCB1c2VyPC9oMT4KICAgICAgICA8ZGl2IGlkPSJjb250ZW50LW1haW4iPgoKCgo8Zm9ybSBlbmN0eXBlPSJtdWx0aXBhcnQvZm9ybS1kYXRhIiBhY3Rpb249IiIgbWV0aG9kPSJwb3N0IiBpZD0idXNlcl9mb3JtIiBub3ZhbGlkYXRlPjxpbnB1dCB0eXBlPSdoaWRkZW4nIG5hbWU9J2NzcmZtaWRkbGV3YXJldG9rZW4nIHZhbHVlPSd2U1BLeUNwTDZZc2dFcWxvWU5DQUxBb2Z0WGMza3JQaVVZV3pLOGhHVFZERjF5blFIZTcyRGg1WnJTaVNFckw3JyAvPgogIAogICAgPHA+Rmlyc3QsIGVudGVyIGEgdXNlcm5hbWUgYW5kIHBhc3N3b3JkLiBUaGVuLCB5b3UnbGwgYmUgYWJsZSB0byBlZGl0IG1vcmUgdXNlciBvcHRpb25zLjwvcD4KICAKCjxkaXY+CgoKCgogICAgPHAgY2xhc3M9ImVycm9ybm90ZSI+CiAgICBQbGVhc2UgY29ycmVjdCB0aGUgZXJyb3IgYmVsb3cuCiAgICA8L3A+CiAgICAKCgoKCiAgPGZpZWxkc2V0IGNsYXNzPSJtb2R1bGUgYWxpZ25lZCB3aWRlIj4KICAgIAogICAgCiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC11c2VybmFtZSI+CiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXY+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxsYWJlbCBjbGFzcz0icmVxdWlyZWQiIGZvcj0iaWRfdXNlcm5hbWUiPlVzZXJuYW1lOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgPGlucHV0IGF1dG9mb2N1cz0iIiBjbGFzcz0idlRleHRGaWVsZCIgaWQ9ImlkX3VzZXJuYW1lIiBtYXhsZW5ndGg9IjE1MCIgbmFtZT0idXNlcm5hbWUiIHR5cGU9InRleHQiIHZhbHVlPSJmYXJoYW5jb3JwIiByZXF1aXJlZCAvPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPHAgY2xhc3M9ImhlbHAiPlJlcXVpcmVkLiAxNTAgY2hhcmFjdGVycyBvciBmZXdlci4gTGV0dGVycywgZGlnaXRzIGFuZCBALy4vKy8tL18gb25seS48L3A+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC1wYXNzd29yZDEiPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgY2xhc3M9InJlcXVpcmVkIiBmb3I9ImlkX3Bhc3N3b3JkMSI+UGFzc3dvcmQ6PC9sYWJlbD4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8aW5wdXQgaWQ9ImlkX3Bhc3N3b3JkMSIgbmFtZT0icGFzc3dvcmQxIiB0eXBlPSJwYXNzd29yZCIgcmVxdWlyZWQgLz4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBlcnJvcnMgZmllbGQtcGFzc3dvcmQyIj4KICAgICAgICAgICAgPHVsIGNsYXNzPSJlcnJvcmxpc3QiPjxsaT5UaGUgcGFzc3dvcmQgaXMgdG9vIHNpbWlsYXIgdG8gdGhlIHVzZXJuYW1lLjwvbGk+PC91bD4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgY2xhc3M9InJlcXVpcmVkIiBmb3I9ImlkX3Bhc3N3b3JkMiI+UGFzc3dvcmQgY29uZmlybWF0aW9uOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgPGlucHV0IGlkPSJpZF9wYXNzd29yZDIiIG5hbWU9InBhc3N3b3JkMiIgdHlwZT0icGFzc3dvcmQiIHJlcXVpcmVkIC8+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8cCBjbGFzcz0iaGVscCI+RW50ZXIgdGhlIHNhbWUgcGFzc3dvcmQgYXMgYmVmb3JlLCBmb3IgdmVyaWZpY2F0aW9uLjwvcD4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDwvZGl2PgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgIAo8L2ZpZWxkc2V0PgoKCgoKCgoKCgoKCgoKPGRpdiBjbGFzcz0ic3VibWl0LXJvdyI+CjxpbnB1dCB0eXBlPSJzdWJtaXQiIHZhbHVlPSJTYXZlIiBjbGFzcz0iZGVmYXVsdCIgbmFtZT0iX3NhdmUiIC8+CgoKPGlucHV0IHR5cGU9InN1Ym1pdCIgdmFsdWU9IlNhdmUgYW5kIGFkZCBhbm90aGVyIiBuYW1lPSJfYWRkYW5vdGhlciIgLz4KPGlucHV0IHR5cGU9InN1Ym1pdCIgdmFsdWU9IlNhdmUgYW5kIGNvbnRpbnVlIGVkaXRpbmciIG5hbWU9Il9jb250aW51ZSIgLz4KPC9kaXY+CgoKCiAgICA8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIKICAgICAgICAgICAgaWQ9ImRqYW5nby1hZG1pbi1mb3JtLWFkZC1jb25zdGFudHMiCiAgICAgICAgICAgIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9jaGFuZ2VfZm9ybS5qcyIKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICBkYXRhLW1vZGVsLW5hbWU9InVzZXIiCiAgICAgICAgICAgID4KICAgIDwvc2NyaXB0PgoKCgoKPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiCiAgICAgICAgaWQ9ImRqYW5nby1hZG1pbi1wcmVwb3B1bGF0ZWQtZmllbGRzLWNvbnN0YW50cyIKICAgICAgICBzcmM9Ii9hc3NldHMvYWRtaW4vanMvcHJlcG9wdWxhdGVfaW5pdC5qcyIKICAgICAgICBkYXRhLXByZXBvcHVsYXRlZC1maWVsZHM9IltdIj4KPC9zY3JpcHQ+CgoKPC9kaXY+CjwvZm9ybT48L2Rpdj4KCiAgICAgICAgCiAgICAgICAgPGJyIGNsYXNzPSJjbGVhciIgLz4KICAgIDwvZGl2PgogICAgPCEtLSBFTkQgQ29udGVudCAtLT4KCiAgICA8ZGl2IGlkPSJmb290ZXIiPjwvZGl2Pgo8L2Rpdj4KPCEtLSBFTkQgQ29udGFpbmVyIC0tPgoKPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 14:53:16 GMT\", \"Expires\": \"Mon, 27 Mar 2017 14:53:16 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "a9941737-3e06-455e-9983-809c42fe0384", - "fields": { - "request": "5b412e8b-0fe2-42e2-96a7-1ce439d819f2", - "status_code": 200, - "raw_body": "CjwhRE9DVFlQRSBodG1sPgo8aHRtbD4KPGhlYWQ+CiAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogIDx0aXRsZT5Td2FnZ2VyIFVJPC90aXRsZT4KICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2ltYWdlcy9mYXZpY29uLTMyeDMyLnBuZyIgc2l6ZXM9IjMyeDMyIiAvPgogIDxsaW5rIHJlbD0iaWNvbiIgdHlwZT0iaW1hZ2UvcG5nIiBocmVmPSIvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvaW1hZ2VzL2Zhdmljb24tMTZ4MTYucG5nIiBzaXplcz0iMTZ4MTYiIC8+CiAgPGxpbmsgaHJlZj0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2Nzcy90eXBvZ3JhcGh5LmNzcycgbWVkaWE9J3NjcmVlbicgcmVsPSdzdHlsZXNoZWV0JyB0eXBlPSd0ZXh0L2NzcycvPgogIDxsaW5rIGhyZWY9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9jc3MvcmVzZXQuY3NzJyBtZWRpYT0nc2NyZWVuJyByZWw9J3N0eWxlc2hlZXQnIHR5cGU9J3RleHQvY3NzJy8+CiAgPGxpbmsgaHJlZj0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2Nzcy9zY3JlZW4uY3NzJyBtZWRpYT0nc2NyZWVuJyByZWw9J3N0eWxlc2hlZXQnIHR5cGU9J3RleHQvY3NzJy8+CiAgPGxpbmsgaHJlZj0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2Nzcy9yZXNldC5jc3MnIG1lZGlhPSdwcmludCcgcmVsPSdzdHlsZXNoZWV0JyB0eXBlPSd0ZXh0L2NzcycvPgogIDxsaW5rIGhyZWY9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9jc3MvcHJpbnQuY3NzJyBtZWRpYT0ncHJpbnQnIHJlbD0nc3R5bGVzaGVldCcgdHlwZT0ndGV4dC9jc3MnLz4KICAKICAKICAKCiAgPHNjcmlwdCBzcmM9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9saWIvb2JqZWN0LWFzc2lnbi1wb2xseWZpbGwuanMnIHR5cGU9J3RleHQvamF2YXNjcmlwdCc+PC9zY3JpcHQ+CiAgPHNjcmlwdCBzcmM9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9saWIvanF1ZXJ5LTEuOC4wLm1pbi5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4KICA8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2xpYi9qcXVlcnkuc2xpZGV0by5taW4uanMnIHR5cGU9J3RleHQvamF2YXNjcmlwdCc+PC9zY3JpcHQ+CiAgPHNjcmlwdCBzcmM9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9saWIvanF1ZXJ5LndpZ2dsZS5taW4uanMnIHR5cGU9J3RleHQvamF2YXNjcmlwdCc+PC9zY3JpcHQ+CiAgPHNjcmlwdCBzcmM9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9saWIvanF1ZXJ5LmJhLWJicS5taW4uanMnIHR5cGU9J3RleHQvamF2YXNjcmlwdCc+PC9zY3JpcHQ+CiAgPHNjcmlwdCBzcmM9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9saWIvaGFuZGxlYmFycy0yLjAuMC5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4KICA8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2xpYi9qcy15YW1sLm1pbi5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4KICA8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2xpYi9sb2Rhc2gubWluLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgogIDxzY3JpcHQgc3JjPScvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvbGliL2JhY2tib25lLW1pbi5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4KICA8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL3N3YWdnZXItdWkubWluLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgogIDxzY3JpcHQgc3JjPScvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvbGliL2hpZ2hsaWdodC45LjEuMC5wYWNrLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgogIDxzY3JpcHQgc3JjPScvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvbGliL2hpZ2hsaWdodC45LjEuMC5wYWNrX2V4dGVuZGVkLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgogIDxzY3JpcHQgc3JjPScvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvbGliL2pzb25lZGl0b3IubWluLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgogIDxzY3JpcHQgc3JjPScvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvbGliL21hcmtlZC5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4KICA8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2xpYi9zd2FnZ2VyLW9hdXRoLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgoKICA8IS0tIFNvbWUgYmFzaWMgdHJhbnNsYXRpb25zIC0tPgogIDwhLS0gPHNjcmlwdCBzcmM9J2xhbmcvdHJhbnNsYXRvci5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4gLS0+CiAgPCEtLSA8c2NyaXB0IHNyYz0nbGFuZy9ydS5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4gLS0+CiAgPCEtLSA8c2NyaXB0IHNyYz0nbGFuZy9lbi5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4gLS0+Cgo8L2hlYWQ+Cgo8Ym9keSBjbGFzcz0ic3dhZ2dlci1zZWN0aW9uIj4KCjxkaXYgaWQ9J2hlYWRlcic+CiAgPGRpdiBjbGFzcz0ic3dhZ2dlci11aS13cmFwIj4KICAgIAogICAgICA8YSBpZD0ibG9nbyIgaHJlZj0iaHR0cDovL3N3YWdnZXIuaW8iPjxpbWcgY2xhc3M9ImxvZ29fX2ltZyIgYWx0PSJzd2FnZ2VyIiBoZWlnaHQ9IjMwIiB3aWR0aD0iMzAiIHNyYz0iL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2ltYWdlcy9sb2dvX3NtYWxsLnBuZyIgLz48c3BhbiBjbGFzcz0ibG9nb19fdGl0bGUiPnN3YWdnZXI8L3NwYW4+PC9hPgogICAgCiAgICA8Zm9ybSBpZD0nYXBpX3NlbGVjdG9yJz4KICAgICAgPGlucHV0IGlkPSJpbnB1dF9iYXNlVXJsIiBuYW1lPSJiYXNlVXJsIiB0eXBlPSJoaWRkZW4iLz4KICAgICAgCiAgICAgICAgPGlucHV0IHR5cGU9J2hpZGRlbicgbmFtZT0nY3NyZm1pZGRsZXdhcmV0b2tlbicgdmFsdWU9J2hpTXVSRUFJTGZITUNOUzc2cnZPbFpxM0JlUlY0QUwyR29UajNhc0R5Y1NiWlZVelBTMGdkRzdOejlYS29BSFInIC8+CiAgICAgICAgCiAgICAgICAgICA8ZGl2IGNsYXNzPSJpbnB1dCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgIAogICAgICAgICAgICAgIEhlbGxvLCBrYXBlCiAgICAgICAgICAgIAogICAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgICAKICAgICAgICAKICAgICAgCgogICAgICAKICAgICAgICAKICAgICAgICAgIDxkaXYgY2xhc3M9J2lucHV0Jz48YSBpZD0iYXV0aCIgY2xhc3M9ImhlYWRlcl9fYnRuIiBocmVmPSI/bmV4dD0vYXBpIiBkYXRhLXN3LXRyYW5zbGF0ZT5EamFuZ28gTG9nb3V0PC9hPjwvZGl2PgogICAgICAgIAogICAgICAKICAgICAgPGRpdiBpZD0nYXV0aF9jb250YWluZXInPjwvZGl2PgogICAgPC9mb3JtPgogIDwvZGl2Pgo8L2Rpdj4KCgo8ZGl2IGlkPSJtZXNzYWdlLWJhciIgY2xhc3M9InN3YWdnZXItdWktd3JhcCIgZGF0YS1zdy10cmFuc2xhdGU+Jm5ic3A7PC9kaXY+CjxkaXYgaWQ9InN3YWdnZXItdWktY29udGFpbmVyIiBjbGFzcz0ic3dhZ2dlci11aS13cmFwIj48L2Rpdj4KCjxzY3JpcHQgaWQ9ImRycy1zZXR0aW5ncyIgdHlwZT0iYXBwbGljYXRpb24vanNvbiI+CnsiYXBpc1NvcnRlciI6IG51bGwsICJkb2NFeHBhbnNpb24iOiBudWxsLCAianNvbkVkaXRvciI6IGZhbHNlLCAib3BlcmF0aW9uc1NvcnRlciI6IG51bGwsICJzaG93UmVxdWVzdEhlYWRlcnMiOiBmYWxzZSwgInN1cHBvcnRlZFN1Ym1pdE1ldGhvZHMiOiBbImdldCIsICJwb3N0IiwgInB1dCIsICJkZWxldGUiLCAicGF0Y2giXX0KPC9zY3JpcHQ+Cgo8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2luaXQuanMnIHR5cGU9J3RleHQvamF2YXNjcmlwdCc+PC9zY3JpcHQ+CgoKCjwvYm9keT4KPC9odG1sPgo=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Allow\": \"GET, HEAD, OPTIONS\", \"Vary\": \"Accept\"}" - } -}, -{ - "model": "silk.response", - "pk": "aa13a31a-ee23-4179-9e44-359ecc3d7479", - "fields": { - "request": "eacb1777-73dc-455b-bc1e-fdd20cab20fb", - "status_code": 200, - "raw_body": "eyJzd2FnZ2VyIjogIjIuMCIsICJpbmZvIjogeyJ0aXRsZSI6ICIiLCAidmVyc2lvbiI6ICIifSwgInBhdGhzIjogeyIvYXBpL2FwcGxpY2F0aW9ucy8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAiYXBwbGljYXRpb25zX2xpc3QiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogInBhZ2UiLCAicmVxdWlyZWQiOiBmYWxzZSwgImluIjogInF1ZXJ5IiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbImFwcGxpY2F0aW9ucyJdfSwgInBvc3QiOiB7Im9wZXJhdGlvbklkIjogImFwcGxpY2F0aW9uc19jcmVhdGUiLCAicmVzcG9uc2VzIjogeyIyMDEiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InN0dWRlbnRfbnBtIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgInZhY2FuY3lfaWQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9fSwgInJlcXVpcmVkIjogWyJzdHVkZW50X25wbSIsICJ2YWNhbmN5X2lkIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsiYXBwbGljYXRpb25zIl19fSwgIi9hcGkvYXBwbGljYXRpb25zL3tpZH0vIjogeyJnZXQiOiB7Im9wZXJhdGlvbklkIjogImFwcGxpY2F0aW9uc19yZWFkIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbImFwcGxpY2F0aW9ucyJdfSwgInB1dCI6IHsib3BlcmF0aW9uSWQiOiAiYXBwbGljYXRpb25zX3VwZGF0ZSIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InN0dWRlbnRfbnBtIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgInZhY2FuY3lfaWQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9fSwgInJlcXVpcmVkIjogWyJzdHVkZW50X25wbSIsICJ2YWNhbmN5X2lkIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsiYXBwbGljYXRpb25zIl19LCAicGF0Y2giOiB7Im9wZXJhdGlvbklkIjogImFwcGxpY2F0aW9uc19wYXJ0aWFsX3VwZGF0ZSIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InN0dWRlbnRfbnBtIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgInZhY2FuY3lfaWQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9fX19XSwgImNvbnN1bWVzIjogWyJhcHBsaWNhdGlvbi9qc29uIl0sICJ0YWdzIjogWyJhcHBsaWNhdGlvbnMiXX0sICJkZWxldGUiOiB7Im9wZXJhdGlvbklkIjogImFwcGxpY2F0aW9uc19kZWxldGUiLCAicmVzcG9uc2VzIjogeyIyMDQiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsiYXBwbGljYXRpb25zIl19fSwgIi9hcGkvY29tcGFuaWVzLyI6IHsiZ2V0IjogeyJvcGVyYXRpb25JZCI6ICJjb21wYW5pZXNfbGlzdCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAicGFnZSIsICJyZXF1aXJlZCI6IGZhbHNlLCAiaW4iOiAicXVlcnkiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsiY29tcGFuaWVzIl19LCAicG9zdCI6IHsib3BlcmF0aW9uSWQiOiAiY29tcGFuaWVzX2NyZWF0ZSIsICJyZXNwb25zZXMiOiB7IjIwMSI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidXNlciI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAib2JqZWN0In0sICJkZXNjcmlwdGlvbiI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sICJ2ZXJpZmllZCI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiYm9vbGVhbiJ9LCAibG9nbyI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sICJhbGFtYXQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9fSwgInJlcXVpcmVkIjogWyJ1c2VyIiwgImRlc2NyaXB0aW9uIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsiY29tcGFuaWVzIl19fSwgIi9hcGkvY29tcGFuaWVzL3tpZH0vIjogeyJnZXQiOiB7Im9wZXJhdGlvbklkIjogImNvbXBhbmllc19yZWFkIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbImNvbXBhbmllcyJdfSwgInB1dCI6IHsib3BlcmF0aW9uSWQiOiAiY29tcGFuaWVzX3VwZGF0ZSIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InVzZXIiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogIm9iamVjdCJ9LCAiZGVzY3JpcHRpb24iOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAidmVyaWZpZWQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImJvb2xlYW4ifSwgImxvZ28iOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiYWxhbWF0IjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifX0sICJyZXF1aXJlZCI6IFsidXNlciIsICJkZXNjcmlwdGlvbiJdfX1dLCAiY29uc3VtZXMiOiBbImFwcGxpY2F0aW9uL2pzb24iXSwgInRhZ3MiOiBbImNvbXBhbmllcyJdfSwgInBhdGNoIjogeyJvcGVyYXRpb25JZCI6ICJjb21wYW5pZXNfcGFydGlhbF91cGRhdGUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ1c2VyIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJvYmplY3QifSwgImRlc2NyaXB0aW9uIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgInZlcmlmaWVkIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJib29sZWFuIn0sICJsb2dvIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImFsYW1hdCI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn19fX1dLCAiY29uc3VtZXMiOiBbImFwcGxpY2F0aW9uL2pzb24iXSwgInRhZ3MiOiBbImNvbXBhbmllcyJdfSwgImRlbGV0ZSI6IHsib3BlcmF0aW9uSWQiOiAiY29tcGFuaWVzX2RlbGV0ZSIsICJyZXNwb25zZXMiOiB7IjIwNCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJjb21wYW5pZXMiXX19LCAiL2FwaS9zdHVkZW50cy8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAic3R1ZGVudHNfbGlzdCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAicGFnZSIsICJyZXF1aXJlZCI6IGZhbHNlLCAiaW4iOiAicXVlcnkiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsic3R1ZGVudHMiXX0sICJwb3N0IjogeyJvcGVyYXRpb25JZCI6ICJzdHVkZW50c19jcmVhdGUiLCAicmVzcG9uc2VzIjogeyIyMDEiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InVzZXIiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogIm9iamVjdCJ9LCAibnBtIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJpbnRlZ2VyIn0sICJyZXN1bWUiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImZpbGUifSwgInBob25lX251bWJlciI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sICJib29rbWFya2VkX3ZhY2FuY2llcyI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiYXJyYXkiLCAiaXRlbXMiOiB7InR5cGUiOiAic3RyaW5nIn19fSwgInJlcXVpcmVkIjogWyJ1c2VyIiwgIm5wbSJdfX1dLCAiY29uc3VtZXMiOiBbImFwcGxpY2F0aW9uL2pzb24iXSwgInRhZ3MiOiBbInN0dWRlbnRzIl19fSwgIi9hcGkvc3R1ZGVudHMve2lkfS8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAic3R1ZGVudHNfcmVhZCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJzdHVkZW50cyJdfSwgInB1dCI6IHsib3BlcmF0aW9uSWQiOiAic3R1ZGVudHNfdXBkYXRlIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCB7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidXNlciI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAib2JqZWN0In0sICJucG0iOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImludGVnZXIifSwgInJlc3VtZSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiZmlsZSJ9LCAicGhvbmVfbnVtYmVyIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImJvb2ttYXJrZWRfdmFjYW5jaWVzIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJhcnJheSIsICJpdGVtcyI6IHsidHlwZSI6ICJzdHJpbmcifX19LCAicmVxdWlyZWQiOiBbInVzZXIiLCAibnBtIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsic3R1ZGVudHMiXX0sICJwYXRjaCI6IHsib3BlcmF0aW9uSWQiOiAic3R1ZGVudHNfcGFydGlhbF91cGRhdGUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ1c2VyIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJvYmplY3QifSwgIm5wbSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiaW50ZWdlciJ9LCAicmVzdW1lIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJmaWxlIn0sICJwaG9uZV9udW1iZXIiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiYm9va21hcmtlZF92YWNhbmNpZXMiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImFycmF5IiwgIml0ZW1zIjogeyJ0eXBlIjogInN0cmluZyJ9fX19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsic3R1ZGVudHMiXX0sICJkZWxldGUiOiB7Im9wZXJhdGlvbklkIjogInN0dWRlbnRzX2RlbGV0ZSIsICJyZXNwb25zZXMiOiB7IjIwNCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJzdHVkZW50cyJdfX0sICIvYXBpL3N0dWRlbnRzL3tpZH0vYm9va21hcmtlZC12YWNhbmNpZXMvIjogeyJwb3N0IjogeyJvcGVyYXRpb25JZCI6ICJzdHVkZW50c19ib29rbWFya192YWNhbmNpZXMiLCAicmVzcG9uc2VzIjogeyIyMDEiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ1c2VyIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJvYmplY3QifSwgIm5wbSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiaW50ZWdlciJ9LCAicmVzdW1lIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJmaWxlIn0sICJwaG9uZV9udW1iZXIiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiYm9va21hcmtlZF92YWNhbmNpZXMiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImFycmF5IiwgIml0ZW1zIjogeyJ0eXBlIjogInN0cmluZyJ9fX0sICJyZXF1aXJlZCI6IFsidXNlciIsICJucG0iXX19XSwgImNvbnN1bWVzIjogWyJhcHBsaWNhdGlvbi9qc29uIl0sICJ0YWdzIjogWyJzdHVkZW50cyJdfSwgImRlbGV0ZSI6IHsib3BlcmF0aW9uSWQiOiAic3R1ZGVudHNfdW5ib29rbWFya192YWNhbmNpZXMiLCAicmVzcG9uc2VzIjogeyIyMDQiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsic3R1ZGVudHMiXX19LCAiL2FwaS9zdXBlcnZpc29ycy8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAic3VwZXJ2aXNvcnNfbGlzdCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAicGFnZSIsICJyZXF1aXJlZCI6IGZhbHNlLCAiaW4iOiAicXVlcnkiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsic3VwZXJ2aXNvcnMiXX0sICJwb3N0IjogeyJvcGVyYXRpb25JZCI6ICJzdXBlcnZpc29yc19jcmVhdGUiLCAicmVzcG9uc2VzIjogeyIyMDEiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InVzZXIiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogIm9iamVjdCJ9LCAibmlwIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJpbnRlZ2VyIn19LCAicmVxdWlyZWQiOiBbInVzZXIiLCAibmlwIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsic3VwZXJ2aXNvcnMiXX19LCAiL2FwaS9zdXBlcnZpc29ycy97aWR9LyI6IHsiZ2V0IjogeyJvcGVyYXRpb25JZCI6ICJzdXBlcnZpc29yc19yZWFkIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbInN1cGVydmlzb3JzIl19LCAicHV0IjogeyJvcGVyYXRpb25JZCI6ICJzdXBlcnZpc29yc191cGRhdGUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ1c2VyIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJvYmplY3QifSwgIm5pcCI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiaW50ZWdlciJ9fSwgInJlcXVpcmVkIjogWyJ1c2VyIiwgIm5pcCJdfX1dLCAiY29uc3VtZXMiOiBbImFwcGxpY2F0aW9uL2pzb24iXSwgInRhZ3MiOiBbInN1cGVydmlzb3JzIl19LCAicGF0Y2giOiB7Im9wZXJhdGlvbklkIjogInN1cGVydmlzb3JzX3BhcnRpYWxfdXBkYXRlIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCB7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidXNlciI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAib2JqZWN0In0sICJuaXAiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImludGVnZXIifX19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsic3VwZXJ2aXNvcnMiXX0sICJkZWxldGUiOiB7Im9wZXJhdGlvbklkIjogInN1cGVydmlzb3JzX2RlbGV0ZSIsICJyZXNwb25zZXMiOiB7IjIwNCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJzdXBlcnZpc29ycyJdfX0sICIvYXBpL3VzZXJzLyI6IHsiZ2V0IjogeyJvcGVyYXRpb25JZCI6ICJ1c2Vyc19saXN0IiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJwYWdlIiwgInJlcXVpcmVkIjogZmFsc2UsICJpbiI6ICJxdWVyeSIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJ1c2VycyJdfSwgInBvc3QiOiB7Im9wZXJhdGlvbklkIjogInVzZXJzX2NyZWF0ZSIsICJyZXNwb25zZXMiOiB7IjIwMSI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidXNlcm5hbWUiOiB7ImRlc2NyaXB0aW9uIjogIlJlcXVpcmVkLiAxNTAgY2hhcmFjdGVycyBvciBmZXdlci4gTGV0dGVycywgZGlnaXRzIGFuZCBALy4vKy8tL18gb25seS4iLCAidHlwZSI6ICJzdHJpbmcifSwgImVtYWlsIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImlzX3N0YWZmIjogeyJkZXNjcmlwdGlvbiI6ICJEZXNpZ25hdGVzIHdoZXRoZXIgdGhlIHVzZXIgY2FuIGxvZyBpbnRvIHRoaXMgYWRtaW4gc2l0ZS4iLCAidHlwZSI6ICJib29sZWFuIn19LCAicmVxdWlyZWQiOiBbInVzZXJuYW1lIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsidXNlcnMiXX19LCAiL2FwaS91c2Vycy9tZS8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAidXNlcnNfbWUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbXSwgInRhZ3MiOiBbInVzZXJzIl19fSwgIi9hcGkvdXNlcnMve2lkfS8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAidXNlcnNfcmVhZCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJ1c2VycyJdfSwgInB1dCI6IHsib3BlcmF0aW9uSWQiOiAidXNlcnNfdXBkYXRlIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCB7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidXNlcm5hbWUiOiB7ImRlc2NyaXB0aW9uIjogIlJlcXVpcmVkLiAxNTAgY2hhcmFjdGVycyBvciBmZXdlci4gTGV0dGVycywgZGlnaXRzIGFuZCBALy4vKy8tL18gb25seS4iLCAidHlwZSI6ICJzdHJpbmcifSwgImVtYWlsIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImlzX3N0YWZmIjogeyJkZXNjcmlwdGlvbiI6ICJEZXNpZ25hdGVzIHdoZXRoZXIgdGhlIHVzZXIgY2FuIGxvZyBpbnRvIHRoaXMgYWRtaW4gc2l0ZS4iLCAidHlwZSI6ICJib29sZWFuIn19LCAicmVxdWlyZWQiOiBbInVzZXJuYW1lIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsidXNlcnMiXX0sICJwYXRjaCI6IHsib3BlcmF0aW9uSWQiOiAidXNlcnNfcGFydGlhbF91cGRhdGUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ1c2VybmFtZSI6IHsiZGVzY3JpcHRpb24iOiAiUmVxdWlyZWQuIDE1MCBjaGFyYWN0ZXJzIG9yIGZld2VyLiBMZXR0ZXJzLCBkaWdpdHMgYW5kIEAvLi8rLy0vXyBvbmx5LiIsICJ0eXBlIjogInN0cmluZyJ9LCAiZW1haWwiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiaXNfc3RhZmYiOiB7ImRlc2NyaXB0aW9uIjogIkRlc2lnbmF0ZXMgd2hldGhlciB0aGUgdXNlciBjYW4gbG9nIGludG8gdGhpcyBhZG1pbiBzaXRlLiIsICJ0eXBlIjogImJvb2xlYW4ifX19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsidXNlcnMiXX0sICJkZWxldGUiOiB7Im9wZXJhdGlvbklkIjogInVzZXJzX2RlbGV0ZSIsICJyZXNwb25zZXMiOiB7IjIwNCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJ1c2VycyJdfX0sICIvYXBpL3ZhY2FuY2llcy8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAidmFjYW5jaWVzX2xpc3QiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogInBhZ2UiLCAicmVxdWlyZWQiOiBmYWxzZSwgImluIjogInF1ZXJ5IiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbInZhY2FuY2llcyJdfSwgInBvc3QiOiB7Im9wZXJhdGlvbklkIjogInZhY2FuY2llc19jcmVhdGUiLCAicmVzcG9uc2VzIjogeyIyMDEiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7ImNvbXBhbnkiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogIm9iamVjdCJ9LCAidmVyaWZpZWQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImJvb2xlYW4ifSwgIm9wZW5fdGltZSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sICJkZXNjcmlwdGlvbiI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sICJjbG9zZV90aW1lIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifX0sICJyZXF1aXJlZCI6IFsiY29tcGFueSIsICJvcGVuX3RpbWUiLCAiY2xvc2VfdGltZSJdfX1dLCAiY29uc3VtZXMiOiBbImFwcGxpY2F0aW9uL2pzb24iXSwgInRhZ3MiOiBbInZhY2FuY2llcyJdfX0sICIvYXBpL3ZhY2FuY2llcy97aWR9LyI6IHsiZ2V0IjogeyJvcGVyYXRpb25JZCI6ICJ2YWNhbmNpZXNfcmVhZCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJ2YWNhbmNpZXMiXX0sICJwdXQiOiB7Im9wZXJhdGlvbklkIjogInZhY2FuY2llc191cGRhdGUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJjb21wYW55IjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJvYmplY3QifSwgInZlcmlmaWVkIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJib29sZWFuIn0sICJvcGVuX3RpbWUiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiZGVzY3JpcHRpb24iOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiY2xvc2VfdGltZSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn19LCAicmVxdWlyZWQiOiBbImNvbXBhbnkiLCAib3Blbl90aW1lIiwgImNsb3NlX3RpbWUiXX19XSwgImNvbnN1bWVzIjogWyJhcHBsaWNhdGlvbi9qc29uIl0sICJ0YWdzIjogWyJ2YWNhbmNpZXMiXX0sICJwYXRjaCI6IHsib3BlcmF0aW9uSWQiOiAidmFjYW5jaWVzX3BhcnRpYWxfdXBkYXRlIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCB7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsiY29tcGFueSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAib2JqZWN0In0sICJ2ZXJpZmllZCI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiYm9vbGVhbiJ9LCAib3Blbl90aW1lIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImRlc2NyaXB0aW9uIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImNsb3NlX3RpbWUiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9fX19XSwgImNvbnN1bWVzIjogWyJhcHBsaWNhdGlvbi9qc29uIl0sICJ0YWdzIjogWyJ2YWNhbmNpZXMiXX0sICJkZWxldGUiOiB7Im9wZXJhdGlvbklkIjogInZhY2FuY2llc19kZWxldGUiLCAicmVzcG9uc2VzIjogeyIyMDQiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsidmFjYW5jaWVzIl19fX0sICJzZWN1cml0eURlZmluaXRpb25zIjogeyJiYXNpYyI6IHsidHlwZSI6ICJiYXNpYyJ9fX0=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"application/openapi+json\", \"Allow\": \"GET, HEAD, OPTIONS\", \"Vary\": \"Accept\"}" - } -}, -{ - "model": "silk.response", - "pk": "ab820a3c-e062-4f54-9ebb-e28cf9129641", - "fields": { - "request": "f23546ab-ac93-4a50-87ba-e5d93a4c7b41", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "abdb03b7-f57f-4e16-b10b-42407d746aa6", - "fields": { - "request": "1e1f4836-7709-404b-b61a-a1ffb0581a54", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "abfe79b0-edf4-4c07-9db6-df28b84555fd", - "fields": { - "request": "45a5666e-75da-46d6-931f-9ae36551ed41", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPlNpdGUgYWRtaW5pc3RyYXRpb24gfCBEamFuZ28gc2l0ZSBhZG1pbjwvdGl0bGU+CjxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvYWRtaW4vY3NzL2Jhc2UuY3NzIiAvPgo8bGluayByZWw9InN0eWxlc2hlZXQiIHR5cGU9InRleHQvY3NzIiBocmVmPSIvYXNzZXRzL2FkbWluL2Nzcy9kYXNoYm9hcmQuY3NzIiAvPgoKCjxtZXRhIG5hbWU9InJvYm90cyIgY29udGVudD0iTk9ORSxOT0FSQ0hJVkUiIC8+CjwvaGVhZD4KCgo8Ym9keSBjbGFzcz0iIGRhc2hib2FyZCIKICBkYXRhLWFkbWluLXV0Yy1vZmZzZXQ9IjAiPgoKPCEtLSBDb250YWluZXIgLS0+CjxkaXYgaWQ9ImNvbnRhaW5lciI+CgogICAgCiAgICA8IS0tIEhlYWRlciAtLT4KICAgIDxkaXYgaWQ9ImhlYWRlciI+CiAgICAgICAgPGRpdiBpZD0iYnJhbmRpbmciPgogICAgICAgIAo8aDEgaWQ9InNpdGUtbmFtZSI+PGEgaHJlZj0iL2FkbWluLyI+RGphbmdvIGFkbWluaXN0cmF0aW9uPC9hPjwvaDE+CgogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIDxkaXYgaWQ9InVzZXItdG9vbHMiPgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIFdlbGNvbWUsCiAgICAgICAgICAgICAgICA8c3Ryb25nPmthcGU8L3N0cm9uZz4uCiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii8iPlZpZXcgc2l0ZTwvYT4gLwogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vcGFzc3dvcmRfY2hhbmdlLyI+Q2hhbmdlIHBhc3N3b3JkPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9sb2dvdXQvIj5Mb2cgb3V0PC9hPgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgICAgICAKICAgICAgICAKICAgICAgICAKICAgIDwvZGl2PgogICAgPCEtLSBFTkQgSGVhZGVyIC0tPgogICAgCiAgICAKCiAgICAKICAgICAgICAKICAgIAoKICAgIDwhLS0gQ29udGVudCAtLT4KICAgIDxkaXYgaWQ9ImNvbnRlbnQiIGNsYXNzPSJjb2xNUyI+CiAgICAgICAgCiAgICAgICAgPGgxPlNpdGUgYWRtaW5pc3RyYXRpb248L2gxPgogICAgICAgIAo8ZGl2IGlkPSJjb250ZW50LW1haW4iPgoKCiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJhcHAtYXV0aCBtb2R1bGUiPgogICAgICAgIDx0YWJsZT4KICAgICAgICA8Y2FwdGlvbj4KICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2F1dGgvIiBjbGFzcz0ic2VjdGlvbiIgdGl0bGU9Ik1vZGVscyBpbiB0aGUgQXV0aGVudGljYXRpb24gYW5kIEF1dGhvcml6YXRpb24gYXBwbGljYXRpb24iPkF1dGhlbnRpY2F0aW9uIGFuZCBBdXRob3JpemF0aW9uPC9hPgogICAgICAgIDwvY2FwdGlvbj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1ncm91cCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL2dyb3VwLyI+R3JvdXBzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvZ3JvdXAvYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL2dyb3VwLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC11c2VyIj4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8iPlVzZXJzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgPC90YWJsZT4KICAgICAgICA8L2Rpdj4KICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImFwcC1jb3JlIG1vZHVsZSI+CiAgICAgICAgPHRhYmxlPgogICAgICAgIDxjYXB0aW9uPgogICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS8iIGNsYXNzPSJzZWN0aW9uIiB0aXRsZT0iTW9kZWxzIGluIHRoZSBDb3JlIGFwcGxpY2F0aW9uIj5Db3JlPC9hPgogICAgICAgIDwvY2FwdGlvbj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1hcHBsaWNhdGlvbiI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL2FwcGxpY2F0aW9uLyI+QXBwbGljYXRpb25zPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvYXBwbGljYXRpb24vYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL2FwcGxpY2F0aW9uLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1jb21wYW55Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8iPkNvbXBhbnlzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgICAgIDx0ciBjbGFzcz0ibW9kZWwtc3R1ZGVudCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvIj5TdHVkZW50czwvYT48L3RoPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvIiBjbGFzcz0iY2hhbmdlbGluayI+Q2hhbmdlPC9hPjwvdGQ+CiAgICAgICAgICAgIAogICAgICAgICAgICA8L3RyPgogICAgICAgIAogICAgICAgICAgICA8dHIgY2xhc3M9Im1vZGVsLXN1cGVydmlzb3IiPgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0aCBzY29wZT0icm93Ij48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yLyI+U3VwZXJ2aXNvcnM8L2E+PC90aD4KICAgICAgICAgICAgCgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0ZD48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yL2FkZC8iIGNsYXNzPSJhZGRsaW5rIj5BZGQ8L2E+PC90ZD4KICAgICAgICAgICAgCgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0ZD48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC12YWNhbmN5Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS8iPlZhY2FuY3lzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgPC90YWJsZT4KICAgICAgICA8L2Rpdj4KICAgIAoKPC9kaXY+CgogICAgICAgIAo8ZGl2IGlkPSJjb250ZW50LXJlbGF0ZWQiPgogICAgPGRpdiBjbGFzcz0ibW9kdWxlIiBpZD0icmVjZW50LWFjdGlvbnMtbW9kdWxlIj4KICAgICAgICA8aDI+UmVjZW50IGFjdGlvbnM8L2gyPgogICAgICAgIDxoMz5NeSBhY3Rpb25zPC9oMz4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgPHVsIGNsYXNzPSJhY3Rpb25saXN0Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaSBjbGFzcz0iYWRkbGluayI+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS9zdHVkZW50LzEvY2hhbmdlLyI+U3R1ZGVudCBvYmplY3Q8L2E+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxici8+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz0ibWluaSBxdWlldCI+U3R1ZGVudDwvc3Bhbj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgICAgPGxpIGNsYXNzPSJhZGRsaW5rIj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9jb3JlL2NvbXBhbnkvMi9jaGFuZ2UvIj5Db21wYW55IG9iamVjdDwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5Db21wYW55PC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8bGkgY2xhc3M9ImRlbGV0ZWxpbmsiPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgQ29tcGFueSBvYmplY3QKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5Db21wYW55PC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8bGkgY2xhc3M9ImFkZGxpbmsiPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci80L2NoYW5nZS8iPmZhcmhhbnN1cGVyPC9hPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YnIvPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9Im1pbmkgcXVpZXQiPlVzZXI8L3NwYW4+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgPC9saT4KICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaSBjbGFzcz0iYWRkbGluayI+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vYXV0aC91c2VyLzMvY2hhbmdlLyI+ZmFyaGFuY29ycDwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5Vc2VyPC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8bGkgY2xhc3M9ImFkZGxpbmsiPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8yL2NoYW5nZS8iPmZhcmhhbjwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5Vc2VyPC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8bGkgY2xhc3M9ImFkZGxpbmsiPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8xL2NoYW5nZS8iPkNvbXBhbnkgb2JqZWN0PC9hPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YnIvPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9Im1pbmkgcXVpZXQiPkNvbXBhbnk8L3NwYW4+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgPC9saT4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdWw+CiAgICAgICAgICAgIAogICAgPC9kaXY+CjwvZGl2PgoKICAgICAgICA8YnIgY2xhc3M9ImNsZWFyIiAvPgogICAgPC9kaXY+CiAgICA8IS0tIEVORCBDb250ZW50IC0tPgoKICAgIDxkaXYgaWQ9ImZvb3RlciI+PC9kaXY+CjwvZGl2Pgo8IS0tIEVORCBDb250YWluZXIgLS0+Cgo8L2JvZHk+CjwvaHRtbD4K", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 15:22:09 GMT\", \"Expires\": \"Mon, 27 Mar 2017 15:22:09 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\"}" - } -}, -{ - "model": "silk.response", - "pk": "ac0d057f-b0d7-42c2-b730-99f166812138", - "fields": { - "request": "b66d940b-e3b9-4ae4-96ee-9b0e684c0e53", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPkFkZCB1c2VyIHwgRGphbmdvIHNpdGUgYWRtaW48L3RpdGxlPgo8bGluayByZWw9InN0eWxlc2hlZXQiIHR5cGU9InRleHQvY3NzIiBocmVmPSIvYXNzZXRzL2FkbWluL2Nzcy9iYXNlLmNzcyIgLz4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvZm9ybXMuY3NzIiAvPgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9jb3JlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IvanF1ZXJ5L2pxdWVyeS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvanF1ZXJ5LmluaXQuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2FkbWluL1JlbGF0ZWRPYmplY3RMb29rdXBzLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hY3Rpb25zLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy91cmxpZnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL3ByZXBvcHVsYXRlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IveHJlZ2V4cC94cmVnZXhwLmpzIj48L3NjcmlwdD4KCjxtZXRhIG5hbWU9InJvYm90cyIgY29udGVudD0iTk9ORSxOT0FSQ0hJVkUiIC8+CjwvaGVhZD4KCgo8Ym9keSBjbGFzcz0iIGFwcC1hdXRoIG1vZGVsLXVzZXIgY2hhbmdlLWZvcm0iCiAgZGF0YS1hZG1pbi11dGMtb2Zmc2V0PSIwIj4KCjwhLS0gQ29udGFpbmVyIC0tPgo8ZGl2IGlkPSJjb250YWluZXIiPgoKICAgIAogICAgPCEtLSBIZWFkZXIgLS0+CiAgICA8ZGl2IGlkPSJoZWFkZXIiPgogICAgICAgIDxkaXYgaWQ9ImJyYW5kaW5nIj4KICAgICAgICAKPGgxIGlkPSJzaXRlLW5hbWUiPjxhIGhyZWY9Ii9hZG1pbi8iPkRqYW5nbyBhZG1pbmlzdHJhdGlvbjwvYT48L2gxPgoKICAgICAgICA8L2Rpdj4KICAgICAgICAKICAgICAgICAKICAgICAgICA8ZGl2IGlkPSJ1c2VyLXRvb2xzIj4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICBXZWxjb21lLAogICAgICAgICAgICAgICAgPHN0cm9uZz5rYXBlPC9zdHJvbmc+LgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvIj5WaWV3IHNpdGU8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL3Bhc3N3b3JkX2NoYW5nZS8iPkNoYW5nZSBwYXNzd29yZDwvYT4gLwogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vbG9nb3V0LyI+TG9nIG91dDwvYT4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgCiAgICA8L2Rpdj4KICAgIDwhLS0gRU5EIEhlYWRlciAtLT4KICAgIAo8ZGl2IGNsYXNzPSJicmVhZGNydW1icyI+CjxhIGhyZWY9Ii9hZG1pbi8iPkhvbWU8L2E+CiZyc2FxdW87IDxhIGhyZWY9Ii9hZG1pbi9hdXRoLyI+QXV0aGVudGljYXRpb24gYW5kIEF1dGhvcml6YXRpb248L2E+CiZyc2FxdW87IDxhIGhyZWY9Ii9hZG1pbi9hdXRoL3VzZXIvIj5Vc2VyczwvYT4KJnJzYXF1bzsgQWRkIHVzZXIKPC9kaXY+CgogICAgCgogICAgCiAgICAgICAgCiAgICAKCiAgICA8IS0tIENvbnRlbnQgLS0+CiAgICA8ZGl2IGlkPSJjb250ZW50IiBjbGFzcz0iY29sTSI+CiAgICAgICAgCiAgICAgICAgPGgxPkFkZCB1c2VyPC9oMT4KICAgICAgICA8ZGl2IGlkPSJjb250ZW50LW1haW4iPgoKCgo8Zm9ybSBlbmN0eXBlPSJtdWx0aXBhcnQvZm9ybS1kYXRhIiBhY3Rpb249IiIgbWV0aG9kPSJwb3N0IiBpZD0idXNlcl9mb3JtIiBub3ZhbGlkYXRlPjxpbnB1dCB0eXBlPSdoaWRkZW4nIG5hbWU9J2NzcmZtaWRkbGV3YXJldG9rZW4nIHZhbHVlPSdpTnJPU0JKVlQ5Q05xZ1NuamxnVUxmY0dHQnl6UG9wTEhUeUQ0N0JRRzZOY05vVVAyTUxtRFdUcUV3RW85b2xBJyAvPgogIAogICAgPHA+Rmlyc3QsIGVudGVyIGEgdXNlcm5hbWUgYW5kIHBhc3N3b3JkLiBUaGVuLCB5b3UnbGwgYmUgYWJsZSB0byBlZGl0IG1vcmUgdXNlciBvcHRpb25zLjwvcD4KICAKCjxkaXY+CgoKCgogICAgPHAgY2xhc3M9ImVycm9ybm90ZSI+CiAgICBQbGVhc2UgY29ycmVjdCB0aGUgZXJyb3IgYmVsb3cuCiAgICA8L3A+CiAgICAKCgoKCiAgPGZpZWxkc2V0IGNsYXNzPSJtb2R1bGUgYWxpZ25lZCB3aWRlIj4KICAgIAogICAgCiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC11c2VybmFtZSI+CiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXY+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxsYWJlbCBjbGFzcz0icmVxdWlyZWQiIGZvcj0iaWRfdXNlcm5hbWUiPlVzZXJuYW1lOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgPGlucHV0IGF1dG9mb2N1cz0iIiBjbGFzcz0idlRleHRGaWVsZCIgaWQ9ImlkX3VzZXJuYW1lIiBtYXhsZW5ndGg9IjE1MCIgbmFtZT0idXNlcm5hbWUiIHR5cGU9InRleHQiIHZhbHVlPSJmYXJoYW5zdXBlciIgcmVxdWlyZWQgLz4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxwIGNsYXNzPSJoZWxwIj5SZXF1aXJlZC4gMTUwIGNoYXJhY3RlcnMgb3IgZmV3ZXIuIExldHRlcnMsIGRpZ2l0cyBhbmQgQC8uLysvLS9fIG9ubHkuPC9wPgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPC9kaXY+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgCiAgICAgICAgPGRpdiBjbGFzcz0iZm9ybS1yb3cgZmllbGQtcGFzc3dvcmQxIj4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGRpdj4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPGxhYmVsIGNsYXNzPSJyZXF1aXJlZCIgZm9yPSJpZF9wYXNzd29yZDEiPlBhc3N3b3JkOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgPGlucHV0IGlkPSJpZF9wYXNzd29yZDEiIG5hbWU9InBhc3N3b3JkMSIgdHlwZT0icGFzc3dvcmQiIHJlcXVpcmVkIC8+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPC9kaXY+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgCiAgICAgICAgPGRpdiBjbGFzcz0iZm9ybS1yb3cgZXJyb3JzIGZpZWxkLXBhc3N3b3JkMiI+CiAgICAgICAgICAgIDx1bCBjbGFzcz0iZXJyb3JsaXN0Ij48bGk+VGhlIHBhc3N3b3JkIGlzIHRvbyBzaW1pbGFyIHRvIHRoZSB1c2VybmFtZS48L2xpPjwvdWw+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGRpdj4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPGxhYmVsIGNsYXNzPSJyZXF1aXJlZCIgZm9yPSJpZF9wYXNzd29yZDIiPlBhc3N3b3JkIGNvbmZpcm1hdGlvbjo8L2xhYmVsPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxpbnB1dCBpZD0iaWRfcGFzc3dvcmQyIiBuYW1lPSJwYXNzd29yZDIiIHR5cGU9InBhc3N3b3JkIiByZXF1aXJlZCAvPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPHAgY2xhc3M9ImhlbHAiPkVudGVyIHRoZSBzYW1lIHBhc3N3b3JkIGFzIGJlZm9yZSwgZm9yIHZlcmlmaWNhdGlvbi48L3A+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKPC9maWVsZHNldD4KCgoKCgoKCgoKCgoKCjxkaXYgY2xhc3M9InN1Ym1pdC1yb3ciPgo8aW5wdXQgdHlwZT0ic3VibWl0IiB2YWx1ZT0iU2F2ZSIgY2xhc3M9ImRlZmF1bHQiIG5hbWU9Il9zYXZlIiAvPgoKCjxpbnB1dCB0eXBlPSJzdWJtaXQiIHZhbHVlPSJTYXZlIGFuZCBhZGQgYW5vdGhlciIgbmFtZT0iX2FkZGFub3RoZXIiIC8+CjxpbnB1dCB0eXBlPSJzdWJtaXQiIHZhbHVlPSJTYXZlIGFuZCBjb250aW51ZSBlZGl0aW5nIiBuYW1lPSJfY29udGludWUiIC8+CjwvZGl2PgoKCgogICAgPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiCiAgICAgICAgICAgIGlkPSJkamFuZ28tYWRtaW4tZm9ybS1hZGQtY29uc3RhbnRzIgogICAgICAgICAgICBzcmM9Ii9hc3NldHMvYWRtaW4vanMvY2hhbmdlX2Zvcm0uanMiCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgZGF0YS1tb2RlbC1uYW1lPSJ1c2VyIgogICAgICAgICAgICA+CiAgICA8L3NjcmlwdD4KCgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IgogICAgICAgIGlkPSJkamFuZ28tYWRtaW4tcHJlcG9wdWxhdGVkLWZpZWxkcy1jb25zdGFudHMiCiAgICAgICAgc3JjPSIvYXNzZXRzL2FkbWluL2pzL3ByZXBvcHVsYXRlX2luaXQuanMiCiAgICAgICAgZGF0YS1wcmVwb3B1bGF0ZWQtZmllbGRzPSJbXSI+Cjwvc2NyaXB0PgoKCjwvZGl2Pgo8L2Zvcm0+PC9kaXY+CgogICAgICAgIAogICAgICAgIDxiciBjbGFzcz0iY2xlYXIiIC8+CiAgICA8L2Rpdj4KICAgIDwhLS0gRU5EIENvbnRlbnQgLS0+CgogICAgPGRpdiBpZD0iZm9vdGVyIj48L2Rpdj4KPC9kaXY+CjwhLS0gRU5EIENvbnRhaW5lciAtLT4KCjwvYm9keT4KPC9odG1sPgo=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 14:54:46 GMT\", \"Expires\": \"Mon, 27 Mar 2017 14:54:46 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "ac42da61-4b3b-4fd8-baf3-57985e8c7e14", - "fields": { - "request": "05801873-0a00-4385-88cc-57751919e310", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "acf1201d-d6d6-4c8a-b4db-5607671c8479", - "fields": { - "request": "5271f47b-ef74-4410-8fa3-10c4ce1b2e98", - "status_code": 302, - "raw_body": "", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Location\": \"/admin/core/student/\", \"Last-Modified\": \"Mon, 27 Mar 2017 15:21:58 GMT\", \"Expires\": \"Mon, 27 Mar 2017 15:21:58 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\"}" - } -}, -{ - "model": "silk.response", - "pk": "ada82ba4-2b18-40ba-b9de-3ff8336d843f", - "fields": { - "request": "40bd37eb-ae05-4dbd-9b6e-6d3c88e1b9ee", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "b05f06e5-2568-45dd-93b0-2a99b1d6628f", - "fields": { - "request": "6ed1fd8f-3f6c-4976-8aad-5b8e17d270db", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "b0752282-67ab-4ca3-b11d-7833741e6f15", - "fields": { - "request": "fec74af3-d8b7-48a0-8231-5e7164b58cc8", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "b08c0f4c-020f-403b-82a3-6337e146d503", - "fields": { - "request": "2ec2759f-7662-4b33-aa63-9c73b01d5a34", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "b0b1f53e-7e06-4073-9211-a65858627dbd", - "fields": { - "request": "df4ea062-5345-413d-a855-258841507a7c", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "b0c10cfc-0a7d-4c28-a616-001b47372c34", - "fields": { - "request": "0733ee4e-7665-446f-b2bf-68a2c82aabe7", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "b1e8470d-a3d8-422f-955e-cc45777a6cb1", - "fields": { - "request": "eb71d75c-3583-4879-9daa-1f28851dbc9e", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "b215757d-0b2c-47bf-a021-fb006c571a45", - "fields": { - "request": "2d83b6c4-f5c0-4bc6-a6d7-90873b98a938", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "b277a491-42d4-4a76-ab93-7885b0e02028", - "fields": { - "request": "2813ca7c-e78e-44b5-9011-54baf7129682", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "b2c72e88-0e0b-467f-990d-92ce95b8063f", - "fields": { - "request": "dd4dc0cf-28e4-492a-8754-3036b67f7239", - "status_code": 200, - "raw_body": "CjwhRE9DVFlQRSBodG1sPgo8aHRtbD4KPGhlYWQ+CiAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogIDx0aXRsZT5Td2FnZ2VyIFVJPC90aXRsZT4KICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2ltYWdlcy9mYXZpY29uLTMyeDMyLnBuZyIgc2l6ZXM9IjMyeDMyIiAvPgogIDxsaW5rIHJlbD0iaWNvbiIgdHlwZT0iaW1hZ2UvcG5nIiBocmVmPSIvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvaW1hZ2VzL2Zhdmljb24tMTZ4MTYucG5nIiBzaXplcz0iMTZ4MTYiIC8+CiAgPGxpbmsgaHJlZj0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2Nzcy90eXBvZ3JhcGh5LmNzcycgbWVkaWE9J3NjcmVlbicgcmVsPSdzdHlsZXNoZWV0JyB0eXBlPSd0ZXh0L2NzcycvPgogIDxsaW5rIGhyZWY9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9jc3MvcmVzZXQuY3NzJyBtZWRpYT0nc2NyZWVuJyByZWw9J3N0eWxlc2hlZXQnIHR5cGU9J3RleHQvY3NzJy8+CiAgPGxpbmsgaHJlZj0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2Nzcy9zY3JlZW4uY3NzJyBtZWRpYT0nc2NyZWVuJyByZWw9J3N0eWxlc2hlZXQnIHR5cGU9J3RleHQvY3NzJy8+CiAgPGxpbmsgaHJlZj0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2Nzcy9yZXNldC5jc3MnIG1lZGlhPSdwcmludCcgcmVsPSdzdHlsZXNoZWV0JyB0eXBlPSd0ZXh0L2NzcycvPgogIDxsaW5rIGhyZWY9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9jc3MvcHJpbnQuY3NzJyBtZWRpYT0ncHJpbnQnIHJlbD0nc3R5bGVzaGVldCcgdHlwZT0ndGV4dC9jc3MnLz4KICAKICAKICAKCiAgPHNjcmlwdCBzcmM9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9saWIvb2JqZWN0LWFzc2lnbi1wb2xseWZpbGwuanMnIHR5cGU9J3RleHQvamF2YXNjcmlwdCc+PC9zY3JpcHQ+CiAgPHNjcmlwdCBzcmM9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9saWIvanF1ZXJ5LTEuOC4wLm1pbi5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4KICA8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2xpYi9qcXVlcnkuc2xpZGV0by5taW4uanMnIHR5cGU9J3RleHQvamF2YXNjcmlwdCc+PC9zY3JpcHQ+CiAgPHNjcmlwdCBzcmM9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9saWIvanF1ZXJ5LndpZ2dsZS5taW4uanMnIHR5cGU9J3RleHQvamF2YXNjcmlwdCc+PC9zY3JpcHQ+CiAgPHNjcmlwdCBzcmM9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9saWIvanF1ZXJ5LmJhLWJicS5taW4uanMnIHR5cGU9J3RleHQvamF2YXNjcmlwdCc+PC9zY3JpcHQ+CiAgPHNjcmlwdCBzcmM9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9saWIvaGFuZGxlYmFycy0yLjAuMC5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4KICA8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2xpYi9qcy15YW1sLm1pbi5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4KICA8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2xpYi9sb2Rhc2gubWluLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgogIDxzY3JpcHQgc3JjPScvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvbGliL2JhY2tib25lLW1pbi5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4KICA8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL3N3YWdnZXItdWkubWluLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgogIDxzY3JpcHQgc3JjPScvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvbGliL2hpZ2hsaWdodC45LjEuMC5wYWNrLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgogIDxzY3JpcHQgc3JjPScvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvbGliL2hpZ2hsaWdodC45LjEuMC5wYWNrX2V4dGVuZGVkLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgogIDxzY3JpcHQgc3JjPScvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvbGliL2pzb25lZGl0b3IubWluLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgogIDxzY3JpcHQgc3JjPScvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvbGliL21hcmtlZC5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4KICA8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2xpYi9zd2FnZ2VyLW9hdXRoLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgoKICA8IS0tIFNvbWUgYmFzaWMgdHJhbnNsYXRpb25zIC0tPgogIDwhLS0gPHNjcmlwdCBzcmM9J2xhbmcvdHJhbnNsYXRvci5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4gLS0+CiAgPCEtLSA8c2NyaXB0IHNyYz0nbGFuZy9ydS5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4gLS0+CiAgPCEtLSA8c2NyaXB0IHNyYz0nbGFuZy9lbi5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4gLS0+Cgo8L2hlYWQ+Cgo8Ym9keSBjbGFzcz0ic3dhZ2dlci1zZWN0aW9uIj4KCjxkaXYgaWQ9J2hlYWRlcic+CiAgPGRpdiBjbGFzcz0ic3dhZ2dlci11aS13cmFwIj4KICAgIAogICAgICA8YSBpZD0ibG9nbyIgaHJlZj0iaHR0cDovL3N3YWdnZXIuaW8iPjxpbWcgY2xhc3M9ImxvZ29fX2ltZyIgYWx0PSJzd2FnZ2VyIiBoZWlnaHQ9IjMwIiB3aWR0aD0iMzAiIHNyYz0iL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2ltYWdlcy9sb2dvX3NtYWxsLnBuZyIgLz48c3BhbiBjbGFzcz0ibG9nb19fdGl0bGUiPnN3YWdnZXI8L3NwYW4+PC9hPgogICAgCiAgICA8Zm9ybSBpZD0nYXBpX3NlbGVjdG9yJz4KICAgICAgPGlucHV0IGlkPSJpbnB1dF9iYXNlVXJsIiBuYW1lPSJiYXNlVXJsIiB0eXBlPSJoaWRkZW4iLz4KICAgICAgCiAgICAgICAgPGlucHV0IHR5cGU9J2hpZGRlbicgbmFtZT0nY3NyZm1pZGRsZXdhcmV0b2tlbicgdmFsdWU9J01md2VicWhkTTM0ZXlCMWtuUUVDNXFSdVY1ekd2eDc5YmxEM25XOTh6MGZEVkozTTZoOTRYN3llVDBGdlB4M1knIC8+CiAgICAgICAgCiAgICAgICAgICA8ZGl2IGNsYXNzPSJpbnB1dCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgIAogICAgICAgICAgICAgIEhlbGxvLCBrYXBlCiAgICAgICAgICAgIAogICAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgICAKICAgICAgICAKICAgICAgCgogICAgICAKICAgICAgICAKICAgICAgICAgIDxkaXYgY2xhc3M9J2lucHV0Jz48YSBpZD0iYXV0aCIgY2xhc3M9ImhlYWRlcl9fYnRuIiBocmVmPSI/bmV4dD0vYXBpIiBkYXRhLXN3LXRyYW5zbGF0ZT5EamFuZ28gTG9nb3V0PC9hPjwvZGl2PgogICAgICAgIAogICAgICAKICAgICAgPGRpdiBpZD0nYXV0aF9jb250YWluZXInPjwvZGl2PgogICAgPC9mb3JtPgogIDwvZGl2Pgo8L2Rpdj4KCgo8ZGl2IGlkPSJtZXNzYWdlLWJhciIgY2xhc3M9InN3YWdnZXItdWktd3JhcCIgZGF0YS1zdy10cmFuc2xhdGU+Jm5ic3A7PC9kaXY+CjxkaXYgaWQ9InN3YWdnZXItdWktY29udGFpbmVyIiBjbGFzcz0ic3dhZ2dlci11aS13cmFwIj48L2Rpdj4KCjxzY3JpcHQgaWQ9ImRycy1zZXR0aW5ncyIgdHlwZT0iYXBwbGljYXRpb24vanNvbiI+CnsiYXBpc1NvcnRlciI6IG51bGwsICJkb2NFeHBhbnNpb24iOiBudWxsLCAianNvbkVkaXRvciI6IGZhbHNlLCAib3BlcmF0aW9uc1NvcnRlciI6IG51bGwsICJzaG93UmVxdWVzdEhlYWRlcnMiOiBmYWxzZSwgInN1cHBvcnRlZFN1Ym1pdE1ldGhvZHMiOiBbImdldCIsICJwb3N0IiwgInB1dCIsICJkZWxldGUiLCAicGF0Y2giXX0KPC9zY3JpcHQ+Cgo8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2luaXQuanMnIHR5cGU9J3RleHQvamF2YXNjcmlwdCc+PC9zY3JpcHQ+CgoKCjwvYm9keT4KPC9odG1sPgo=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Allow\": \"GET, HEAD, OPTIONS\", \"Vary\": \"Accept\"}" - } -}, -{ - "model": "silk.response", - "pk": "b2dab6c9-581a-440a-bfa2-9e860e061b7b", - "fields": { - "request": "993332f5-4b0d-4127-8301-678a5196ca87", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPkNoYW5nZSB1c2VyIHwgRGphbmdvIHNpdGUgYWRtaW48L3RpdGxlPgo8bGluayByZWw9InN0eWxlc2hlZXQiIHR5cGU9InRleHQvY3NzIiBocmVmPSIvYXNzZXRzL2FkbWluL2Nzcy9iYXNlLmNzcyIgLz4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvZm9ybXMuY3NzIiAvPgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9jb3JlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IvanF1ZXJ5L2pxdWVyeS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvanF1ZXJ5LmluaXQuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2FkbWluL1JlbGF0ZWRPYmplY3RMb29rdXBzLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hY3Rpb25zLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy91cmxpZnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL3ByZXBvcHVsYXRlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IveHJlZ2V4cC94cmVnZXhwLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9TZWxlY3RCb3guanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL1NlbGVjdEZpbHRlcjIuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2NhbGVuZGFyLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hZG1pbi9EYXRlVGltZVNob3J0Y3V0cy5qcyI+PC9zY3JpcHQ+Cgo8bWV0YSBuYW1lPSJyb2JvdHMiIGNvbnRlbnQ9Ik5PTkUsTk9BUkNISVZFIiAvPgo8L2hlYWQ+CgoKPGJvZHkgY2xhc3M9IiBhcHAtYXV0aCBtb2RlbC11c2VyIGNoYW5nZS1mb3JtIgogIGRhdGEtYWRtaW4tdXRjLW9mZnNldD0iMCI+Cgo8IS0tIENvbnRhaW5lciAtLT4KPGRpdiBpZD0iY29udGFpbmVyIj4KCiAgICAKICAgIDwhLS0gSGVhZGVyIC0tPgogICAgPGRpdiBpZD0iaGVhZGVyIj4KICAgICAgICA8ZGl2IGlkPSJicmFuZGluZyI+CiAgICAgICAgCjxoMSBpZD0ic2l0ZS1uYW1lIj48YSBocmVmPSIvYWRtaW4vIj5EamFuZ28gYWRtaW5pc3RyYXRpb248L2E+PC9oMT4KCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgPGRpdiBpZD0idXNlci10b29scyI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgV2VsY29tZSwKICAgICAgICAgICAgICAgIDxzdHJvbmc+a2FwZTwvc3Ryb25nPi4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iLyI+VmlldyBzaXRlPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9wYXNzd29yZF9jaGFuZ2UvIj5DaGFuZ2UgcGFzc3dvcmQ8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2xvZ291dC8iPkxvZyBvdXQ8L2E+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIAogICAgPC9kaXY+CiAgICA8IS0tIEVORCBIZWFkZXIgLS0+CiAgICAKPGRpdiBjbGFzcz0iYnJlYWRjcnVtYnMiPgo8YSBocmVmPSIvYWRtaW4vIj5Ib21lPC9hPgomcnNhcXVvOyA8YSBocmVmPSIvYWRtaW4vYXV0aC8iPkF1dGhlbnRpY2F0aW9uIGFuZCBBdXRob3JpemF0aW9uPC9hPgomcnNhcXVvOyA8YSBocmVmPSIvYWRtaW4vYXV0aC91c2VyLyI+VXNlcnM8L2E+CiZyc2FxdW87IGZhcmhhbgo8L2Rpdj4KCiAgICAKCiAgICAKICAgICAgICAKICAgICAgICA8dWwgY2xhc3M9Im1lc3NhZ2VsaXN0Ij4KICAgICAgICAgIDxsaSBjbGFzcz0ic3VjY2VzcyI+VGhlIHVzZXIgIjxhIGhyZWY9Ii9hZG1pbi9hdXRoL3VzZXIvMi9jaGFuZ2UvIj5mYXJoYW48L2E+IiB3YXMgYWRkZWQgc3VjY2Vzc2Z1bGx5LiBZb3UgbWF5IGVkaXQgaXQgYWdhaW4gYmVsb3cuPC9saT4KICAgICAgICA8L3VsPgogICAgICAgIAogICAgCgogICAgPCEtLSBDb250ZW50IC0tPgogICAgPGRpdiBpZD0iY29udGVudCIgY2xhc3M9ImNvbE0iPgogICAgICAgIAogICAgICAgIDxoMT5DaGFuZ2UgdXNlcjwvaDE+CiAgICAgICAgPGRpdiBpZD0iY29udGVudC1tYWluIj4KCgogIDx1bCBjbGFzcz0ib2JqZWN0LXRvb2xzIj4KICAgIAogICAgPGxpPgogICAgICAgIAogICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9hdXRoL3VzZXIvMi9oaXN0b3J5LyIgY2xhc3M9Imhpc3RvcnlsaW5rIj5IaXN0b3J5PC9hPgogICAgPC9saT4KICAgIAogICAgCiAgPC91bD4KCgo8Zm9ybSBlbmN0eXBlPSJtdWx0aXBhcnQvZm9ybS1kYXRhIiBhY3Rpb249IiIgbWV0aG9kPSJwb3N0IiBpZD0idXNlcl9mb3JtIiBub3ZhbGlkYXRlPjxpbnB1dCB0eXBlPSdoaWRkZW4nIG5hbWU9J2NzcmZtaWRkbGV3YXJldG9rZW4nIHZhbHVlPSdBdmRxVklOMFVrSkNJMVg2cWVsZDFrUkRtMGVBdzBTWFpCa2Y3ZUZWSGhVMTU5Wnk5RlFGVDF5bmtWa3BRME9NJyAvPgo8ZGl2PgoKCgoKCgoKICA8ZmllbGRzZXQgY2xhc3M9Im1vZHVsZSBhbGlnbmVkICI+CiAgICAKICAgIAogICAgCiAgICAgICAgPGRpdiBjbGFzcz0iZm9ybS1yb3cgZmllbGQtdXNlcm5hbWUiPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgY2xhc3M9InJlcXVpcmVkIiBmb3I9ImlkX3VzZXJuYW1lIj5Vc2VybmFtZTo8L2xhYmVsPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxpbnB1dCBjbGFzcz0idlRleHRGaWVsZCIgaWQ9ImlkX3VzZXJuYW1lIiBtYXhsZW5ndGg9IjE1MCIgbmFtZT0idXNlcm5hbWUiIHR5cGU9InRleHQiIHZhbHVlPSJmYXJoYW4iIHJlcXVpcmVkIC8+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8cCBjbGFzcz0iaGVscCI+UmVxdWlyZWQuIDE1MCBjaGFyYWN0ZXJzIG9yIGZld2VyLiBMZXR0ZXJzLCBkaWdpdHMgYW5kIEAvLi8rLy0vXyBvbmx5LjwvcD4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDwvZGl2PgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImZvcm0tcm93IGZpZWxkLXBhc3N3b3JkIj4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGRpdj4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPGxhYmVsIGZvcj0iaWRfcGFzc3dvcmQiPlBhc3N3b3JkOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgPGRpdiBpZD0iaWRfcGFzc3dvcmQiPjxzdHJvbmc+YWxnb3JpdGhtPC9zdHJvbmc+OiBwYmtkZjJfc2hhMjU2IDxzdHJvbmc+aXRlcmF0aW9uczwvc3Ryb25nPjogMzAwMDAgPHN0cm9uZz5zYWx0PC9zdHJvbmc+OiBueExJYTcqKioqKiogPHN0cm9uZz5oYXNoPC9zdHJvbmc+OiBmMktRRkgqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKiA8L2Rpdj4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxwIGNsYXNzPSJoZWxwIj5SYXcgcGFzc3dvcmRzIGFyZSBub3Qgc3RvcmVkLCBzbyB0aGVyZSBpcyBubyB3YXkgdG8gc2VlIHRoaXMgdXNlcidzIHBhc3N3b3JkLCBidXQgeW91IGNhbiBjaGFuZ2UgdGhlIHBhc3N3b3JkIHVzaW5nIDxhIGhyZWY9Ii4uL3Bhc3N3b3JkLyI+dGhpcyBmb3JtPC9hPi48L3A+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKPC9maWVsZHNldD4KCgogIDxmaWVsZHNldCBjbGFzcz0ibW9kdWxlIGFsaWduZWQgIj4KICAgIDxoMj5QZXJzb25hbCBpbmZvPC9oMj4KICAgIAogICAgCiAgICAgICAgPGRpdiBjbGFzcz0iZm9ybS1yb3cgZmllbGQtZmlyc3RfbmFtZSI+CiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXY+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxsYWJlbCBmb3I9ImlkX2ZpcnN0X25hbWUiPkZpcnN0IG5hbWU6PC9sYWJlbD4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8aW5wdXQgY2xhc3M9InZUZXh0RmllbGQiIGlkPSJpZF9maXJzdF9uYW1lIiBtYXhsZW5ndGg9IjMwIiBuYW1lPSJmaXJzdF9uYW1lIiB0eXBlPSJ0ZXh0IiAvPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDwvZGl2PgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImZvcm0tcm93IGZpZWxkLWxhc3RfbmFtZSI+CiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXY+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxsYWJlbCBmb3I9ImlkX2xhc3RfbmFtZSI+TGFzdCBuYW1lOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgPGlucHV0IGNsYXNzPSJ2VGV4dEZpZWxkIiBpZD0iaWRfbGFzdF9uYW1lIiBtYXhsZW5ndGg9IjMwIiBuYW1lPSJsYXN0X25hbWUiIHR5cGU9InRleHQiIC8+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPC9kaXY+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgCiAgICAgICAgPGRpdiBjbGFzcz0iZm9ybS1yb3cgZmllbGQtZW1haWwiPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgZm9yPSJpZF9lbWFpbCI+RW1haWwgYWRkcmVzczo8L2xhYmVsPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxpbnB1dCBjbGFzcz0idlRleHRGaWVsZCIgaWQ9ImlkX2VtYWlsIiBtYXhsZW5ndGg9IjI1NCIgbmFtZT0iZW1haWwiIHR5cGU9ImVtYWlsIiAvPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDwvZGl2PgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgIAo8L2ZpZWxkc2V0PgoKCiAgPGZpZWxkc2V0IGNsYXNzPSJtb2R1bGUgYWxpZ25lZCAiPgogICAgPGgyPlBlcm1pc3Npb25zPC9oMj4KICAgIAogICAgCiAgICAgICAgPGRpdiBjbGFzcz0iZm9ybS1yb3cgZmllbGQtaXNfYWN0aXZlIj4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGRpdiBjbGFzcz0iY2hlY2tib3gtcm93Ij4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPGlucHV0IGNoZWNrZWQ9ImNoZWNrZWQiIGlkPSJpZF9pc19hY3RpdmUiIG5hbWU9ImlzX2FjdGl2ZSIgdHlwZT0iY2hlY2tib3giIC8+PGxhYmVsIGNsYXNzPSJ2Q2hlY2tib3hMYWJlbCIgZm9yPSJpZF9pc19hY3RpdmUiPkFjdGl2ZTwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxwIGNsYXNzPSJoZWxwIj5EZXNpZ25hdGVzIHdoZXRoZXIgdGhpcyB1c2VyIHNob3VsZCBiZSB0cmVhdGVkIGFzIGFjdGl2ZS4gVW5zZWxlY3QgdGhpcyBpbnN0ZWFkIG9mIGRlbGV0aW5nIGFjY291bnRzLjwvcD4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDwvZGl2PgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImZvcm0tcm93IGZpZWxkLWlzX3N0YWZmIj4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGRpdiBjbGFzcz0iY2hlY2tib3gtcm93Ij4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPGlucHV0IGlkPSJpZF9pc19zdGFmZiIgbmFtZT0iaXNfc3RhZmYiIHR5cGU9ImNoZWNrYm94IiAvPjxsYWJlbCBjbGFzcz0idkNoZWNrYm94TGFiZWwiIGZvcj0iaWRfaXNfc3RhZmYiPlN0YWZmIHN0YXR1czwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxwIGNsYXNzPSJoZWxwIj5EZXNpZ25hdGVzIHdoZXRoZXIgdGhlIHVzZXIgY2FuIGxvZyBpbnRvIHRoaXMgYWRtaW4gc2l0ZS48L3A+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC1pc19zdXBlcnVzZXIiPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPSJjaGVja2JveC1yb3ciPgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8aW5wdXQgaWQ9ImlkX2lzX3N1cGVydXNlciIgbmFtZT0iaXNfc3VwZXJ1c2VyIiB0eXBlPSJjaGVja2JveCIgLz48bGFiZWwgY2xhc3M9InZDaGVja2JveExhYmVsIiBmb3I9ImlkX2lzX3N1cGVydXNlciI+U3VwZXJ1c2VyIHN0YXR1czwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxwIGNsYXNzPSJoZWxwIj5EZXNpZ25hdGVzIHRoYXQgdGhpcyB1c2VyIGhhcyBhbGwgcGVybWlzc2lvbnMgd2l0aG91dCBleHBsaWNpdGx5IGFzc2lnbmluZyB0aGVtLjwvcD4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDwvZGl2PgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImZvcm0tcm93IGZpZWxkLWdyb3VwcyI+CiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXY+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxsYWJlbCBmb3I9ImlkX2dyb3VwcyI+R3JvdXBzOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgCjxkaXYgY2xhc3M9InJlbGF0ZWQtd2lkZ2V0LXdyYXBwZXIiPgogICAgPHNlbGVjdCBtdWx0aXBsZT0ibXVsdGlwbGUiIGNsYXNzPSJzZWxlY3RmaWx0ZXIiIGRhdGEtZmllbGQtbmFtZT0iZ3JvdXBzIiBkYXRhLWlzLXN0YWNrZWQ9IjAiIGlkPSJpZF9ncm91cHMiIG5hbWU9Imdyb3VwcyI+Cjwvc2VsZWN0PgogICAgCiAgICAgICAgCiAgICAgICAgCiAgICAgICAgPGEgY2xhc3M9InJlbGF0ZWQtd2lkZ2V0LXdyYXBwZXItbGluayBhZGQtcmVsYXRlZCIgaWQ9ImFkZF9pZF9ncm91cHMiCiAgICAgICAgICAgIGhyZWY9Ii9hZG1pbi9hdXRoL2dyb3VwL2FkZC8/X3RvX2ZpZWxkPWlkJmFtcDtfcG9wdXA9MSIKICAgICAgICAgICAgdGl0bGU9IkFkZCBhbm90aGVyIGdyb3VwIj4KICAgICAgICAgICAgPGltZyBzcmM9Ii9hc3NldHMvYWRtaW4vaW1nL2ljb24tYWRkbGluay5zdmciIGFsdD0iQWRkIi8+CiAgICAgICAgPC9hPgogICAgICAgIAogICAgICAgIAogICAgCjwvZGl2PgoKICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxwIGNsYXNzPSJoZWxwIj5UaGUgZ3JvdXBzIHRoaXMgdXNlciBiZWxvbmdzIHRvLiBBIHVzZXIgd2lsbCBnZXQgYWxsIHBlcm1pc3Npb25zIGdyYW50ZWQgdG8gZWFjaCBvZiB0aGVpciBncm91cHMuIEhvbGQgZG93biAiQ29udHJvbCIsIG9yICJDb21tYW5kIiBvbiBhIE1hYywgdG8gc2VsZWN0IG1vcmUgdGhhbiBvbmUuPC9wPgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPC9kaXY+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgCiAgICAgICAgPGRpdiBjbGFzcz0iZm9ybS1yb3cgZmllbGQtdXNlcl9wZXJtaXNzaW9ucyI+CiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXY+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxsYWJlbCBmb3I9ImlkX3VzZXJfcGVybWlzc2lvbnMiPlVzZXIgcGVybWlzc2lvbnM6PC9sYWJlbD4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAKPGRpdiBjbGFzcz0icmVsYXRlZC13aWRnZXQtd3JhcHBlciI+CiAgICA8c2VsZWN0IG11bHRpcGxlPSJtdWx0aXBsZSIgY2xhc3M9InNlbGVjdGZpbHRlciIgZGF0YS1maWVsZC1uYW1lPSJ1c2VyIHBlcm1pc3Npb25zIiBkYXRhLWlzLXN0YWNrZWQ9IjAiIGlkPSJpZF91c2VyX3Blcm1pc3Npb25zIiBuYW1lPSJ1c2VyX3Blcm1pc3Npb25zIj4KPG9wdGlvbiB2YWx1ZT0iMSI+YWRtaW4gfCBsb2cgZW50cnkgfCBDYW4gYWRkIGxvZyBlbnRyeTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIyIj5hZG1pbiB8IGxvZyBlbnRyeSB8IENhbiBjaGFuZ2UgbG9nIGVudHJ5PC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjMiPmFkbWluIHwgbG9nIGVudHJ5IHwgQ2FuIGRlbGV0ZSBsb2cgZW50cnk8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMTAiPmF1dGggfCBncm91cCB8IENhbiBhZGQgZ3JvdXA8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMTEiPmF1dGggfCBncm91cCB8IENhbiBjaGFuZ2UgZ3JvdXA8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMTIiPmF1dGggfCBncm91cCB8IENhbiBkZWxldGUgZ3JvdXA8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iNCI+YXV0aCB8IHBlcm1pc3Npb24gfCBDYW4gYWRkIHBlcm1pc3Npb248L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iNSI+YXV0aCB8IHBlcm1pc3Npb24gfCBDYW4gY2hhbmdlIHBlcm1pc3Npb248L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iNiI+YXV0aCB8IHBlcm1pc3Npb24gfCBDYW4gZGVsZXRlIHBlcm1pc3Npb248L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iNyI+YXV0aCB8IHVzZXIgfCBDYW4gYWRkIHVzZXI8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iOCI+YXV0aCB8IHVzZXIgfCBDYW4gY2hhbmdlIHVzZXI8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iOSI+YXV0aCB8IHVzZXIgfCBDYW4gZGVsZXRlIHVzZXI8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMTMiPmNvbnRlbnR0eXBlcyB8IGNvbnRlbnQgdHlwZSB8IENhbiBhZGQgY29udGVudCB0eXBlPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjE0Ij5jb250ZW50dHlwZXMgfCBjb250ZW50IHR5cGUgfCBDYW4gY2hhbmdlIGNvbnRlbnQgdHlwZTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIxNSI+Y29udGVudHR5cGVzIHwgY29udGVudCB0eXBlIHwgQ2FuIGRlbGV0ZSBjb250ZW50IHR5cGU8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMjUiPmNvcmUgfCBhcHBsaWNhdGlvbiB8IENhbiBhZGQgYXBwbGljYXRpb248L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMjYiPmNvcmUgfCBhcHBsaWNhdGlvbiB8IENhbiBjaGFuZ2UgYXBwbGljYXRpb248L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMjciPmNvcmUgfCBhcHBsaWNhdGlvbiB8IENhbiBkZWxldGUgYXBwbGljYXRpb248L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMTkiPmNvcmUgfCBjb21wYW55IHwgQ2FuIGFkZCBjb21wYW55PC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjIwIj5jb3JlIHwgY29tcGFueSB8IENhbiBjaGFuZ2UgY29tcGFueTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIyMSI+Y29yZSB8IGNvbXBhbnkgfCBDYW4gZGVsZXRlIGNvbXBhbnk8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMjIiPmNvcmUgfCBzdHVkZW50IHwgQ2FuIGFkZCBzdHVkZW50PC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjIzIj5jb3JlIHwgc3R1ZGVudCB8IENhbiBjaGFuZ2Ugc3R1ZGVudDwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIyNCI+Y29yZSB8IHN0dWRlbnQgfCBDYW4gZGVsZXRlIHN0dWRlbnQ8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMjgiPmNvcmUgfCBzdXBlcnZpc29yIHwgQ2FuIGFkZCBzdXBlcnZpc29yPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjI5Ij5jb3JlIHwgc3VwZXJ2aXNvciB8IENhbiBjaGFuZ2Ugc3VwZXJ2aXNvcjwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIzMCI+Y29yZSB8IHN1cGVydmlzb3IgfCBDYW4gZGVsZXRlIHN1cGVydmlzb3I8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMzEiPmNvcmUgfCB2YWNhbmN5IHwgQ2FuIGFkZCB2YWNhbmN5PC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjMyIj5jb3JlIHwgdmFjYW5jeSB8IENhbiBjaGFuZ2UgdmFjYW5jeTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIzMyI+Y29yZSB8IHZhY2FuY3kgfCBDYW4gZGVsZXRlIHZhY2FuY3k8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMTYiPnNlc3Npb25zIHwgc2Vzc2lvbiB8IENhbiBhZGQgc2Vzc2lvbjwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIxNyI+c2Vzc2lvbnMgfCBzZXNzaW9uIHwgQ2FuIGNoYW5nZSBzZXNzaW9uPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjE4Ij5zZXNzaW9ucyB8IHNlc3Npb24gfCBDYW4gZGVsZXRlIHNlc3Npb248L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iNDMiPnNpbGsgfCBwcm9maWxlIHwgQ2FuIGFkZCBwcm9maWxlPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjQ0Ij5zaWxrIHwgcHJvZmlsZSB8IENhbiBjaGFuZ2UgcHJvZmlsZTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSI0NSI+c2lsayB8IHByb2ZpbGUgfCBDYW4gZGVsZXRlIHByb2ZpbGU8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMzQiPnNpbGsgfCByZXF1ZXN0IHwgQ2FuIGFkZCByZXF1ZXN0PC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjM1Ij5zaWxrIHwgcmVxdWVzdCB8IENhbiBjaGFuZ2UgcmVxdWVzdDwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIzNiI+c2lsayB8IHJlcXVlc3QgfCBDYW4gZGVsZXRlIHJlcXVlc3Q8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iNDAiPnNpbGsgfCByZXNwb25zZSB8IENhbiBhZGQgcmVzcG9uc2U8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iNDEiPnNpbGsgfCByZXNwb25zZSB8IENhbiBjaGFuZ2UgcmVzcG9uc2U8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iNDIiPnNpbGsgfCByZXNwb25zZSB8IENhbiBkZWxldGUgcmVzcG9uc2U8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMzciPnNpbGsgfCBzcWwgcXVlcnkgfCBDYW4gYWRkIHNxbCBxdWVyeTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIzOCI+c2lsayB8IHNxbCBxdWVyeSB8IENhbiBjaGFuZ2Ugc3FsIHF1ZXJ5PC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjM5Ij5zaWxrIHwgc3FsIHF1ZXJ5IHwgQ2FuIGRlbGV0ZSBzcWwgcXVlcnk8L29wdGlvbj4KPC9zZWxlY3Q+CiAgICAKICAgICAgICAKICAgICAgICAKICAgICAgICAKICAgIAo8L2Rpdj4KCiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8cCBjbGFzcz0iaGVscCI+U3BlY2lmaWMgcGVybWlzc2lvbnMgZm9yIHRoaXMgdXNlci4gSG9sZCBkb3duICJDb250cm9sIiwgb3IgIkNvbW1hbmQiIG9uIGEgTWFjLCB0byBzZWxlY3QgbW9yZSB0aGFuIG9uZS48L3A+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKPC9maWVsZHNldD4KCgogIDxmaWVsZHNldCBjbGFzcz0ibW9kdWxlIGFsaWduZWQgIj4KICAgIDxoMj5JbXBvcnRhbnQgZGF0ZXM8L2gyPgogICAgCiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC1sYXN0X2xvZ2luIj4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGRpdj4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPGxhYmVsIGZvcj0iaWRfbGFzdF9sb2dpbl8wIj5MYXN0IGxvZ2luOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgPHAgY2xhc3M9ImRhdGV0aW1lIj5EYXRlOiA8aW5wdXQgY2xhc3M9InZEYXRlRmllbGQiIGlkPSJpZF9sYXN0X2xvZ2luXzAiIG5hbWU9Imxhc3RfbG9naW5fMCIgc2l6ZT0iMTAiIHR5cGU9InRleHQiIC8+PGJyIC8+VGltZTogPGlucHV0IGNsYXNzPSJ2VGltZUZpZWxkIiBpZD0iaWRfbGFzdF9sb2dpbl8xIiBuYW1lPSJsYXN0X2xvZ2luXzEiIHNpemU9IjgiIHR5cGU9InRleHQiIC8+PC9wPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDwvZGl2PgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImZvcm0tcm93IGZpZWxkLWRhdGVfam9pbmVkIj4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGRpdj4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPGxhYmVsIGNsYXNzPSJyZXF1aXJlZCIgZm9yPSJpZF9kYXRlX2pvaW5lZF8wIj5EYXRlIGpvaW5lZDo8L2xhYmVsPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxwIGNsYXNzPSJkYXRldGltZSI+RGF0ZTogPGlucHV0IGNsYXNzPSJ2RGF0ZUZpZWxkIiBpZD0iaWRfZGF0ZV9qb2luZWRfMCIgbmFtZT0iZGF0ZV9qb2luZWRfMCIgc2l6ZT0iMTAiIHR5cGU9InRleHQiIHZhbHVlPSIyMDE3LTAzLTI3IiByZXF1aXJlZCAvPjxiciAvPlRpbWU6IDxpbnB1dCBjbGFzcz0idlRpbWVGaWVsZCIgaWQ9ImlkX2RhdGVfam9pbmVkXzEiIG5hbWU9ImRhdGVfam9pbmVkXzEiIHNpemU9IjgiIHR5cGU9InRleHQiIHZhbHVlPSIxNDo1MjozNCIgcmVxdWlyZWQgLz48L3A+PGlucHV0IGlkPSJpbml0aWFsLWlkX2RhdGVfam9pbmVkXzAiIG5hbWU9ImluaXRpYWwtZGF0ZV9qb2luZWRfMCIgdHlwZT0iaGlkZGVuIiB2YWx1ZT0iMjAxNy0wMy0yNyIgLz48aW5wdXQgaWQ9ImluaXRpYWwtaWRfZGF0ZV9qb2luZWRfMSIgbmFtZT0iaW5pdGlhbC1kYXRlX2pvaW5lZF8xIiB0eXBlPSJoaWRkZW4iIHZhbHVlPSIxNDo1MjozNCIgLz4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKPC9maWVsZHNldD4KCgoKCgoKCgoKCgoKCjxkaXYgY2xhc3M9InN1Ym1pdC1yb3ciPgo8aW5wdXQgdHlwZT0ic3VibWl0IiB2YWx1ZT0iU2F2ZSIgY2xhc3M9ImRlZmF1bHQiIG5hbWU9Il9zYXZlIiAvPgoKICAgIAogICAgPHAgY2xhc3M9ImRlbGV0ZWxpbmstYm94Ij48YSBocmVmPSIvYWRtaW4vYXV0aC91c2VyLzIvZGVsZXRlLyIgY2xhc3M9ImRlbGV0ZWxpbmsiPkRlbGV0ZTwvYT48L3A+CgoKPGlucHV0IHR5cGU9InN1Ym1pdCIgdmFsdWU9IlNhdmUgYW5kIGFkZCBhbm90aGVyIiBuYW1lPSJfYWRkYW5vdGhlciIgLz4KPGlucHV0IHR5cGU9InN1Ym1pdCIgdmFsdWU9IlNhdmUgYW5kIGNvbnRpbnVlIGVkaXRpbmciIG5hbWU9Il9jb250aW51ZSIgLz4KPC9kaXY+CgoKCiAgICA8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIKICAgICAgICAgICAgaWQ9ImRqYW5nby1hZG1pbi1mb3JtLWFkZC1jb25zdGFudHMiCiAgICAgICAgICAgIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9jaGFuZ2VfZm9ybS5qcyIKICAgICAgICAgICAgPgogICAgPC9zY3JpcHQ+CgoKCgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIKICAgICAgICBpZD0iZGphbmdvLWFkbWluLXByZXBvcHVsYXRlZC1maWVsZHMtY29uc3RhbnRzIgogICAgICAgIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9wcmVwb3B1bGF0ZV9pbml0LmpzIgogICAgICAgIGRhdGEtcHJlcG9wdWxhdGVkLWZpZWxkcz0iW10iPgo8L3NjcmlwdD4KCgo8L2Rpdj4KPC9mb3JtPjwvZGl2PgoKICAgICAgICAKICAgICAgICA8YnIgY2xhc3M9ImNsZWFyIiAvPgogICAgPC9kaXY+CiAgICA8IS0tIEVORCBDb250ZW50IC0tPgoKICAgIDxkaXYgaWQ9ImZvb3RlciI+PC9kaXY+CjwvZGl2Pgo8IS0tIEVORCBDb250YWluZXIgLS0+Cgo8L2JvZHk+CjwvaHRtbD4K", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 14:52:34 GMT\", \"Expires\": \"Mon, 27 Mar 2017 14:52:34 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "b48bbda2-053d-4a48-a522-6cfd32f43d42", - "fields": { - "request": "d0c60800-eb4d-4d70-8305-21348cd1a0a4", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "b587a554-53f9-4a15-bb52-3bc403a91f18", - "fields": { - "request": "45fb5123-11cf-489a-86ed-250fb2b17bf9", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPkNoYW5nZSB1c2VyIHwgRGphbmdvIHNpdGUgYWRtaW48L3RpdGxlPgo8bGluayByZWw9InN0eWxlc2hlZXQiIHR5cGU9InRleHQvY3NzIiBocmVmPSIvYXNzZXRzL2FkbWluL2Nzcy9iYXNlLmNzcyIgLz4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvZm9ybXMuY3NzIiAvPgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9jb3JlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IvanF1ZXJ5L2pxdWVyeS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvanF1ZXJ5LmluaXQuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2FkbWluL1JlbGF0ZWRPYmplY3RMb29rdXBzLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hY3Rpb25zLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy91cmxpZnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL3ByZXBvcHVsYXRlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IveHJlZ2V4cC94cmVnZXhwLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9TZWxlY3RCb3guanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL1NlbGVjdEZpbHRlcjIuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2NhbGVuZGFyLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hZG1pbi9EYXRlVGltZVNob3J0Y3V0cy5qcyI+PC9zY3JpcHQ+Cgo8bWV0YSBuYW1lPSJyb2JvdHMiIGNvbnRlbnQ9Ik5PTkUsTk9BUkNISVZFIiAvPgo8L2hlYWQ+CgoKPGJvZHkgY2xhc3M9IiBhcHAtYXV0aCBtb2RlbC11c2VyIGNoYW5nZS1mb3JtIgogIGRhdGEtYWRtaW4tdXRjLW9mZnNldD0iMCI+Cgo8IS0tIENvbnRhaW5lciAtLT4KPGRpdiBpZD0iY29udGFpbmVyIj4KCiAgICAKICAgIDwhLS0gSGVhZGVyIC0tPgogICAgPGRpdiBpZD0iaGVhZGVyIj4KICAgICAgICA8ZGl2IGlkPSJicmFuZGluZyI+CiAgICAgICAgCjxoMSBpZD0ic2l0ZS1uYW1lIj48YSBocmVmPSIvYWRtaW4vIj5EamFuZ28gYWRtaW5pc3RyYXRpb248L2E+PC9oMT4KCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgPGRpdiBpZD0idXNlci10b29scyI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgV2VsY29tZSwKICAgICAgICAgICAgICAgIDxzdHJvbmc+a2FwZTwvc3Ryb25nPi4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iLyI+VmlldyBzaXRlPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9wYXNzd29yZF9jaGFuZ2UvIj5DaGFuZ2UgcGFzc3dvcmQ8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2xvZ291dC8iPkxvZyBvdXQ8L2E+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIAogICAgPC9kaXY+CiAgICA8IS0tIEVORCBIZWFkZXIgLS0+CiAgICAKPGRpdiBjbGFzcz0iYnJlYWRjcnVtYnMiPgo8YSBocmVmPSIvYWRtaW4vIj5Ib21lPC9hPgomcnNhcXVvOyA8YSBocmVmPSIvYWRtaW4vYXV0aC8iPkF1dGhlbnRpY2F0aW9uIGFuZCBBdXRob3JpemF0aW9uPC9hPgomcnNhcXVvOyA8YSBocmVmPSIvYWRtaW4vYXV0aC91c2VyLyI+VXNlcnM8L2E+CiZyc2FxdW87IGZhcmhhbnN1cGVyCjwvZGl2PgoKICAgIAoKICAgIAogICAgICAgIAogICAgCgogICAgPCEtLSBDb250ZW50IC0tPgogICAgPGRpdiBpZD0iY29udGVudCIgY2xhc3M9ImNvbE0iPgogICAgICAgIAogICAgICAgIDxoMT5DaGFuZ2UgdXNlcjwvaDE+CiAgICAgICAgPGRpdiBpZD0iY29udGVudC1tYWluIj4KCgogIDx1bCBjbGFzcz0ib2JqZWN0LXRvb2xzIj4KICAgIAogICAgPGxpPgogICAgICAgIAogICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9hdXRoL3VzZXIvNC9oaXN0b3J5LyIgY2xhc3M9Imhpc3RvcnlsaW5rIj5IaXN0b3J5PC9hPgogICAgPC9saT4KICAgIAogICAgCiAgPC91bD4KCgo8Zm9ybSBlbmN0eXBlPSJtdWx0aXBhcnQvZm9ybS1kYXRhIiBhY3Rpb249IiIgbWV0aG9kPSJwb3N0IiBpZD0idXNlcl9mb3JtIiBub3ZhbGlkYXRlPjxpbnB1dCB0eXBlPSdoaWRkZW4nIG5hbWU9J2NzcmZtaWRkbGV3YXJldG9rZW4nIHZhbHVlPSdtZGV1a0FxZG9KZG9NT3ZlRVhmTjlDM1l5QTFVMUJJeUxqbGp3Nmk4YkdvTjlXeEdub0tmMWpLSXd2N0psQkVuJyAvPgo8ZGl2PgoKCgoKCgoKICA8ZmllbGRzZXQgY2xhc3M9Im1vZHVsZSBhbGlnbmVkICI+CiAgICAKICAgIAogICAgCiAgICAgICAgPGRpdiBjbGFzcz0iZm9ybS1yb3cgZmllbGQtdXNlcm5hbWUiPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgY2xhc3M9InJlcXVpcmVkIiBmb3I9ImlkX3VzZXJuYW1lIj5Vc2VybmFtZTo8L2xhYmVsPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxpbnB1dCBjbGFzcz0idlRleHRGaWVsZCIgaWQ9ImlkX3VzZXJuYW1lIiBtYXhsZW5ndGg9IjE1MCIgbmFtZT0idXNlcm5hbWUiIHR5cGU9InRleHQiIHZhbHVlPSJmYXJoYW5zdXBlciIgcmVxdWlyZWQgLz4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxwIGNsYXNzPSJoZWxwIj5SZXF1aXJlZC4gMTUwIGNoYXJhY3RlcnMgb3IgZmV3ZXIuIExldHRlcnMsIGRpZ2l0cyBhbmQgQC8uLysvLS9fIG9ubHkuPC9wPgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPC9kaXY+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgCiAgICAgICAgPGRpdiBjbGFzcz0iZm9ybS1yb3cgZmllbGQtcGFzc3dvcmQiPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgZm9yPSJpZF9wYXNzd29yZCI+UGFzc3dvcmQ6PC9sYWJlbD4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8ZGl2IGlkPSJpZF9wYXNzd29yZCI+PHN0cm9uZz5hbGdvcml0aG08L3N0cm9uZz46IHBia2RmMl9zaGEyNTYgPHN0cm9uZz5pdGVyYXRpb25zPC9zdHJvbmc+OiAzMDAwMCA8c3Ryb25nPnNhbHQ8L3N0cm9uZz46IEdtV01DQioqKioqKiA8c3Ryb25nPmhhc2g8L3N0cm9uZz46IFFCVHpISioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqIDwvZGl2PgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPHAgY2xhc3M9ImhlbHAiPlJhdyBwYXNzd29yZHMgYXJlIG5vdCBzdG9yZWQsIHNvIHRoZXJlIGlzIG5vIHdheSB0byBzZWUgdGhpcyB1c2VyJ3MgcGFzc3dvcmQsIGJ1dCB5b3UgY2FuIGNoYW5nZSB0aGUgcGFzc3dvcmQgdXNpbmcgPGEgaHJlZj0iLi4vcGFzc3dvcmQvIj50aGlzIGZvcm08L2E+LjwvcD4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDwvZGl2PgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgIAo8L2ZpZWxkc2V0PgoKCiAgPGZpZWxkc2V0IGNsYXNzPSJtb2R1bGUgYWxpZ25lZCAiPgogICAgPGgyPlBlcnNvbmFsIGluZm88L2gyPgogICAgCiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC1maXJzdF9uYW1lIj4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGRpdj4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPGxhYmVsIGZvcj0iaWRfZmlyc3RfbmFtZSI+Rmlyc3QgbmFtZTo8L2xhYmVsPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxpbnB1dCBjbGFzcz0idlRleHRGaWVsZCIgaWQ9ImlkX2ZpcnN0X25hbWUiIG1heGxlbmd0aD0iMzAiIG5hbWU9ImZpcnN0X25hbWUiIHR5cGU9InRleHQiIC8+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPC9kaXY+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgCiAgICAgICAgPGRpdiBjbGFzcz0iZm9ybS1yb3cgZmllbGQtbGFzdF9uYW1lIj4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGRpdj4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPGxhYmVsIGZvcj0iaWRfbGFzdF9uYW1lIj5MYXN0IG5hbWU6PC9sYWJlbD4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8aW5wdXQgY2xhc3M9InZUZXh0RmllbGQiIGlkPSJpZF9sYXN0X25hbWUiIG1heGxlbmd0aD0iMzAiIG5hbWU9Imxhc3RfbmFtZSIgdHlwZT0idGV4dCIgLz4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC1lbWFpbCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXY+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxsYWJlbCBmb3I9ImlkX2VtYWlsIj5FbWFpbCBhZGRyZXNzOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgPGlucHV0IGNsYXNzPSJ2VGV4dEZpZWxkIiBpZD0iaWRfZW1haWwiIG1heGxlbmd0aD0iMjU0IiBuYW1lPSJlbWFpbCIgdHlwZT0iZW1haWwiIC8+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPC9kaXY+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgCjwvZmllbGRzZXQ+CgoKICA8ZmllbGRzZXQgY2xhc3M9Im1vZHVsZSBhbGlnbmVkICI+CiAgICA8aDI+UGVybWlzc2lvbnM8L2gyPgogICAgCiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC1pc19hY3RpdmUiPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPSJjaGVja2JveC1yb3ciPgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8aW5wdXQgY2hlY2tlZD0iY2hlY2tlZCIgaWQ9ImlkX2lzX2FjdGl2ZSIgbmFtZT0iaXNfYWN0aXZlIiB0eXBlPSJjaGVja2JveCIgLz48bGFiZWwgY2xhc3M9InZDaGVja2JveExhYmVsIiBmb3I9ImlkX2lzX2FjdGl2ZSI+QWN0aXZlPC9sYWJlbD4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPHAgY2xhc3M9ImhlbHAiPkRlc2lnbmF0ZXMgd2hldGhlciB0aGlzIHVzZXIgc2hvdWxkIGJlIHRyZWF0ZWQgYXMgYWN0aXZlLiBVbnNlbGVjdCB0aGlzIGluc3RlYWQgb2YgZGVsZXRpbmcgYWNjb3VudHMuPC9wPgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPC9kaXY+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgCiAgICAgICAgPGRpdiBjbGFzcz0iZm9ybS1yb3cgZmllbGQtaXNfc3RhZmYiPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPSJjaGVja2JveC1yb3ciPgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8aW5wdXQgaWQ9ImlkX2lzX3N0YWZmIiBuYW1lPSJpc19zdGFmZiIgdHlwZT0iY2hlY2tib3giIC8+PGxhYmVsIGNsYXNzPSJ2Q2hlY2tib3hMYWJlbCIgZm9yPSJpZF9pc19zdGFmZiI+U3RhZmYgc3RhdHVzPC9sYWJlbD4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPHAgY2xhc3M9ImhlbHAiPkRlc2lnbmF0ZXMgd2hldGhlciB0aGUgdXNlciBjYW4gbG9nIGludG8gdGhpcyBhZG1pbiBzaXRlLjwvcD4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDwvZGl2PgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImZvcm0tcm93IGZpZWxkLWlzX3N1cGVydXNlciI+CiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9ImNoZWNrYm94LXJvdyI+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxpbnB1dCBpZD0iaWRfaXNfc3VwZXJ1c2VyIiBuYW1lPSJpc19zdXBlcnVzZXIiIHR5cGU9ImNoZWNrYm94IiAvPjxsYWJlbCBjbGFzcz0idkNoZWNrYm94TGFiZWwiIGZvcj0iaWRfaXNfc3VwZXJ1c2VyIj5TdXBlcnVzZXIgc3RhdHVzPC9sYWJlbD4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPHAgY2xhc3M9ImhlbHAiPkRlc2lnbmF0ZXMgdGhhdCB0aGlzIHVzZXIgaGFzIGFsbCBwZXJtaXNzaW9ucyB3aXRob3V0IGV4cGxpY2l0bHkgYXNzaWduaW5nIHRoZW0uPC9wPgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPC9kaXY+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgCiAgICAgICAgPGRpdiBjbGFzcz0iZm9ybS1yb3cgZmllbGQtZ3JvdXBzIj4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGRpdj4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPGxhYmVsIGZvcj0iaWRfZ3JvdXBzIj5Hcm91cHM6PC9sYWJlbD4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAKPGRpdiBjbGFzcz0icmVsYXRlZC13aWRnZXQtd3JhcHBlciI+CiAgICA8c2VsZWN0IG11bHRpcGxlPSJtdWx0aXBsZSIgY2xhc3M9InNlbGVjdGZpbHRlciIgZGF0YS1maWVsZC1uYW1lPSJncm91cHMiIGRhdGEtaXMtc3RhY2tlZD0iMCIgaWQ9ImlkX2dyb3VwcyIgbmFtZT0iZ3JvdXBzIj4KPC9zZWxlY3Q+CiAgICAKICAgICAgICAKICAgICAgICAKICAgICAgICA8YSBjbGFzcz0icmVsYXRlZC13aWRnZXQtd3JhcHBlci1saW5rIGFkZC1yZWxhdGVkIiBpZD0iYWRkX2lkX2dyb3VwcyIKICAgICAgICAgICAgaHJlZj0iL2FkbWluL2F1dGgvZ3JvdXAvYWRkLz9fdG9fZmllbGQ9aWQmYW1wO19wb3B1cD0xIgogICAgICAgICAgICB0aXRsZT0iQWRkIGFub3RoZXIgZ3JvdXAiPgogICAgICAgICAgICA8aW1nIHNyYz0iL2Fzc2V0cy9hZG1pbi9pbWcvaWNvbi1hZGRsaW5rLnN2ZyIgYWx0PSJBZGQiLz4KICAgICAgICA8L2E+CiAgICAgICAgCiAgICAgICAgCiAgICAKPC9kaXY+CgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPHAgY2xhc3M9ImhlbHAiPlRoZSBncm91cHMgdGhpcyB1c2VyIGJlbG9uZ3MgdG8uIEEgdXNlciB3aWxsIGdldCBhbGwgcGVybWlzc2lvbnMgZ3JhbnRlZCB0byBlYWNoIG9mIHRoZWlyIGdyb3Vwcy4gSG9sZCBkb3duICJDb250cm9sIiwgb3IgIkNvbW1hbmQiIG9uIGEgTWFjLCB0byBzZWxlY3QgbW9yZSB0aGFuIG9uZS48L3A+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC11c2VyX3Blcm1pc3Npb25zIj4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGRpdj4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPGxhYmVsIGZvcj0iaWRfdXNlcl9wZXJtaXNzaW9ucyI+VXNlciBwZXJtaXNzaW9uczo8L2xhYmVsPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIAo8ZGl2IGNsYXNzPSJyZWxhdGVkLXdpZGdldC13cmFwcGVyIj4KICAgIDxzZWxlY3QgbXVsdGlwbGU9Im11bHRpcGxlIiBjbGFzcz0ic2VsZWN0ZmlsdGVyIiBkYXRhLWZpZWxkLW5hbWU9InVzZXIgcGVybWlzc2lvbnMiIGRhdGEtaXMtc3RhY2tlZD0iMCIgaWQ9ImlkX3VzZXJfcGVybWlzc2lvbnMiIG5hbWU9InVzZXJfcGVybWlzc2lvbnMiPgo8b3B0aW9uIHZhbHVlPSIxIj5hZG1pbiB8IGxvZyBlbnRyeSB8IENhbiBhZGQgbG9nIGVudHJ5PC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjIiPmFkbWluIHwgbG9nIGVudHJ5IHwgQ2FuIGNoYW5nZSBsb2cgZW50cnk8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMyI+YWRtaW4gfCBsb2cgZW50cnkgfCBDYW4gZGVsZXRlIGxvZyBlbnRyeTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIxMCI+YXV0aCB8IGdyb3VwIHwgQ2FuIGFkZCBncm91cDwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIxMSI+YXV0aCB8IGdyb3VwIHwgQ2FuIGNoYW5nZSBncm91cDwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIxMiI+YXV0aCB8IGdyb3VwIHwgQ2FuIGRlbGV0ZSBncm91cDwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSI0Ij5hdXRoIHwgcGVybWlzc2lvbiB8IENhbiBhZGQgcGVybWlzc2lvbjwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSI1Ij5hdXRoIHwgcGVybWlzc2lvbiB8IENhbiBjaGFuZ2UgcGVybWlzc2lvbjwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSI2Ij5hdXRoIHwgcGVybWlzc2lvbiB8IENhbiBkZWxldGUgcGVybWlzc2lvbjwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSI3Ij5hdXRoIHwgdXNlciB8IENhbiBhZGQgdXNlcjwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSI4Ij5hdXRoIHwgdXNlciB8IENhbiBjaGFuZ2UgdXNlcjwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSI5Ij5hdXRoIHwgdXNlciB8IENhbiBkZWxldGUgdXNlcjwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIxMyI+Y29udGVudHR5cGVzIHwgY29udGVudCB0eXBlIHwgQ2FuIGFkZCBjb250ZW50IHR5cGU8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMTQiPmNvbnRlbnR0eXBlcyB8IGNvbnRlbnQgdHlwZSB8IENhbiBjaGFuZ2UgY29udGVudCB0eXBlPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjE1Ij5jb250ZW50dHlwZXMgfCBjb250ZW50IHR5cGUgfCBDYW4gZGVsZXRlIGNvbnRlbnQgdHlwZTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIyNSI+Y29yZSB8IGFwcGxpY2F0aW9uIHwgQ2FuIGFkZCBhcHBsaWNhdGlvbjwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIyNiI+Y29yZSB8IGFwcGxpY2F0aW9uIHwgQ2FuIGNoYW5nZSBhcHBsaWNhdGlvbjwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIyNyI+Y29yZSB8IGFwcGxpY2F0aW9uIHwgQ2FuIGRlbGV0ZSBhcHBsaWNhdGlvbjwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIxOSI+Y29yZSB8IGNvbXBhbnkgfCBDYW4gYWRkIGNvbXBhbnk8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMjAiPmNvcmUgfCBjb21wYW55IHwgQ2FuIGNoYW5nZSBjb21wYW55PC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjIxIj5jb3JlIHwgY29tcGFueSB8IENhbiBkZWxldGUgY29tcGFueTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIyMiI+Y29yZSB8IHN0dWRlbnQgfCBDYW4gYWRkIHN0dWRlbnQ8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMjMiPmNvcmUgfCBzdHVkZW50IHwgQ2FuIGNoYW5nZSBzdHVkZW50PC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjI0Ij5jb3JlIHwgc3R1ZGVudCB8IENhbiBkZWxldGUgc3R1ZGVudDwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIyOCI+Y29yZSB8IHN1cGVydmlzb3IgfCBDYW4gYWRkIHN1cGVydmlzb3I8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMjkiPmNvcmUgfCBzdXBlcnZpc29yIHwgQ2FuIGNoYW5nZSBzdXBlcnZpc29yPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjMwIj5jb3JlIHwgc3VwZXJ2aXNvciB8IENhbiBkZWxldGUgc3VwZXJ2aXNvcjwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIzMSI+Y29yZSB8IHZhY2FuY3kgfCBDYW4gYWRkIHZhY2FuY3k8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMzIiPmNvcmUgfCB2YWNhbmN5IHwgQ2FuIGNoYW5nZSB2YWNhbmN5PC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjMzIj5jb3JlIHwgdmFjYW5jeSB8IENhbiBkZWxldGUgdmFjYW5jeTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIxNiI+c2Vzc2lvbnMgfCBzZXNzaW9uIHwgQ2FuIGFkZCBzZXNzaW9uPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjE3Ij5zZXNzaW9ucyB8IHNlc3Npb24gfCBDYW4gY2hhbmdlIHNlc3Npb248L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMTgiPnNlc3Npb25zIHwgc2Vzc2lvbiB8IENhbiBkZWxldGUgc2Vzc2lvbjwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSI0MyI+c2lsayB8IHByb2ZpbGUgfCBDYW4gYWRkIHByb2ZpbGU8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iNDQiPnNpbGsgfCBwcm9maWxlIHwgQ2FuIGNoYW5nZSBwcm9maWxlPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjQ1Ij5zaWxrIHwgcHJvZmlsZSB8IENhbiBkZWxldGUgcHJvZmlsZTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIzNCI+c2lsayB8IHJlcXVlc3QgfCBDYW4gYWRkIHJlcXVlc3Q8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMzUiPnNpbGsgfCByZXF1ZXN0IHwgQ2FuIGNoYW5nZSByZXF1ZXN0PC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjM2Ij5zaWxrIHwgcmVxdWVzdCB8IENhbiBkZWxldGUgcmVxdWVzdDwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSI0MCI+c2lsayB8IHJlc3BvbnNlIHwgQ2FuIGFkZCByZXNwb25zZTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSI0MSI+c2lsayB8IHJlc3BvbnNlIHwgQ2FuIGNoYW5nZSByZXNwb25zZTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSI0MiI+c2lsayB8IHJlc3BvbnNlIHwgQ2FuIGRlbGV0ZSByZXNwb25zZTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIzNyI+c2lsayB8IHNxbCBxdWVyeSB8IENhbiBhZGQgc3FsIHF1ZXJ5PC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjM4Ij5zaWxrIHwgc3FsIHF1ZXJ5IHwgQ2FuIGNoYW5nZSBzcWwgcXVlcnk8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMzkiPnNpbGsgfCBzcWwgcXVlcnkgfCBDYW4gZGVsZXRlIHNxbCBxdWVyeTwvb3B0aW9uPgo8L3NlbGVjdD4KICAgIAogICAgICAgIAogICAgICAgIAogICAgICAgIAogICAgCjwvZGl2PgoKICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxwIGNsYXNzPSJoZWxwIj5TcGVjaWZpYyBwZXJtaXNzaW9ucyBmb3IgdGhpcyB1c2VyLiBIb2xkIGRvd24gIkNvbnRyb2wiLCBvciAiQ29tbWFuZCIgb24gYSBNYWMsIHRvIHNlbGVjdCBtb3JlIHRoYW4gb25lLjwvcD4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDwvZGl2PgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgIAo8L2ZpZWxkc2V0PgoKCiAgPGZpZWxkc2V0IGNsYXNzPSJtb2R1bGUgYWxpZ25lZCAiPgogICAgPGgyPkltcG9ydGFudCBkYXRlczwvaDI+CiAgICAKICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImZvcm0tcm93IGZpZWxkLWxhc3RfbG9naW4iPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgZm9yPSJpZF9sYXN0X2xvZ2luXzAiPkxhc3QgbG9naW46PC9sYWJlbD4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8cCBjbGFzcz0iZGF0ZXRpbWUiPkRhdGU6IDxpbnB1dCBjbGFzcz0idkRhdGVGaWVsZCIgaWQ9ImlkX2xhc3RfbG9naW5fMCIgbmFtZT0ibGFzdF9sb2dpbl8wIiBzaXplPSIxMCIgdHlwZT0idGV4dCIgLz48YnIgLz5UaW1lOiA8aW5wdXQgY2xhc3M9InZUaW1lRmllbGQiIGlkPSJpZF9sYXN0X2xvZ2luXzEiIG5hbWU9Imxhc3RfbG9naW5fMSIgc2l6ZT0iOCIgdHlwZT0idGV4dCIgLz48L3A+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPC9kaXY+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgCiAgICAgICAgPGRpdiBjbGFzcz0iZm9ybS1yb3cgZmllbGQtZGF0ZV9qb2luZWQiPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgY2xhc3M9InJlcXVpcmVkIiBmb3I9ImlkX2RhdGVfam9pbmVkXzAiPkRhdGUgam9pbmVkOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgPHAgY2xhc3M9ImRhdGV0aW1lIj5EYXRlOiA8aW5wdXQgY2xhc3M9InZEYXRlRmllbGQiIGlkPSJpZF9kYXRlX2pvaW5lZF8wIiBuYW1lPSJkYXRlX2pvaW5lZF8wIiBzaXplPSIxMCIgdHlwZT0idGV4dCIgdmFsdWU9IjIwMTctMDMtMjciIHJlcXVpcmVkIC8+PGJyIC8+VGltZTogPGlucHV0IGNsYXNzPSJ2VGltZUZpZWxkIiBpZD0iaWRfZGF0ZV9qb2luZWRfMSIgbmFtZT0iZGF0ZV9qb2luZWRfMSIgc2l6ZT0iOCIgdHlwZT0idGV4dCIgdmFsdWU9IjE0OjU1OjA5IiByZXF1aXJlZCAvPjwvcD48aW5wdXQgaWQ9ImluaXRpYWwtaWRfZGF0ZV9qb2luZWRfMCIgbmFtZT0iaW5pdGlhbC1kYXRlX2pvaW5lZF8wIiB0eXBlPSJoaWRkZW4iIHZhbHVlPSIyMDE3LTAzLTI3IiAvPjxpbnB1dCBpZD0iaW5pdGlhbC1pZF9kYXRlX2pvaW5lZF8xIiBuYW1lPSJpbml0aWFsLWRhdGVfam9pbmVkXzEiIHR5cGU9ImhpZGRlbiIgdmFsdWU9IjE0OjU1OjA5IiAvPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDwvZGl2PgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgIAo8L2ZpZWxkc2V0PgoKCgoKCgoKCgoKCgoKPGRpdiBjbGFzcz0ic3VibWl0LXJvdyI+CjxpbnB1dCB0eXBlPSJzdWJtaXQiIHZhbHVlPSJTYXZlIiBjbGFzcz0iZGVmYXVsdCIgbmFtZT0iX3NhdmUiIC8+CgogICAgCiAgICA8cCBjbGFzcz0iZGVsZXRlbGluay1ib3giPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL3VzZXIvNC9kZWxldGUvIiBjbGFzcz0iZGVsZXRlbGluayI+RGVsZXRlPC9hPjwvcD4KCgo8aW5wdXQgdHlwZT0ic3VibWl0IiB2YWx1ZT0iU2F2ZSBhbmQgYWRkIGFub3RoZXIiIG5hbWU9Il9hZGRhbm90aGVyIiAvPgo8aW5wdXQgdHlwZT0ic3VibWl0IiB2YWx1ZT0iU2F2ZSBhbmQgY29udGludWUgZWRpdGluZyIgbmFtZT0iX2NvbnRpbnVlIiAvPgo8L2Rpdj4KCgoKICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IgogICAgICAgICAgICBpZD0iZGphbmdvLWFkbWluLWZvcm0tYWRkLWNvbnN0YW50cyIKICAgICAgICAgICAgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2NoYW5nZV9mb3JtLmpzIgogICAgICAgICAgICA+CiAgICA8L3NjcmlwdD4KCgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IgogICAgICAgIGlkPSJkamFuZ28tYWRtaW4tcHJlcG9wdWxhdGVkLWZpZWxkcy1jb25zdGFudHMiCiAgICAgICAgc3JjPSIvYXNzZXRzL2FkbWluL2pzL3ByZXBvcHVsYXRlX2luaXQuanMiCiAgICAgICAgZGF0YS1wcmVwb3B1bGF0ZWQtZmllbGRzPSJbXSI+Cjwvc2NyaXB0PgoKCjwvZGl2Pgo8L2Zvcm0+PC9kaXY+CgogICAgICAgIAogICAgICAgIDxiciBjbGFzcz0iY2xlYXIiIC8+CiAgICA8L2Rpdj4KICAgIDwhLS0gRU5EIENvbnRlbnQgLS0+CgogICAgPGRpdiBpZD0iZm9vdGVyIj48L2Rpdj4KPC9kaXY+CjwhLS0gRU5EIENvbnRhaW5lciAtLT4KCjwvYm9keT4KPC9odG1sPgo=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 17:15:28 GMT\", \"Expires\": \"Mon, 27 Mar 2017 17:15:28 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "b6ac457d-b355-4330-b167-1261011b1ee9", - "fields": { - "request": "29ceec2e-a173-4592-83de-05f6ab2cb8f5", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPkNoYW5nZSBjb21wYW55IHwgRGphbmdvIHNpdGUgYWRtaW48L3RpdGxlPgo8bGluayByZWw9InN0eWxlc2hlZXQiIHR5cGU9InRleHQvY3NzIiBocmVmPSIvYXNzZXRzL2FkbWluL2Nzcy9iYXNlLmNzcyIgLz4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvZm9ybXMuY3NzIiAvPgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9jb3JlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IvanF1ZXJ5L2pxdWVyeS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvanF1ZXJ5LmluaXQuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2FkbWluL1JlbGF0ZWRPYmplY3RMb29rdXBzLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hY3Rpb25zLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy91cmxpZnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL3ByZXBvcHVsYXRlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IveHJlZ2V4cC94cmVnZXhwLmpzIj48L3NjcmlwdD4KCjxtZXRhIG5hbWU9InJvYm90cyIgY29udGVudD0iTk9ORSxOT0FSQ0hJVkUiIC8+CjwvaGVhZD4KCgo8Ym9keSBjbGFzcz0iIGFwcC1jb3JlIG1vZGVsLWNvbXBhbnkgY2hhbmdlLWZvcm0iCiAgZGF0YS1hZG1pbi11dGMtb2Zmc2V0PSIwIj4KCjwhLS0gQ29udGFpbmVyIC0tPgo8ZGl2IGlkPSJjb250YWluZXIiPgoKICAgIAogICAgPCEtLSBIZWFkZXIgLS0+CiAgICA8ZGl2IGlkPSJoZWFkZXIiPgogICAgICAgIDxkaXYgaWQ9ImJyYW5kaW5nIj4KICAgICAgICAKPGgxIGlkPSJzaXRlLW5hbWUiPjxhIGhyZWY9Ii9hZG1pbi8iPkRqYW5nbyBhZG1pbmlzdHJhdGlvbjwvYT48L2gxPgoKICAgICAgICA8L2Rpdj4KICAgICAgICAKICAgICAgICAKICAgICAgICA8ZGl2IGlkPSJ1c2VyLXRvb2xzIj4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICBXZWxjb21lLAogICAgICAgICAgICAgICAgPHN0cm9uZz5rYXBlPC9zdHJvbmc+LgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvIj5WaWV3IHNpdGU8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL3Bhc3N3b3JkX2NoYW5nZS8iPkNoYW5nZSBwYXNzd29yZDwvYT4gLwogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vbG9nb3V0LyI+TG9nIG91dDwvYT4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgCiAgICA8L2Rpdj4KICAgIDwhLS0gRU5EIEhlYWRlciAtLT4KICAgIAo8ZGl2IGNsYXNzPSJicmVhZGNydW1icyI+CjxhIGhyZWY9Ii9hZG1pbi8iPkhvbWU8L2E+CiZyc2FxdW87IDxhIGhyZWY9Ii9hZG1pbi9jb3JlLyI+Q29yZTwvYT4KJnJzYXF1bzsgPGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8iPkNvbXBhbnlzPC9hPgomcnNhcXVvOyBDb21wYW55IG9iamVjdAo8L2Rpdj4KCiAgICAKCiAgICAKICAgICAgICAKICAgIAoKICAgIDwhLS0gQ29udGVudCAtLT4KICAgIDxkaXYgaWQ9ImNvbnRlbnQiIGNsYXNzPSJjb2xNIj4KICAgICAgICAKICAgICAgICA8aDE+Q2hhbmdlIGNvbXBhbnk8L2gxPgogICAgICAgIDxkaXYgaWQ9ImNvbnRlbnQtbWFpbiI+CgoKICA8dWwgY2xhc3M9Im9iamVjdC10b29scyI+CiAgICAKICAgIDxsaT4KICAgICAgICAKICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS9jb21wYW55LzIvaGlzdG9yeS8iIGNsYXNzPSJoaXN0b3J5bGluayI+SGlzdG9yeTwvYT4KICAgIDwvbGk+CiAgICAKICAgIAogIDwvdWw+CgoKPGZvcm0gZW5jdHlwZT0ibXVsdGlwYXJ0L2Zvcm0tZGF0YSIgYWN0aW9uPSIiIG1ldGhvZD0icG9zdCIgaWQ9ImNvbXBhbnlfZm9ybSIgbm92YWxpZGF0ZT48aW5wdXQgdHlwZT0naGlkZGVuJyBuYW1lPSdjc3JmbWlkZGxld2FyZXRva2VuJyB2YWx1ZT0ncGh1VTNkNFlndVZwSzRnUTIyck9mZWNkaXpoV0l0VFRPbkJKZkpXVDNyNk83Y2lpTHRXZzdWVFhndW5MMnRQSScgLz4KPGRpdj4KCgoKCgoKCiAgPGZpZWxkc2V0IGNsYXNzPSJtb2R1bGUgYWxpZ25lZCAiPgogICAgCiAgICAKICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImZvcm0tcm93IGZpZWxkLXVzZXIiPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgY2xhc3M9InJlcXVpcmVkIiBmb3I9ImlkX3VzZXIiPlVzZXI6PC9sYWJlbD4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAKPGRpdiBjbGFzcz0icmVsYXRlZC13aWRnZXQtd3JhcHBlciI+CiAgICA8c2VsZWN0IGlkPSJpZF91c2VyIiBuYW1lPSJ1c2VyIiByZXF1aXJlZD4KPG9wdGlvbiB2YWx1ZT0iIj4tLS0tLS0tLS08L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMiI+ZmFyaGFuPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjMiIHNlbGVjdGVkPSJzZWxlY3RlZCI+ZmFyaGFuY29ycDwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSI0Ij5mYXJoYW5zdXBlcjwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIxIj5rYXBlPC9vcHRpb24+Cjwvc2VsZWN0PgogICAgCiAgICAgICAgCiAgICAgICAgPGEgY2xhc3M9InJlbGF0ZWQtd2lkZ2V0LXdyYXBwZXItbGluayBjaGFuZ2UtcmVsYXRlZCIgaWQ9ImNoYW5nZV9pZF91c2VyIgogICAgICAgICAgICBkYXRhLWhyZWYtdGVtcGxhdGU9Ii9hZG1pbi9hdXRoL3VzZXIvX19ma19fL2NoYW5nZS8/X3RvX2ZpZWxkPWlkJmFtcDtfcG9wdXA9MSIKICAgICAgICAgICAgdGl0bGU9IkNoYW5nZSBzZWxlY3RlZCB1c2VyIj4KICAgICAgICAgICAgPGltZyBzcmM9Ii9hc3NldHMvYWRtaW4vaW1nL2ljb24tY2hhbmdlbGluay5zdmciIGFsdD0iQ2hhbmdlIi8+CiAgICAgICAgPC9hPgogICAgICAgIAogICAgICAgIAogICAgICAgIDxhIGNsYXNzPSJyZWxhdGVkLXdpZGdldC13cmFwcGVyLWxpbmsgYWRkLXJlbGF0ZWQiIGlkPSJhZGRfaWRfdXNlciIKICAgICAgICAgICAgaHJlZj0iL2FkbWluL2F1dGgvdXNlci9hZGQvP190b19maWVsZD1pZCZhbXA7X3BvcHVwPTEiCiAgICAgICAgICAgIHRpdGxlPSJBZGQgYW5vdGhlciB1c2VyIj4KICAgICAgICAgICAgPGltZyBzcmM9Ii9hc3NldHMvYWRtaW4vaW1nL2ljb24tYWRkbGluay5zdmciIGFsdD0iQWRkIi8+CiAgICAgICAgPC9hPgogICAgICAgIAogICAgICAgIAogICAgCjwvZGl2PgoKICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC1kZXNjcmlwdGlvbiI+CiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXY+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxsYWJlbCBjbGFzcz0icmVxdWlyZWQiIGZvcj0iaWRfZGVzY3JpcHRpb24iPkRlc2NyaXB0aW9uOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRleHRhcmVhIGNsYXNzPSJ2TGFyZ2VUZXh0RmllbGQiIGNvbHM9IjQwIiBpZD0iaWRfZGVzY3JpcHRpb24iIG5hbWU9ImRlc2NyaXB0aW9uIiByb3dzPSIxMCIgcmVxdWlyZWQ+DQpmYXJoYW5jb3JwPC90ZXh0YXJlYT4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC12ZXJpZmllZCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9ImNoZWNrYm94LXJvdyI+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxpbnB1dCBpZD0iaWRfdmVyaWZpZWQiIG5hbWU9InZlcmlmaWVkIiB0eXBlPSJjaGVja2JveCIgLz48bGFiZWwgY2xhc3M9InZDaGVja2JveExhYmVsIiBmb3I9ImlkX3ZlcmlmaWVkIj5WZXJpZmllZDwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKPC9maWVsZHNldD4KCgoKCgoKCgoKCgoKCjxkaXYgY2xhc3M9InN1Ym1pdC1yb3ciPgo8aW5wdXQgdHlwZT0ic3VibWl0IiB2YWx1ZT0iU2F2ZSIgY2xhc3M9ImRlZmF1bHQiIG5hbWU9Il9zYXZlIiAvPgoKICAgIAogICAgPHAgY2xhc3M9ImRlbGV0ZWxpbmstYm94Ij48YSBocmVmPSIvYWRtaW4vY29yZS9jb21wYW55LzIvZGVsZXRlLyIgY2xhc3M9ImRlbGV0ZWxpbmsiPkRlbGV0ZTwvYT48L3A+CgoKPGlucHV0IHR5cGU9InN1Ym1pdCIgdmFsdWU9IlNhdmUgYW5kIGFkZCBhbm90aGVyIiBuYW1lPSJfYWRkYW5vdGhlciIgLz4KPGlucHV0IHR5cGU9InN1Ym1pdCIgdmFsdWU9IlNhdmUgYW5kIGNvbnRpbnVlIGVkaXRpbmciIG5hbWU9Il9jb250aW51ZSIgLz4KPC9kaXY+CgoKCiAgICA8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIKICAgICAgICAgICAgaWQ9ImRqYW5nby1hZG1pbi1mb3JtLWFkZC1jb25zdGFudHMiCiAgICAgICAgICAgIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9jaGFuZ2VfZm9ybS5qcyIKICAgICAgICAgICAgPgogICAgPC9zY3JpcHQ+CgoKCgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIKICAgICAgICBpZD0iZGphbmdvLWFkbWluLXByZXBvcHVsYXRlZC1maWVsZHMtY29uc3RhbnRzIgogICAgICAgIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9wcmVwb3B1bGF0ZV9pbml0LmpzIgogICAgICAgIGRhdGEtcHJlcG9wdWxhdGVkLWZpZWxkcz0iW10iPgo8L3NjcmlwdD4KCgo8L2Rpdj4KPC9mb3JtPjwvZGl2PgoKICAgICAgICAKICAgICAgICA8YnIgY2xhc3M9ImNsZWFyIiAvPgogICAgPC9kaXY+CiAgICA8IS0tIEVORCBDb250ZW50IC0tPgoKICAgIDxkaXYgaWQ9ImZvb3RlciI+PC9kaXY+CjwvZGl2Pgo8IS0tIEVORCBDb250YWluZXIgLS0+Cgo8L2JvZHk+CjwvaHRtbD4K", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 17:18:02 GMT\", \"Expires\": \"Mon, 27 Mar 2017 17:18:02 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "b7071232-59a8-41dd-bb1c-e7212568a9a0", - "fields": { - "request": "74cdf553-b628-472c-8be2-b9672004aaa8", - "status_code": 404, - "raw_body": "eyJkZXRhaWwiOiJOb3QgZm91bmQuIn0=", - "body": "{\n \"detail\": \"Not found.\"\n}", - "encoded_headers": "{\"Content-Type\": \"application/json\", \"Allow\": \"POST, OPTIONS\", \"Vary\": \"Accept\"}" - } -}, -{ - "model": "silk.response", - "pk": "b7bca832-b77f-4cba-ae8a-ce7eece123ba", - "fields": { - "request": "b9938e59-859e-4a13-9b7d-a3c81641e923", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "b9201c63-c110-42d4-9fec-59d21a33d0f9", - "fields": { - "request": "0d7008ed-80fb-4feb-bfec-792036874586", - "status_code": 200, - "raw_body": "CjwhRE9DVFlQRSBodG1sPgo8aHRtbD4KPGhlYWQ+CiAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogIDx0aXRsZT5Td2FnZ2VyIFVJPC90aXRsZT4KICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2ltYWdlcy9mYXZpY29uLTMyeDMyLnBuZyIgc2l6ZXM9IjMyeDMyIiAvPgogIDxsaW5rIHJlbD0iaWNvbiIgdHlwZT0iaW1hZ2UvcG5nIiBocmVmPSIvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvaW1hZ2VzL2Zhdmljb24tMTZ4MTYucG5nIiBzaXplcz0iMTZ4MTYiIC8+CiAgPGxpbmsgaHJlZj0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2Nzcy90eXBvZ3JhcGh5LmNzcycgbWVkaWE9J3NjcmVlbicgcmVsPSdzdHlsZXNoZWV0JyB0eXBlPSd0ZXh0L2NzcycvPgogIDxsaW5rIGhyZWY9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9jc3MvcmVzZXQuY3NzJyBtZWRpYT0nc2NyZWVuJyByZWw9J3N0eWxlc2hlZXQnIHR5cGU9J3RleHQvY3NzJy8+CiAgPGxpbmsgaHJlZj0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2Nzcy9zY3JlZW4uY3NzJyBtZWRpYT0nc2NyZWVuJyByZWw9J3N0eWxlc2hlZXQnIHR5cGU9J3RleHQvY3NzJy8+CiAgPGxpbmsgaHJlZj0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2Nzcy9yZXNldC5jc3MnIG1lZGlhPSdwcmludCcgcmVsPSdzdHlsZXNoZWV0JyB0eXBlPSd0ZXh0L2NzcycvPgogIDxsaW5rIGhyZWY9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9jc3MvcHJpbnQuY3NzJyBtZWRpYT0ncHJpbnQnIHJlbD0nc3R5bGVzaGVldCcgdHlwZT0ndGV4dC9jc3MnLz4KICAKICAKICAKCiAgPHNjcmlwdCBzcmM9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9saWIvb2JqZWN0LWFzc2lnbi1wb2xseWZpbGwuanMnIHR5cGU9J3RleHQvamF2YXNjcmlwdCc+PC9zY3JpcHQ+CiAgPHNjcmlwdCBzcmM9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9saWIvanF1ZXJ5LTEuOC4wLm1pbi5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4KICA8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2xpYi9qcXVlcnkuc2xpZGV0by5taW4uanMnIHR5cGU9J3RleHQvamF2YXNjcmlwdCc+PC9zY3JpcHQ+CiAgPHNjcmlwdCBzcmM9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9saWIvanF1ZXJ5LndpZ2dsZS5taW4uanMnIHR5cGU9J3RleHQvamF2YXNjcmlwdCc+PC9zY3JpcHQ+CiAgPHNjcmlwdCBzcmM9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9saWIvanF1ZXJ5LmJhLWJicS5taW4uanMnIHR5cGU9J3RleHQvamF2YXNjcmlwdCc+PC9zY3JpcHQ+CiAgPHNjcmlwdCBzcmM9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9saWIvaGFuZGxlYmFycy0yLjAuMC5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4KICA8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2xpYi9qcy15YW1sLm1pbi5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4KICA8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2xpYi9sb2Rhc2gubWluLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgogIDxzY3JpcHQgc3JjPScvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvbGliL2JhY2tib25lLW1pbi5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4KICA8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL3N3YWdnZXItdWkubWluLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgogIDxzY3JpcHQgc3JjPScvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvbGliL2hpZ2hsaWdodC45LjEuMC5wYWNrLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgogIDxzY3JpcHQgc3JjPScvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvbGliL2hpZ2hsaWdodC45LjEuMC5wYWNrX2V4dGVuZGVkLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgogIDxzY3JpcHQgc3JjPScvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvbGliL2pzb25lZGl0b3IubWluLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgogIDxzY3JpcHQgc3JjPScvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvbGliL21hcmtlZC5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4KICA8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2xpYi9zd2FnZ2VyLW9hdXRoLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgoKICA8IS0tIFNvbWUgYmFzaWMgdHJhbnNsYXRpb25zIC0tPgogIDwhLS0gPHNjcmlwdCBzcmM9J2xhbmcvdHJhbnNsYXRvci5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4gLS0+CiAgPCEtLSA8c2NyaXB0IHNyYz0nbGFuZy9ydS5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4gLS0+CiAgPCEtLSA8c2NyaXB0IHNyYz0nbGFuZy9lbi5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4gLS0+Cgo8L2hlYWQ+Cgo8Ym9keSBjbGFzcz0ic3dhZ2dlci1zZWN0aW9uIj4KCjxkaXYgaWQ9J2hlYWRlcic+CiAgPGRpdiBjbGFzcz0ic3dhZ2dlci11aS13cmFwIj4KICAgIAogICAgICA8YSBpZD0ibG9nbyIgaHJlZj0iaHR0cDovL3N3YWdnZXIuaW8iPjxpbWcgY2xhc3M9ImxvZ29fX2ltZyIgYWx0PSJzd2FnZ2VyIiBoZWlnaHQ9IjMwIiB3aWR0aD0iMzAiIHNyYz0iL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2ltYWdlcy9sb2dvX3NtYWxsLnBuZyIgLz48c3BhbiBjbGFzcz0ibG9nb19fdGl0bGUiPnN3YWdnZXI8L3NwYW4+PC9hPgogICAgCiAgICA8Zm9ybSBpZD0nYXBpX3NlbGVjdG9yJz4KICAgICAgPGlucHV0IGlkPSJpbnB1dF9iYXNlVXJsIiBuYW1lPSJiYXNlVXJsIiB0eXBlPSJoaWRkZW4iLz4KICAgICAgCiAgICAgICAgPGlucHV0IHR5cGU9J2hpZGRlbicgbmFtZT0nY3NyZm1pZGRsZXdhcmV0b2tlbicgdmFsdWU9J2ZmQ0YzeGZ6c05wZXpiTUVnYUZDUGh6Q1F5Z3hFQU9LRWxKdWYzN3VmS0FEV2pPNlpCYTRIWWdtT3RtbVlBS3onIC8+CiAgICAgICAgCiAgICAgICAgICA8ZGl2IGNsYXNzPSJpbnB1dCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgIAogICAgICAgICAgICAgIEhlbGxvLCBrYXBlCiAgICAgICAgICAgIAogICAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgICAKICAgICAgICAKICAgICAgCgogICAgICAKICAgICAgICAKICAgICAgICAgIDxkaXYgY2xhc3M9J2lucHV0Jz48YSBpZD0iYXV0aCIgY2xhc3M9ImhlYWRlcl9fYnRuIiBocmVmPSI/bmV4dD0vYXBpIiBkYXRhLXN3LXRyYW5zbGF0ZT5EamFuZ28gTG9nb3V0PC9hPjwvZGl2PgogICAgICAgIAogICAgICAKICAgICAgPGRpdiBpZD0nYXV0aF9jb250YWluZXInPjwvZGl2PgogICAgPC9mb3JtPgogIDwvZGl2Pgo8L2Rpdj4KCgo8ZGl2IGlkPSJtZXNzYWdlLWJhciIgY2xhc3M9InN3YWdnZXItdWktd3JhcCIgZGF0YS1zdy10cmFuc2xhdGU+Jm5ic3A7PC9kaXY+CjxkaXYgaWQ9InN3YWdnZXItdWktY29udGFpbmVyIiBjbGFzcz0ic3dhZ2dlci11aS13cmFwIj48L2Rpdj4KCjxzY3JpcHQgaWQ9ImRycy1zZXR0aW5ncyIgdHlwZT0iYXBwbGljYXRpb24vanNvbiI+CnsiYXBpc1NvcnRlciI6IG51bGwsICJkb2NFeHBhbnNpb24iOiBudWxsLCAianNvbkVkaXRvciI6IGZhbHNlLCAib3BlcmF0aW9uc1NvcnRlciI6IG51bGwsICJzaG93UmVxdWVzdEhlYWRlcnMiOiBmYWxzZSwgInN1cHBvcnRlZFN1Ym1pdE1ldGhvZHMiOiBbImdldCIsICJwb3N0IiwgInB1dCIsICJkZWxldGUiLCAicGF0Y2giXX0KPC9zY3JpcHQ+Cgo8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2luaXQuanMnIHR5cGU9J3RleHQvamF2YXNjcmlwdCc+PC9zY3JpcHQ+CgoKCjwvYm9keT4KPC9odG1sPgo=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Allow\": \"GET, HEAD, OPTIONS\", \"Vary\": \"Accept\"}" - } -}, -{ - "model": "silk.response", - "pk": "bb2e507a-dc21-4b91-bf85-36fb73ecaf5d", - "fields": { - "request": "1e096140-97c3-4d48-8a98-ccdd0fb556ac", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPkFkZCBhcHBsaWNhdGlvbiB8IERqYW5nbyBzaXRlIGFkbWluPC90aXRsZT4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvYmFzZS5jc3MiIC8+CjxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvYWRtaW4vY3NzL2Zvcm1zLmNzcyIgLz4KCgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYWRtaW4vanNpMThuLyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvY29yZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL2pxdWVyeS9qcXVlcnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2pxdWVyeS5pbml0LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hZG1pbi9SZWxhdGVkT2JqZWN0TG9va3Vwcy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvYWN0aW9ucy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdXJsaWZ5LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9wcmVwb3B1bGF0ZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL3hyZWdleHAveHJlZ2V4cC5qcyI+PC9zY3JpcHQ+Cgo8bWV0YSBuYW1lPSJyb2JvdHMiIGNvbnRlbnQ9Ik5PTkUsTk9BUkNISVZFIiAvPgo8L2hlYWQ+CgoKPGJvZHkgY2xhc3M9IiBhcHAtY29yZSBtb2RlbC1hcHBsaWNhdGlvbiBjaGFuZ2UtZm9ybSIKICBkYXRhLWFkbWluLXV0Yy1vZmZzZXQ9IjAiPgoKPCEtLSBDb250YWluZXIgLS0+CjxkaXYgaWQ9ImNvbnRhaW5lciI+CgogICAgCiAgICA8IS0tIEhlYWRlciAtLT4KICAgIDxkaXYgaWQ9ImhlYWRlciI+CiAgICAgICAgPGRpdiBpZD0iYnJhbmRpbmciPgogICAgICAgIAo8aDEgaWQ9InNpdGUtbmFtZSI+PGEgaHJlZj0iL2FkbWluLyI+RGphbmdvIGFkbWluaXN0cmF0aW9uPC9hPjwvaDE+CgogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIDxkaXYgaWQ9InVzZXItdG9vbHMiPgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIFdlbGNvbWUsCiAgICAgICAgICAgICAgICA8c3Ryb25nPmthcGU8L3N0cm9uZz4uCiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii8iPlZpZXcgc2l0ZTwvYT4gLwogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vcGFzc3dvcmRfY2hhbmdlLyI+Q2hhbmdlIHBhc3N3b3JkPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9sb2dvdXQvIj5Mb2cgb3V0PC9hPgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgICAgICAKICAgICAgICAKICAgICAgICAKICAgIDwvZGl2PgogICAgPCEtLSBFTkQgSGVhZGVyIC0tPgogICAgCjxkaXYgY2xhc3M9ImJyZWFkY3J1bWJzIj4KPGEgaHJlZj0iL2FkbWluLyI+SG9tZTwvYT4KJnJzYXF1bzsgPGEgaHJlZj0iL2FkbWluL2NvcmUvIj5Db3JlPC9hPgomcnNhcXVvOyA8YSBocmVmPSIvYWRtaW4vY29yZS9hcHBsaWNhdGlvbi8iPkFwcGxpY2F0aW9uczwvYT4KJnJzYXF1bzsgQWRkIGFwcGxpY2F0aW9uCjwvZGl2PgoKICAgIAoKICAgIAogICAgICAgIAogICAgCgogICAgPCEtLSBDb250ZW50IC0tPgogICAgPGRpdiBpZD0iY29udGVudCIgY2xhc3M9ImNvbE0iPgogICAgICAgIAogICAgICAgIDxoMT5BZGQgYXBwbGljYXRpb248L2gxPgogICAgICAgIDxkaXYgaWQ9ImNvbnRlbnQtbWFpbiI+CgoKCjxmb3JtIGVuY3R5cGU9Im11bHRpcGFydC9mb3JtLWRhdGEiIGFjdGlvbj0iIiBtZXRob2Q9InBvc3QiIGlkPSJhcHBsaWNhdGlvbl9mb3JtIiBub3ZhbGlkYXRlPjxpbnB1dCB0eXBlPSdoaWRkZW4nIG5hbWU9J2NzcmZtaWRkbGV3YXJldG9rZW4nIHZhbHVlPSczeWNHTHpzYnFweFNIV21VZ1JPYTdHVEE3SnNWS2hpU3NFanZYNWs2ZG1JaDQ0b21aaWpDWm5BazVFeUs0aGVIJyAvPgo8ZGl2PgoKCgoKCgoKICA8ZmllbGRzZXQgY2xhc3M9Im1vZHVsZSBhbGlnbmVkICI+CiAgICAKICAgIAogICAgCiAgICAgICAgPGRpdiBjbGFzcz0iZm9ybS1yb3cgZmllbGQtc3R1ZGVudF9ucG0iPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgY2xhc3M9InJlcXVpcmVkIiBmb3I9ImlkX3N0dWRlbnRfbnBtIj5TdHVkZW50IG5wbTo8L2xhYmVsPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIAo8ZGl2IGNsYXNzPSJyZWxhdGVkLXdpZGdldC13cmFwcGVyIj4KICAgIDxzZWxlY3QgaWQ9ImlkX3N0dWRlbnRfbnBtIiBuYW1lPSJzdHVkZW50X25wbSIgcmVxdWlyZWQ+CjxvcHRpb24gdmFsdWU9IiIgc2VsZWN0ZWQ9InNlbGVjdGVkIj4tLS0tLS0tLS08L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMSI+U3R1ZGVudCBvYmplY3Q8L29wdGlvbj4KPC9zZWxlY3Q+CiAgICAKICAgICAgICAKICAgICAgICA8YSBjbGFzcz0icmVsYXRlZC13aWRnZXQtd3JhcHBlci1saW5rIGNoYW5nZS1yZWxhdGVkIiBpZD0iY2hhbmdlX2lkX3N0dWRlbnRfbnBtIgogICAgICAgICAgICBkYXRhLWhyZWYtdGVtcGxhdGU9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvX19ma19fL2NoYW5nZS8/X3RvX2ZpZWxkPWlkJmFtcDtfcG9wdXA9MSIKICAgICAgICAgICAgdGl0bGU9IkNoYW5nZSBzZWxlY3RlZCBzdHVkZW50Ij4KICAgICAgICAgICAgPGltZyBzcmM9Ii9hc3NldHMvYWRtaW4vaW1nL2ljb24tY2hhbmdlbGluay5zdmciIGFsdD0iQ2hhbmdlIi8+CiAgICAgICAgPC9hPgogICAgICAgIAogICAgICAgIAogICAgICAgIDxhIGNsYXNzPSJyZWxhdGVkLXdpZGdldC13cmFwcGVyLWxpbmsgYWRkLXJlbGF0ZWQiIGlkPSJhZGRfaWRfc3R1ZGVudF9ucG0iCiAgICAgICAgICAgIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvYWRkLz9fdG9fZmllbGQ9aWQmYW1wO19wb3B1cD0xIgogICAgICAgICAgICB0aXRsZT0iQWRkIGFub3RoZXIgc3R1ZGVudCI+CiAgICAgICAgICAgIDxpbWcgc3JjPSIvYXNzZXRzL2FkbWluL2ltZy9pY29uLWFkZGxpbmsuc3ZnIiBhbHQ9IkFkZCIvPgogICAgICAgIDwvYT4KICAgICAgICAKICAgICAgICAKICAgIAo8L2Rpdj4KCiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPC9kaXY+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgCiAgICAgICAgPGRpdiBjbGFzcz0iZm9ybS1yb3cgZmllbGQtdmFjYW5jeV9pZCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXY+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxsYWJlbCBjbGFzcz0icmVxdWlyZWQiIGZvcj0iaWRfdmFjYW5jeV9pZCI+VmFjYW5jeSBpZDo8L2xhYmVsPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIAo8ZGl2IGNsYXNzPSJyZWxhdGVkLXdpZGdldC13cmFwcGVyIj4KICAgIDxzZWxlY3QgaWQ9ImlkX3ZhY2FuY3lfaWQiIG5hbWU9InZhY2FuY3lfaWQiIHJlcXVpcmVkPgo8b3B0aW9uIHZhbHVlPSIiIHNlbGVjdGVkPSJzZWxlY3RlZCI+LS0tLS0tLS0tPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjEiPlZhY2FuY3kgb2JqZWN0PC9vcHRpb24+Cjwvc2VsZWN0PgogICAgCiAgICAgICAgCiAgICAgICAgPGEgY2xhc3M9InJlbGF0ZWQtd2lkZ2V0LXdyYXBwZXItbGluayBjaGFuZ2UtcmVsYXRlZCIgaWQ9ImNoYW5nZV9pZF92YWNhbmN5X2lkIgogICAgICAgICAgICBkYXRhLWhyZWYtdGVtcGxhdGU9Ii9hZG1pbi9jb3JlL3ZhY2FuY3kvX19ma19fL2NoYW5nZS8/X3RvX2ZpZWxkPWlkJmFtcDtfcG9wdXA9MSIKICAgICAgICAgICAgdGl0bGU9IkNoYW5nZSBzZWxlY3RlZCB2YWNhbmN5Ij4KICAgICAgICAgICAgPGltZyBzcmM9Ii9hc3NldHMvYWRtaW4vaW1nL2ljb24tY2hhbmdlbGluay5zdmciIGFsdD0iQ2hhbmdlIi8+CiAgICAgICAgPC9hPgogICAgICAgIAogICAgICAgIAogICAgICAgIDxhIGNsYXNzPSJyZWxhdGVkLXdpZGdldC13cmFwcGVyLWxpbmsgYWRkLXJlbGF0ZWQiIGlkPSJhZGRfaWRfdmFjYW5jeV9pZCIKICAgICAgICAgICAgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS9hZGQvP190b19maWVsZD1pZCZhbXA7X3BvcHVwPTEiCiAgICAgICAgICAgIHRpdGxlPSJBZGQgYW5vdGhlciB2YWNhbmN5Ij4KICAgICAgICAgICAgPGltZyBzcmM9Ii9hc3NldHMvYWRtaW4vaW1nL2ljb24tYWRkbGluay5zdmciIGFsdD0iQWRkIi8+CiAgICAgICAgPC9hPgogICAgICAgIAogICAgICAgIAogICAgCjwvZGl2PgoKICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKPC9maWVsZHNldD4KCgoKCgoKCgoKCgoKCjxkaXYgY2xhc3M9InN1Ym1pdC1yb3ciPgo8aW5wdXQgdHlwZT0ic3VibWl0IiB2YWx1ZT0iU2F2ZSIgY2xhc3M9ImRlZmF1bHQiIG5hbWU9Il9zYXZlIiAvPgoKCjxpbnB1dCB0eXBlPSJzdWJtaXQiIHZhbHVlPSJTYXZlIGFuZCBhZGQgYW5vdGhlciIgbmFtZT0iX2FkZGFub3RoZXIiIC8+CjxpbnB1dCB0eXBlPSJzdWJtaXQiIHZhbHVlPSJTYXZlIGFuZCBjb250aW51ZSBlZGl0aW5nIiBuYW1lPSJfY29udGludWUiIC8+CjwvZGl2PgoKCgogICAgPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiCiAgICAgICAgICAgIGlkPSJkamFuZ28tYWRtaW4tZm9ybS1hZGQtY29uc3RhbnRzIgogICAgICAgICAgICBzcmM9Ii9hc3NldHMvYWRtaW4vanMvY2hhbmdlX2Zvcm0uanMiCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgZGF0YS1tb2RlbC1uYW1lPSJhcHBsaWNhdGlvbiIKICAgICAgICAgICAgPgogICAgPC9zY3JpcHQ+CgoKCgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIKICAgICAgICBpZD0iZGphbmdvLWFkbWluLXByZXBvcHVsYXRlZC1maWVsZHMtY29uc3RhbnRzIgogICAgICAgIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9wcmVwb3B1bGF0ZV9pbml0LmpzIgogICAgICAgIGRhdGEtcHJlcG9wdWxhdGVkLWZpZWxkcz0iW10iPgo8L3NjcmlwdD4KCgo8L2Rpdj4KPC9mb3JtPjwvZGl2PgoKICAgICAgICAKICAgICAgICA8YnIgY2xhc3M9ImNsZWFyIiAvPgogICAgPC9kaXY+CiAgICA8IS0tIEVORCBDb250ZW50IC0tPgoKICAgIDxkaXYgaWQ9ImZvb3RlciI+PC9kaXY+CjwvZGl2Pgo8IS0tIEVORCBDb250YWluZXIgLS0+Cgo8L2JvZHk+CjwvaHRtbD4K", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 15:23:44 GMT\", \"Expires\": \"Mon, 27 Mar 2017 15:23:44 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "bb480e84-979c-4153-8463-fd679098a5fa", - "fields": { - "request": "3aae6f5c-5e82-4d8a-889e-f09e4fa009fa", - "status_code": 500, - "raw_body": "QXR0cmlidXRlRXJyb3IgYXQgL2FwaS9zdHVkZW50cy8zL2Jvb2ttYXJrZWQtdmFjYW5jaWVzLwonZGljdCcgb2JqZWN0IGhhcyBubyBhdHRyaWJ1dGUgJ2lkJwoKUmVxdWVzdCBNZXRob2Q6IFBPU1QKUmVxdWVzdCBVUkw6IGh0dHA6Ly8xMjcuMC4wLjE6ODAwMC9hcGkvc3R1ZGVudHMvMy9ib29rbWFya2VkLXZhY2FuY2llcy8KRGphbmdvIFZlcnNpb246IDEuMTAuNQpQeXRob24gRXhlY3V0YWJsZTogQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXHB5dGhvbi5leGUKUHl0aG9uIFZlcnNpb246IDMuNi4wClB5dGhvbiBQYXRoOiBbJ0Q6XFxQUExBJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXHB5dGhvbjM2LnppcCcsICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyXFxETExzJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXGxpYicsICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXGxpYlxcc2l0ZS1wYWNrYWdlcyddClNlcnZlciB0aW1lOiBNb24sIDI3IE1hciAyMDE3IDE1OjUxOjIyICswMDAwCkluc3RhbGxlZCBBcHBsaWNhdGlvbnM6ClsnZGphbmdvLmNvbnRyaWIuYWRtaW4nLAogJ2RqYW5nby5jb250cmliLmF1dGgnLAogJ2RqYW5nby5jb250cmliLmNvbnRlbnR0eXBlcycsCiAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMnLAogJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzJywKICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcycsCiAnd2VicGFja19sb2FkZXInLAogJ2NvcmUnLAogJ3Jlc3RfZnJhbWV3b3JrJywKICdkamFuZ29fbm9zZScsCiAncmVzdF9mcmFtZXdvcmtfc3dhZ2dlcicsCiAnc2lsayddCkluc3RhbGxlZCBNaWRkbGV3YXJlOgpbJ2RqYW5nby5taWRkbGV3YXJlLnNlY3VyaXR5LlNlY3VyaXR5TWlkZGxld2FyZScsCiAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMubWlkZGxld2FyZS5TZXNzaW9uTWlkZGxld2FyZScsCiAnZGphbmdvLm1pZGRsZXdhcmUuY29tbW9uLkNvbW1vbk1pZGRsZXdhcmUnLAogJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5hdXRoLm1pZGRsZXdhcmUuQXV0aGVudGljYXRpb25NaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5tZXNzYWdlcy5taWRkbGV3YXJlLk1lc3NhZ2VNaWRkbGV3YXJlJywKICdkamFuZ28ubWlkZGxld2FyZS5jbGlja2phY2tpbmcuWEZyYW1lT3B0aW9uc01pZGRsZXdhcmUnLAogJ3NpbGsubWlkZGxld2FyZS5TaWxreU1pZGRsZXdhcmUnXQoKClRyYWNlYmFjazogIAoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXGRqYW5nb1xjb3JlXGhhbmRsZXJzXGV4Y2VwdGlvbi5weSIgaW4gaW5uZXIKICAzOS4gICAgICAgICAgICAgcmVzcG9uc2UgPSBnZXRfcmVzcG9uc2UocmVxdWVzdCkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cY29yZVxoYW5kbGVyc1xiYXNlLnB5IiBpbiBfZ2V0X3Jlc3BvbnNlCiAgMTg3LiAgICAgICAgICAgICAgICAgcmVzcG9uc2UgPSBzZWxmLnByb2Nlc3NfZXhjZXB0aW9uX2J5X21pZGRsZXdhcmUoZSwgcmVxdWVzdCkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cY29yZVxoYW5kbGVyc1xiYXNlLnB5IiBpbiBfZ2V0X3Jlc3BvbnNlCiAgMTg1LiAgICAgICAgICAgICAgICAgcmVzcG9uc2UgPSB3cmFwcGVkX2NhbGxiYWNrKHJlcXVlc3QsICpjYWxsYmFja19hcmdzLCAqKmNhbGxiYWNrX2t3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cdmlld3NcZGVjb3JhdG9yc1xjc3JmLnB5IiBpbiB3cmFwcGVkX3ZpZXcKICA1OC4gICAgICAgICByZXR1cm4gdmlld19mdW5jKCphcmdzLCAqKmt3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3c2V0cy5weSIgaW4gdmlldwogIDgzLiAgICAgICAgICAgICByZXR1cm4gc2VsZi5kaXNwYXRjaChyZXF1ZXN0LCAqYXJncywgKiprd2FyZ3MpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNccmVzdF9mcmFtZXdvcmtcdmlld3MucHkiIGluIGRpc3BhdGNoCiAgNDgzLiAgICAgICAgICAgICByZXNwb25zZSA9IHNlbGYuaGFuZGxlX2V4Y2VwdGlvbihleGMpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNccmVzdF9mcmFtZXdvcmtcdmlld3MucHkiIGluIGhhbmRsZV9leGNlcHRpb24KICA0NDMuICAgICAgICAgICAgIHNlbGYucmFpc2VfdW5jYXVnaHRfZXhjZXB0aW9uKGV4YykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3cy5weSIgaW4gZGlzcGF0Y2gKICA0ODAuICAgICAgICAgICAgIHJlc3BvbnNlID0gaGFuZGxlcihyZXF1ZXN0LCAqYXJncywgKiprd2FyZ3MpCgpGaWxlICJEOlxQUExBXGNvcmVcdmlld3NcYWNjb3VudHMucHkiIGluIGJvb2ttYXJrX3ZhY2FuY2llcwogIDMwLiAgICAgICAgIHZhY2FuY3kgPSBnZXRfb2JqZWN0X29yXzQwNChWYWNhbmN5Lm9iamVjdHMuYWxsKCksIHBrPXJlcXVlc3QuZGF0YS5pZCkKCkV4Y2VwdGlvbiBUeXBlOiBBdHRyaWJ1dGVFcnJvciBhdCAvYXBpL3N0dWRlbnRzLzMvYm9va21hcmtlZC12YWNhbmNpZXMvCkV4Y2VwdGlvbiBWYWx1ZTogJ2RpY3QnIG9iamVjdCBoYXMgbm8gYXR0cmlidXRlICdpZCcKUmVxdWVzdCBpbmZvcm1hdGlvbjoKVVNFUjoga2FwZQoKR0VUOiBObyBHRVQgZGF0YQoKUE9TVDogTm8gUE9TVCBkYXRhCgpGSUxFUzogTm8gRklMRVMgZGF0YQoKQ09PS0lFUzoKc2Vzc2lvbmlkID0gJ2JsdDg3N2c1ZmptdWN4eTNkZDV1eGNpemF2YjlvcG92Jwpjc3JmdG9rZW4gPSAnMUVFUDJTd0t0MUs5UWJXbkZQU3lXUElpYnRPN01BYVZxS0xFZW9vRmdZVnlkallQb2duME93cDI5b1VXNkE2SycKCk1FVEE6CkFMTFVTRVJTUFJPRklMRSA9ICdDOlxcUHJvZ3JhbURhdGEnCkFQUERBVEEgPSAnQzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmcnCkNPTU1PTlBST0dSQU1GSUxFUyA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcQ29tbW9uIEZpbGVzJwpDT01NT05QUk9HUkFNRklMRVMoWDg2KSA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcQ29tbW9uIEZpbGVzJwpDT01NT05QUk9HUkFNVzY0MzIgPSAnQzpcXFByb2dyYW0gRmlsZXNcXENvbW1vbiBGaWxlcycKQ09NUFVURVJOQU1FID0gJ0ZBUkhBTicKQ09NU1BFQyA9ICdDOlxcV0lORE9XU1xcc3lzdGVtMzJcXGNtZC5leGUnCkNPTlRFTlRfTEVOR1RIID0gJzEyOCcKQ09OVEVOVF9UWVBFID0gJ2FwcGxpY2F0aW9uL2pzb24nCkNTUkZfQ09PS0lFID0gJzFFRVAyU3dLdDFLOVFiV25GUFN5V1BJaWJ0TzdNQWFWcUtMRWVvb0ZnWVZ5ZGpZUG9nbjBPd3AyOW9VVzZBNksnCkRKQU5HT19TRVRUSU5HU19NT0RVTEUgPSAna2FwZS5zZXR0aW5ncycKRlBTX0JST1dTRVJfQVBQX1BST0ZJTEVfU1RSSU5HID0gJ0ludGVybmV0IEV4cGxvcmVyJwpGUFNfQlJPV1NFUl9VU0VSX1BST0ZJTEVfU1RSSU5HID0gJ0RlZmF1bHQnCkZQX05PX0hPU1RfQ0hFQ0sgPSAnTk8nCkdBVEVXQVlfSU5URVJGQUNFID0gJ0NHSS8xLjEnCkhPTUVEUklWRSA9ICdDOicKSE9NRVBBVEggPSAnXFxVc2Vyc1xcZmFyaGFfMDAwJwpIVFRQX0FDQ0VQVCA9ICdhcHBsaWNhdGlvbi9qc29uJwpIVFRQX0FDQ0VQVF9FTkNPRElORyA9ICdnemlwLCBkZWZsYXRlLCBicicKSFRUUF9BQ0NFUFRfTEFOR1VBR0UgPSAnaWQtSUQsaWQ7cT0wLjgsZW4tVVM7cT0wLjYsZW47cT0wLjQnCkhUVFBfQ09OTkVDVElPTiA9ICdrZWVwLWFsaXZlJwpIVFRQX0NPT0tJRSA9ICdzZXNzaW9uaWQ9Ymx0ODc3ZzVmam11Y3h5M2RkNXV4Y2l6YXZiOW9wb3Y7IGNzcmZ0b2tlbj0xRUVQMlN3S3QxSzlRYlduRlBTeVdQSWlidE83TUFhVnFLTEVlb29GZ1lWeWRqWVBvZ24wT3dwMjlvVVc2QTZLJwpIVFRQX0hPU1QgPSAnMTI3LjAuMC4xOjgwMDAnCkhUVFBfT1JJR0lOID0gJ2h0dHA6Ly8xMjcuMC4wLjE6ODAwMCcKSFRUUF9SRUZFUkVSID0gJ2h0dHA6Ly8xMjcuMC4wLjE6ODAwMC9hcGknCkhUVFBfVVNFUl9BR0VOVCA9ICdNb3ppbGxhLzUuMCAoV2luZG93cyBOVCAxMC4wOyBXT1c2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzU2LjAuMjkyNC44NyBTYWZhcmkvNTM3LjM2JwpIVFRQX1hfQ1NSRlRPS0VOID0gJ2pxOTFCdUY1ZTVSN1NqTUZSYzJUTmZ2V1U4bERPNnd5SXdnUU4weDAxMjJ3ZnJPN0FEeGxGV2NHUzNyczg2c24nCkxPQ0FMQVBQREFUQSA9ICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWwnCkxPR09OU0VSVkVSID0gJ1xcXFxGQVJIQU4nCk5VTUJFUl9PRl9QUk9DRVNTT1JTID0gJzInCk9ORURSSVZFID0gJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxPbmVEcml2ZScKT1MgPSAnV2luZG93c19OVCcKUEFUSCA9ICdDOlxcUHJvZ3JhbURhdGFcXE9yYWNsZVxcSmF2YVxcamF2YXBhdGg7QzpcXFByb2dyYW0gRmlsZXNcXEhhc2tlbGxcXGJpbjtDOlxcUHJvZ3JhbSBGaWxlc1xcSGFza2VsbCBQbGF0Zm9ybVxcNy4xMC4zXFxsaWJcXGV4dHJhbGlic1xcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxIYXNrZWxsIFBsYXRmb3JtXFw3LjEwLjNcXGJpbjtDOlxcV0lORE9XU1xcc3lzdGVtMzI7QzpcXFdJTkRPV1M7QzpcXFdJTkRPV1NcXFN5c3RlbTMyXFxXYmVtO0M6XFxXSU5ET1dTXFxTeXN0ZW0zMlxcV2luZG93c1Bvd2VyU2hlbGxcXHYxLjBcXDtDOlxcUHJvZ3JhbSBGaWxlc1xcSGFza2VsbCBQbGF0Zm9ybVxcNy4xMC4zXFxtaW5nd1xcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxKYXZhXFxqZGsxLjguMF83N1xcYmluO0M6XFxjeWd3aW42NFxcYmluOyVsb2NhbGFwcGRhdGElXFxNaWNyb3NvZnRcXFdpbmRvd3NBcHBzO0Q6XFxYQU1QUFxccGhwO0M6XFxQcm9ncmFtIEZpbGVzXFxHaXRcXGNtZDtDOlxceGFtcHBcXHBocDtDOlxcUHJvZ3JhbURhdGFcXENvbXBvc2VyU2V0dXBcXGJpbjtDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcbm9kZWpzXFw7QzpcXFByb2dyYW0gRmlsZXNcXFBvc3RncmVTUUxcXDkuNlxcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxNQVRMQUJcXFIyMDE3YVxcYmluO0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXFNjcmlwdHNcXDtDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyXFw7QzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmdcXGNhYmFsXFxiaW47RDpcXFhBTVBQXFxwaHA7QzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmdcXENvbXBvc2VyXFx2ZW5kb3JcXGJpbjtDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXE1pY3Jvc29mdFxcV2luZG93c0FwcHM7QzpcXHB5dGhvbi0zLjYuMCcKUEFUSEVYVCA9ICcuQ09NOy5FWEU7LkJBVDsuQ01EOy5WQlM7LlZCRTsuSlM7LkpTRTsuV1NGOy5XU0g7Lk1TQycKUEFUSF9JTkZPID0gJy9hcGkvc3R1ZGVudHMvMy9ib29rbWFya2VkLXZhY2FuY2llcy8nClBST0NFU1NPUl9BUkNISVRFQ1RVUkUgPSAneDg2JwpQUk9DRVNTT1JfQVJDSElURVc2NDMyID0gJ0FNRDY0JwpQUk9DRVNTT1JfSURFTlRJRklFUiA9ICdJbnRlbDY0IEZhbWlseSA2IE1vZGVsIDU4IFN0ZXBwaW5nIDksIEdlbnVpbmVJbnRlbCcKUFJPQ0VTU09SX0xFVkVMID0gJzYnClBST0NFU1NPUl9SRVZJU0lPTiA9ICczYTA5JwpQUk9HUkFNREFUQSA9ICdDOlxcUHJvZ3JhbURhdGEnClBST0dSQU1GSUxFUyA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KScKUFJPR1JBTUZJTEVTKFg4NikgPSAnQzpcXFByb2dyYW0gRmlsZXMgKHg4NiknClBST0dSQU1XNjQzMiA9ICdDOlxcUHJvZ3JhbSBGaWxlcycKUFJPTVBUID0gJyRQJEcnClBTTU9EVUxFUEFUSCA9ICdDOlxcV0lORE9XU1xcc3lzdGVtMzJcXFdpbmRvd3NQb3dlclNoZWxsXFx2MS4wXFxNb2R1bGVzXFwnClBVQkxJQyA9ICdDOlxcVXNlcnNcXFB1YmxpYycKUVVFUllfU1RSSU5HID0gJycKUkVNT1RFX0FERFIgPSAnMTI3LjAuMC4xJwpSRU1PVEVfSE9TVCA9ICcnClJFUVVFU1RfTUVUSE9EID0gJ1BPU1QnClJVTl9NQUlOID0gJ3RydWUnClNDUklQVF9OQU1FID0gJycKU0VSVkVSX05BTUUgPSAnRmFyaGFuJwpTRVJWRVJfUE9SVCA9ICc4MDAwJwpTRVJWRVJfUFJPVE9DT0wgPSAnSFRUUC8xLjEnClNFUlZFUl9TT0ZUV0FSRSA9ICdXU0dJU2VydmVyLzAuMicKU0VTU0lPTk5BTUUgPSAnQ29uc29sZScKU1lTVEVNRFJJVkUgPSAnQzonClNZU1RFTVJPT1QgPSAnQzpcXFdJTkRPV1MnClRFTVAgPSAnQzpcXFVzZXJzXFxGQVJIQV9+MVxcQXBwRGF0YVxcTG9jYWxcXFRlbXAnClRNUCA9ICdDOlxcVXNlcnNcXEZBUkhBX34xXFxBcHBEYXRhXFxMb2NhbFxcVGVtcCcKVVNFUkRPTUFJTiA9ICdGYXJoYW4nClVTRVJET01BSU5fUk9BTUlOR1BST0ZJTEUgPSAnRmFyaGFuJwpVU0VSTkFNRSA9ICdGYXJoYW4gRmFyYXNkYWsnClVTRVJQUk9GSUxFID0gJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwJwpWQk9YX01TSV9JTlNUQUxMX1BBVEggPSAnQzpcXFByb2dyYW0gRmlsZXNcXE9yYWNsZVxcVmlydHVhbEJveFxcJwpXSU5ESVIgPSAnQzpcXFdJTkRPV1MnCndzZ2kuZXJyb3JzID0gPF9pby5UZXh0SU9XcmFwcGVyIG5hbWU9JzxzdGRlcnI+JyBtb2RlPSd3JyBlbmNvZGluZz0ndXRmLTgnPgp3c2dpLmZpbGVfd3JhcHBlciA9ICcnCndzZ2kuaW5wdXQgPSA8X2lvLkJ1ZmZlcmVkUmVhZGVyIG5hbWU9MTI4OD4Kd3NnaS5tdWx0aXByb2Nlc3MgPSBGYWxzZQp3c2dpLm11bHRpdGhyZWFkID0gVHJ1ZQp3c2dpLnJ1bl9vbmNlID0gRmFsc2UKd3NnaS51cmxfc2NoZW1lID0gJ2h0dHAnCndzZ2kudmVyc2lvbiA9IAoKU2V0dGluZ3M6ClVzaW5nIHNldHRpbmdzIG1vZHVsZSBrYXBlLnNldHRpbmdzCkFCU09MVVRFX1VSTF9PVkVSUklERVMgPSB7fQpBRE1JTlMgPSBbXQpBTExPV0VEX0hPU1RTID0gWydib3QucmVjcnVpdC5pZCcsICcxMDQuMjM2Ljc2LjE2MScsICdsb2NhbGhvc3QnLCAnMTI3LjAuMC4xJ10KQVBQRU5EX1NMQVNIID0gVHJ1ZQpBVVRIRU5USUNBVElPTl9CQUNLRU5EUyA9IFsnZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQnXQpBVVRIX1BBU1NXT1JEX1ZBTElEQVRPUlMgPSAnKioqKioqKioqKioqKioqKioqKionCkFVVEhfVVNFUl9NT0RFTCA9ICdhdXRoLlVzZXInCkJBU0VfRElSID0gJ0Q6XFxQUExBJwpDQUNIRVMgPSB7J2RlZmF1bHQnOiB7J0JBQ0tFTkQnOiAnZGphbmdvLmNvcmUuY2FjaGUuYmFja2VuZHMubG9jbWVtLkxvY01lbUNhY2hlJ319CkNBQ0hFX01JRERMRVdBUkVfQUxJQVMgPSAnZGVmYXVsdCcKQ0FDSEVfTUlERExFV0FSRV9LRVlfUFJFRklYID0gJyoqKioqKioqKioqKioqKioqKioqJwpDQUNIRV9NSURETEVXQVJFX1NFQ09ORFMgPSA2MDAKQ1NSRl9DT09LSUVfQUdFID0gMzE0NDk2MDAKQ1NSRl9DT09LSUVfRE9NQUlOID0gTm9uZQpDU1JGX0NPT0tJRV9IVFRQT05MWSA9IEZhbHNlCkNTUkZfQ09PS0lFX05BTUUgPSAnY3NyZnRva2VuJwpDU1JGX0NPT0tJRV9QQVRIID0gJy8nCkNTUkZfQ09PS0lFX1NFQ1VSRSA9IEZhbHNlCkNTUkZfRkFJTFVSRV9WSUVXID0gJ2RqYW5nby52aWV3cy5jc3JmLmNzcmZfZmFpbHVyZScKQ1NSRl9IRUFERVJfTkFNRSA9ICdIVFRQX1hfQ1NSRlRPS0VOJwpDU1JGX1RSVVNURURfT1JJR0lOUyA9IFtdCkRBVEFCQVNFUyA9IHsnZGVmYXVsdCc6IHsnRU5HSU5FJzogJ2RqYW5nby5kYi5iYWNrZW5kcy5wb3N0Z3Jlc3FsX3BzeWNvcGcyJywgJ05BTUUnOiAna2FwZScsICdVU0VSJzogJ2thcGUnLCAnUEFTU1dPUkQnOiAnKioqKioqKioqKioqKioqKioqKionLCAnSE9TVCc6ICdsb2NhbGhvc3QnLCAnUE9SVCc6ICcnLCAnQVRPTUlDX1JFUVVFU1RTJzogRmFsc2UsICdBVVRPQ09NTUlUJzogVHJ1ZSwgJ0NPTk5fTUFYX0FHRSc6IDAsICdPUFRJT05TJzoge30sICdUSU1FX1pPTkUnOiBOb25lLCAnVEVTVCc6IHsnQ0hBUlNFVCc6IE5vbmUsICdDT0xMQVRJT04nOiBOb25lLCAnTkFNRSc6IE5vbmUsICdNSVJST1InOiBOb25lfX19CkRBVEFCQVNFX1JPVVRFUlMgPSBbXQpEQVRBX1VQTE9BRF9NQVhfTUVNT1JZX1NJWkUgPSAyNjIxNDQwCkRBVEFfVVBMT0FEX01BWF9OVU1CRVJfRklFTERTID0gMTAwMApEQVRFVElNRV9GT1JNQVQgPSAnTiBqLCBZLCBQJwpEQVRFVElNRV9JTlBVVF9GT1JNQVRTID0gWyclWS0lbS0lZCAlSDolTTolUycsICclWS0lbS0lZCAlSDolTTolUy4lZicsICclWS0lbS0lZCAlSDolTScsICclWS0lbS0lZCcsICclbS8lZC8lWSAlSDolTTolUycsICclbS8lZC8lWSAlSDolTTolUy4lZicsICclbS8lZC8lWSAlSDolTScsICclbS8lZC8lWScsICclbS8lZC8leSAlSDolTTolUycsICclbS8lZC8leSAlSDolTTolUy4lZicsICclbS8lZC8leSAlSDolTScsICclbS8lZC8leSddCkRBVEVfRk9STUFUID0gJ04gaiwgWScKREFURV9JTlBVVF9GT1JNQVRTID0gWyclWS0lbS0lZCcsICclbS8lZC8lWScsICclbS8lZC8leScsICclYiAlZCAlWScsICclYiAlZCwgJVknLCAnJWQgJWIgJVknLCAnJWQgJWIsICVZJywgJyVCICVkICVZJywgJyVCICVkLCAlWScsICclZCAlQiAlWScsICclZCAlQiwgJVknXQpERUJVRyA9IFRydWUKREVCVUdfUFJPUEFHQVRFX0VYQ0VQVElPTlMgPSBGYWxzZQpERUNJTUFMX1NFUEFSQVRPUiA9ICcuJwpERUZBVUxUX0NIQVJTRVQgPSAndXRmLTgnCkRFRkFVTFRfQ09OVEVOVF9UWVBFID0gJ3RleHQvaHRtbCcKREVGQVVMVF9FWENFUFRJT05fUkVQT1JURVJfRklMVEVSID0gJ2RqYW5nby52aWV3cy5kZWJ1Zy5TYWZlRXhjZXB0aW9uUmVwb3J0ZXJGaWx0ZXInCkRFRkFVTFRfRklMRV9TVE9SQUdFID0gJ2RqYW5nby5jb3JlLmZpbGVzLnN0b3JhZ2UuRmlsZVN5c3RlbVN0b3JhZ2UnCkRFRkFVTFRfRlJPTV9FTUFJTCA9ICd3ZWJtYXN0ZXJAbG9jYWxob3N0JwpERUZBVUxUX0lOREVYX1RBQkxFU1BBQ0UgPSAnJwpERUZBVUxUX1RBQkxFU1BBQ0UgPSAnJwpESVNBTExPV0VEX1VTRVJfQUdFTlRTID0gW10KRU1BSUxfQkFDS0VORCA9ICdkamFuZ28uY29yZS5tYWlsLmJhY2tlbmRzLnNtdHAuRW1haWxCYWNrZW5kJwpFTUFJTF9IT1NUID0gJ2xvY2FsaG9zdCcKRU1BSUxfSE9TVF9QQVNTV09SRCA9ICcqKioqKioqKioqKioqKioqKioqKicKRU1BSUxfSE9TVF9VU0VSID0gJycKRU1BSUxfUE9SVCA9IDI1CkVNQUlMX1NTTF9DRVJURklMRSA9IE5vbmUKRU1BSUxfU1NMX0tFWUZJTEUgPSAnKioqKioqKioqKioqKioqKioqKionCkVNQUlMX1NVQkpFQ1RfUFJFRklYID0gJ1tEamFuZ29dICcKRU1BSUxfVElNRU9VVCA9IE5vbmUKRU1BSUxfVVNFX1NTTCA9IEZhbHNlCkVNQUlMX1VTRV9UTFMgPSBGYWxzZQpGSUxFX0NIQVJTRVQgPSAndXRmLTgnCkZJTEVfVVBMT0FEX0RJUkVDVE9SWV9QRVJNSVNTSU9OUyA9IE5vbmUKRklMRV9VUExPQURfSEFORExFUlMgPSBbJ2RqYW5nby5jb3JlLmZpbGVzLnVwbG9hZGhhbmRsZXIuTWVtb3J5RmlsZVVwbG9hZEhhbmRsZXInLCAnZGphbmdvLmNvcmUuZmlsZXMudXBsb2FkaGFuZGxlci5UZW1wb3JhcnlGaWxlVXBsb2FkSGFuZGxlciddCkZJTEVfVVBMT0FEX01BWF9NRU1PUllfU0laRSA9IDI2MjE0NDAKRklMRV9VUExPQURfUEVSTUlTU0lPTlMgPSBOb25lCkZJTEVfVVBMT0FEX1RFTVBfRElSID0gTm9uZQpGSVJTVF9EQVlfT0ZfV0VFSyA9IDAKRklYVFVSRV9ESVJTID0gW10KRk9SQ0VfU0NSSVBUX05BTUUgPSBOb25lCkZPUk1BVF9NT0RVTEVfUEFUSCA9IE5vbmUKR1pJUF9DT05URU5UX1RZUEVTID0gCklHTk9SQUJMRV80MDRfVVJMUyA9IFtdCklOU1RBTExFRF9BUFBTID0gWydkamFuZ28uY29udHJpYi5hZG1pbicsICdkamFuZ28uY29udHJpYi5hdXRoJywgJ2RqYW5nby5jb250cmliLmNvbnRlbnR0eXBlcycsICdkamFuZ28uY29udHJpYi5zZXNzaW9ucycsICdkamFuZ28uY29udHJpYi5tZXNzYWdlcycsICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcycsICd3ZWJwYWNrX2xvYWRlcicsICdjb3JlJywgJ3Jlc3RfZnJhbWV3b3JrJywgJ2RqYW5nb19ub3NlJywgJ3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXInLCAnc2lsayddCklOVEVSTkFMX0lQUyA9IFtdCkxBTkdVQUdFUyA9IFsoJ2FmJywgJ0FmcmlrYWFucycpLCAoJ2FyJywgJ0FyYWJpYycpLCAoJ2FzdCcsICdBc3R1cmlhbicpLCAoJ2F6JywgJ0F6ZXJiYWlqYW5pJyksICgnYmcnLCAnQnVsZ2FyaWFuJyksICgnYmUnLCAnQmVsYXJ1c2lhbicpLCAoJ2JuJywgJ0JlbmdhbGknKSwgKCdicicsICdCcmV0b24nKSwgKCdicycsICdCb3NuaWFuJyksICgnY2EnLCAnQ2F0YWxhbicpLCAoJ2NzJywgJ0N6ZWNoJyksICgnY3knLCAnV2Vsc2gnKSwgKCdkYScsICdEYW5pc2gnKSwgKCdkZScsICdHZXJtYW4nKSwgKCdkc2InLCAnTG93ZXIgU29yYmlhbicpLCAoJ2VsJywgJ0dyZWVrJyksICgnZW4nLCAnRW5nbGlzaCcpLCAoJ2VuLWF1JywgJ0F1c3RyYWxpYW4gRW5nbGlzaCcpLCAoJ2VuLWdiJywgJ0JyaXRpc2ggRW5nbGlzaCcpLCAoJ2VvJywgJ0VzcGVyYW50bycpLCAoJ2VzJywgJ1NwYW5pc2gnKSwgKCdlcy1hcicsICdBcmdlbnRpbmlhbiBTcGFuaXNoJyksICgnZXMtY28nLCAnQ29sb21iaWFuIFNwYW5pc2gnKSwgKCdlcy1teCcsICdNZXhpY2FuIFNwYW5pc2gnKSwgKCdlcy1uaScsICdOaWNhcmFndWFuIFNwYW5pc2gnKSwgKCdlcy12ZScsICdWZW5lenVlbGFuIFNwYW5pc2gnKSwgKCdldCcsICdFc3RvbmlhbicpLCAoJ2V1JywgJ0Jhc3F1ZScpLCAoJ2ZhJywgJ1BlcnNpYW4nKSwgKCdmaScsICdGaW5uaXNoJyksICgnZnInLCAnRnJlbmNoJyksICgnZnknLCAnRnJpc2lhbicpLCAoJ2dhJywgJ0lyaXNoJyksICgnZ2QnLCAnU2NvdHRpc2ggR2FlbGljJyksICgnZ2wnLCAnR2FsaWNpYW4nKSwgKCdoZScsICdIZWJyZXcnKSwgKCdoaScsICdIaW5kaScpLCAoJ2hyJywgJ0Nyb2F0aWFuJyksICgnaHNiJywgJ1VwcGVyIFNvcmJpYW4nKSwgKCdodScsICdIdW5nYXJpYW4nKSwgKCdpYScsICdJbnRlcmxpbmd1YScpLCAoJ2lkJywgJ0luZG9uZXNpYW4nKSwgKCdpbycsICdJZG8nKSwgKCdpcycsICdJY2VsYW5kaWMnKSwgKCdpdCcsICdJdGFsaWFuJyksICgnamEnLCAnSmFwYW5lc2UnKSwgKCdrYScsICdHZW9yZ2lhbicpLCAoJ2trJywgJ0themFraCcpLCAoJ2ttJywgJ0tobWVyJyksICgna24nLCAnS2FubmFkYScpLCAoJ2tvJywgJ0tvcmVhbicpLCAoJ2xiJywgJ0x1eGVtYm91cmdpc2gnKSwgKCdsdCcsICdMaXRodWFuaWFuJyksICgnbHYnLCAnTGF0dmlhbicpLCAoJ21rJywgJ01hY2Vkb25pYW4nKSwgKCdtbCcsICdNYWxheWFsYW0nKSwgKCdtbicsICdNb25nb2xpYW4nKSwgKCdtcicsICdNYXJhdGhpJyksICgnbXknLCAnQnVybWVzZScpLCAoJ25iJywgJ05vcndlZ2lhbiBCb2ttw6VsJyksICgnbmUnLCAnTmVwYWxpJyksICgnbmwnLCAnRHV0Y2gnKSwgKCdubicsICdOb3J3ZWdpYW4gTnlub3JzaycpLCAoJ29zJywgJ09zc2V0aWMnKSwgKCdwYScsICdQdW5qYWJpJyksICgncGwnLCAnUG9saXNoJyksICgncHQnLCAnUG9ydHVndWVzZScpLCAoJ3B0LWJyJywgJ0JyYXppbGlhbiBQb3J0dWd1ZXNlJyksICgncm8nLCAnUm9tYW5pYW4nKSwgKCdydScsICdSdXNzaWFuJyksICgnc2snLCAnU2xvdmFrJyksICgnc2wnLCAnU2xvdmVuaWFuJyksICgnc3EnLCAnQWxiYW5pYW4nKSwgKCdzcicsICdTZXJiaWFuJyksICgnc3ItbGF0bicsICdTZXJiaWFuIExhdGluJyksICgnc3YnLCAnU3dlZGlzaCcpLCAoJ3N3JywgJ1N3YWhpbGknKSwgKCd0YScsICdUYW1pbCcpLCAoJ3RlJywgJ1RlbHVndScpLCAoJ3RoJywgJ1RoYWknKSwgKCd0cicsICdUdXJraXNoJyksICgndHQnLCAnVGF0YXInKSwgKCd1ZG0nLCAnVWRtdXJ0JyksICgndWsnLCAnVWtyYWluaWFuJyksICgndXInLCAnVXJkdScpLCAoJ3ZpJywgJ1ZpZXRuYW1lc2UnKSwgKCd6aC1oYW5zJywgJ1NpbXBsaWZpZWQgQ2hpbmVzZScpLCAoJ3poLWhhbnQnLCAnVHJhZGl0aW9uYWwgQ2hpbmVzZScpXQpMQU5HVUFHRVNfQklESSA9IFsnaGUnLCAnYXInLCAnZmEnLCAndXInXQpMQU5HVUFHRV9DT0RFID0gJ2VuLXVzJwpMQU5HVUFHRV9DT09LSUVfQUdFID0gTm9uZQpMQU5HVUFHRV9DT09LSUVfRE9NQUlOID0gTm9uZQpMQU5HVUFHRV9DT09LSUVfTkFNRSA9ICdkamFuZ29fbGFuZ3VhZ2UnCkxBTkdVQUdFX0NPT0tJRV9QQVRIID0gJy8nCkxPQ0FMRV9QQVRIUyA9IFtdCkxPR0dJTkcgPSB7fQpMT0dHSU5HX0NPTkZJRyA9ICdsb2dnaW5nLmNvbmZpZy5kaWN0Q29uZmlnJwpMT0dJTl9SRURJUkVDVF9VUkwgPSAnL2FjY291bnRzL3Byb2ZpbGUvJwpMT0dJTl9VUkwgPSAnL2FjY291bnRzL2xvZ2luLycKTE9HT1VUX1JFRElSRUNUX1VSTCA9IE5vbmUKTUFOQUdFUlMgPSBbXQpNRURJQV9ST09UID0gJy9ob21lL2ZpbGVzJwpNRURJQV9VUkwgPSAnL2ZpbGVzLycKTUVTU0FHRV9TVE9SQUdFID0gJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzLnN0b3JhZ2UuZmFsbGJhY2suRmFsbGJhY2tTdG9yYWdlJwpNSURETEVXQVJFID0gWydkamFuZ28ubWlkZGxld2FyZS5zZWN1cml0eS5TZWN1cml0eU1pZGRsZXdhcmUnLCAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMubWlkZGxld2FyZS5TZXNzaW9uTWlkZGxld2FyZScsICdkamFuZ28ubWlkZGxld2FyZS5jb21tb24uQ29tbW9uTWlkZGxld2FyZScsICdkamFuZ28ubWlkZGxld2FyZS5jc3JmLkNzcmZWaWV3TWlkZGxld2FyZScsICdkamFuZ28uY29udHJpYi5hdXRoLm1pZGRsZXdhcmUuQXV0aGVudGljYXRpb25NaWRkbGV3YXJlJywgJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzLm1pZGRsZXdhcmUuTWVzc2FnZU1pZGRsZXdhcmUnLCAnZGphbmdvLm1pZGRsZXdhcmUuY2xpY2tqYWNraW5nLlhGcmFtZU9wdGlvbnNNaWRkbGV3YXJlJywgJ3NpbGsubWlkZGxld2FyZS5TaWxreU1pZGRsZXdhcmUnXQpNSURETEVXQVJFX0NMQVNTRVMgPSBbJ2RqYW5nby5taWRkbGV3YXJlLmNvbW1vbi5Db21tb25NaWRkbGV3YXJlJywgJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJ10KTUlHUkFUSU9OX01PRFVMRVMgPSB7fQpNT05USF9EQVlfRk9STUFUID0gJ0YgaicKTk9TRV9BUkdTID0gWyctLXdpdGgtY292ZXJhZ2UnLCAnLS1jb3Zlci1wYWNrYWdlPWNvcmUudmlld3MnLCAnLS1jb3Zlci1odG1sLWRpcj10ZXN0L2JhY2tlbmQnLCAnLS1jb3Zlci1odG1sJ10KTlVNQkVSX0dST1VQSU5HID0gMApQQVNTV09SRF9IQVNIRVJTID0gJyoqKioqKioqKioqKioqKioqKioqJwpQQVNTV09SRF9SRVNFVF9USU1FT1VUX0RBWVMgPSAnKioqKioqKioqKioqKioqKioqKionClBSRVBFTkRfV1dXID0gRmFsc2UKUkVTVF9GUkFNRVdPUksgPSB7J0RFRkFVTFRfUEVSTUlTU0lPTl9DTEFTU0VTJzogWydyZXN0X2ZyYW1ld29yay5wZXJtaXNzaW9ucy5EamFuZ29Nb2RlbFBlcm1pc3Npb25zT3JBbm9uUmVhZE9ubHknXX0KUk9PVF9VUkxDT05GID0gJ2thcGUudXJscycKUlVOTklOR19ERVZTRVJWRVIgPSBUcnVlClNFQ1JFVF9LRVkgPSAnKioqKioqKioqKioqKioqKioqKionClNFQ1VSRV9CUk9XU0VSX1hTU19GSUxURVIgPSBGYWxzZQpTRUNVUkVfQ09OVEVOVF9UWVBFX05PU05JRkYgPSBGYWxzZQpTRUNVUkVfSFNUU19JTkNMVURFX1NVQkRPTUFJTlMgPSBGYWxzZQpTRUNVUkVfSFNUU19TRUNPTkRTID0gMApTRUNVUkVfUFJPWFlfU1NMX0hFQURFUiA9IE5vbmUKU0VDVVJFX1JFRElSRUNUX0VYRU1QVCA9IFtdClNFQ1VSRV9TU0xfSE9TVCA9IE5vbmUKU0VDVVJFX1NTTF9SRURJUkVDVCA9IEZhbHNlClNFUlZFUl9FTUFJTCA9ICdyb290QGxvY2FsaG9zdCcKU0VTU0lPTl9DQUNIRV9BTElBUyA9ICdkZWZhdWx0JwpTRVNTSU9OX0NPT0tJRV9BR0UgPSAxMjA5NjAwClNFU1NJT05fQ09PS0lFX0RPTUFJTiA9IE5vbmUKU0VTU0lPTl9DT09LSUVfSFRUUE9OTFkgPSBGYWxzZQpTRVNTSU9OX0NPT0tJRV9OQU1FID0gJ3Nlc3Npb25pZCcKU0VTU0lPTl9DT09LSUVfUEFUSCA9ICcvJwpTRVNTSU9OX0NPT0tJRV9TRUNVUkUgPSBGYWxzZQpTRVNTSU9OX0VOR0lORSA9ICdkamFuZ28uY29udHJpYi5zZXNzaW9ucy5iYWNrZW5kcy5kYicKU0VTU0lPTl9FWFBJUkVfQVRfQlJPV1NFUl9DTE9TRSA9IEZhbHNlClNFU1NJT05fRklMRV9QQVRIID0gTm9uZQpTRVNTSU9OX1NBVkVfRVZFUllfUkVRVUVTVCA9IEZhbHNlClNFU1NJT05fU0VSSUFMSVpFUiA9ICdkamFuZ28uY29udHJpYi5zZXNzaW9ucy5zZXJpYWxpemVycy5KU09OU2VyaWFsaXplcicKU0VUVElOR1NfTU9EVUxFID0gJ2thcGUuc2V0dGluZ3MnClNIT1JUX0RBVEVUSU1FX0ZPUk1BVCA9ICdtL2QvWSBQJwpTSE9SVF9EQVRFX0ZPUk1BVCA9ICdtL2QvWScKU0lHTklOR19CQUNLRU5EID0gJ2RqYW5nby5jb3JlLnNpZ25pbmcuVGltZXN0YW1wU2lnbmVyJwpTSUxFTkNFRF9TWVNURU1fQ0hFQ0tTID0gW10KU1RBVElDRklMRVNfRElSUyA9ICdEOlxcUFBMQVxcYXNzZXRzJwpTVEFUSUNGSUxFU19GSU5ERVJTID0gWydkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcy5maW5kZXJzLkZpbGVTeXN0ZW1GaW5kZXInLCAnZGphbmdvLmNvbnRyaWIuc3RhdGljZmlsZXMuZmluZGVycy5BcHBEaXJlY3Rvcmllc0ZpbmRlciddClNUQVRJQ0ZJTEVTX1NUT1JBR0UgPSAnZGphbmdvLmNvbnRyaWIuc3RhdGljZmlsZXMuc3RvcmFnZS5TdGF0aWNGaWxlc1N0b3JhZ2UnClNUQVRJQ19ST09UID0gJy9ob21lL2Fzc2V0cycKU1RBVElDX1VSTCA9ICcvYXNzZXRzLycKVEVNUExBVEVTID0gW3snQkFDS0VORCc6ICdkamFuZ28udGVtcGxhdGUuYmFja2VuZHMuZGphbmdvLkRqYW5nb1RlbXBsYXRlcycsICdESVJTJzogW10sICdBUFBfRElSUyc6IFRydWUsICdPUFRJT05TJzogeydjb250ZXh0X3Byb2Nlc3NvcnMnOiBbJ2RqYW5nby50ZW1wbGF0ZS5jb250ZXh0X3Byb2Nlc3NvcnMuZGVidWcnLCAnZGphbmdvLnRlbXBsYXRlLmNvbnRleHRfcHJvY2Vzc29ycy5yZXF1ZXN0JywgJ2RqYW5nby5jb250cmliLmF1dGguY29udGV4dF9wcm9jZXNzb3JzLmF1dGgnLCAnZGphbmdvLmNvbnRyaWIubWVzc2FnZXMuY29udGV4dF9wcm9jZXNzb3JzLm1lc3NhZ2VzJ119fV0KVEVTVF9OT05fU0VSSUFMSVpFRF9BUFBTID0gW10KVEVTVF9SVU5ORVIgPSAnZGphbmdvX25vc2UuTm9zZVRlc3RTdWl0ZVJ1bm5lcicKVEhPVVNBTkRfU0VQQVJBVE9SID0gJywnClRJTUVfRk9STUFUID0gJ1AnClRJTUVfSU5QVVRfRk9STUFUUyA9IFsnJUg6JU06JVMnLCAnJUg6JU06JVMuJWYnLCAnJUg6JU0nXQpUSU1FX1pPTkUgPSAnVVRDJwpVU0VfRVRBR1MgPSBGYWxzZQpVU0VfSTE4TiA9IFRydWUKVVNFX0wxME4gPSBUcnVlClVTRV9USE9VU0FORF9TRVBBUkFUT1IgPSBGYWxzZQpVU0VfVFogPSBUcnVlClVTRV9YX0ZPUldBUkRFRF9IT1NUID0gRmFsc2UKVVNFX1hfRk9SV0FSREVEX1BPUlQgPSBGYWxzZQpXRUJQQUNLX0xPQURFUiA9IHsnREVGQVVMVCc6IHsnQlVORExFX0RJUl9OQU1FJzogJ2J1bmRsZXMvJywgJ1NUQVRTX0ZJTEUnOiAnRDpcXFBQTEFcXHdlYnBhY2stc3RhdHMuanNvbid9fQpXU0dJX0FQUExJQ0FUSU9OID0gJ2thcGUud3NnaS5hcHBsaWNhdGlvbicKWF9GUkFNRV9PUFRJT05TID0gJ1NBTUVPUklHSU4nCllFQVJfTU9OVEhfRk9STUFUID0gJ0YgWScKCgpZb3UncmUgc2VlaW5nIHRoaXMgZXJyb3IgYmVjYXVzZSB5b3UgaGF2ZSBERUJVRyA9IFRydWUgaW4geW91cgpEamFuZ28gc2V0dGluZ3MgZmlsZS4gQ2hhbmdlIHRoYXQgdG8gRmFsc2UsIGFuZCBEamFuZ28gd2lsbApkaXNwbGF5IGEgc3RhbmRhcmQgcGFnZSBnZW5lcmF0ZWQgYnkgdGhlIGhhbmRsZXIgZm9yIHRoaXMgc3RhdHVzIGNvZGUuCgo=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/plain\"}" - } -}, -{ - "model": "silk.response", - "pk": "bb7bd1d1-f753-43aa-b379-17fda994a687", - "fields": { - "request": "e9119e1e-a6cb-4b6a-9590-1955cccfef53", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "bd489f99-ea99-4e55-8989-48cd146482f8", - "fields": { - "request": "541f40f5-3409-496d-8970-e333aa4efcab", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPlNlbGVjdCBjb21wYW55IHRvIGNoYW5nZSB8IERqYW5nbyBzaXRlIGFkbWluPC90aXRsZT4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvYmFzZS5jc3MiIC8+CgogIAogIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvYWRtaW4vY3NzL2NoYW5nZWxpc3RzLmNzcyIgLz4KICAKICAKICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KICAKICAKICAKCgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvY29yZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL2pxdWVyeS9qcXVlcnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2pxdWVyeS5pbml0LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hZG1pbi9SZWxhdGVkT2JqZWN0TG9va3Vwcy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvYWN0aW9ucy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdXJsaWZ5LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9wcmVwb3B1bGF0ZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL3hyZWdleHAveHJlZ2V4cC5qcyI+PC9zY3JpcHQ+Cgo8bWV0YSBuYW1lPSJyb2JvdHMiIGNvbnRlbnQ9Ik5PTkUsTk9BUkNISVZFIiAvPgo8L2hlYWQ+CgoKPGJvZHkgY2xhc3M9IiBhcHAtY29yZSBtb2RlbC1jb21wYW55IGNoYW5nZS1saXN0IgogIGRhdGEtYWRtaW4tdXRjLW9mZnNldD0iMCI+Cgo8IS0tIENvbnRhaW5lciAtLT4KPGRpdiBpZD0iY29udGFpbmVyIj4KCiAgICAKICAgIDwhLS0gSGVhZGVyIC0tPgogICAgPGRpdiBpZD0iaGVhZGVyIj4KICAgICAgICA8ZGl2IGlkPSJicmFuZGluZyI+CiAgICAgICAgCjxoMSBpZD0ic2l0ZS1uYW1lIj48YSBocmVmPSIvYWRtaW4vIj5EamFuZ28gYWRtaW5pc3RyYXRpb248L2E+PC9oMT4KCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgPGRpdiBpZD0idXNlci10b29scyI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgV2VsY29tZSwKICAgICAgICAgICAgICAgIDxzdHJvbmc+a2FwZTwvc3Ryb25nPi4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iLyI+VmlldyBzaXRlPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9wYXNzd29yZF9jaGFuZ2UvIj5DaGFuZ2UgcGFzc3dvcmQ8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2xvZ291dC8iPkxvZyBvdXQ8L2E+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIAogICAgPC9kaXY+CiAgICA8IS0tIEVORCBIZWFkZXIgLS0+CiAgICAKPGRpdiBjbGFzcz0iYnJlYWRjcnVtYnMiPgo8YSBocmVmPSIvYWRtaW4vIj5Ib21lPC9hPgomcnNhcXVvOyA8YSBocmVmPSIvYWRtaW4vY29yZS8iPkNvcmU8L2E+CiZyc2FxdW87IENvbXBhbnlzCjwvZGl2PgoKICAgIAoKICAgIAogICAgICAgIAogICAgICAgIDx1bCBjbGFzcz0ibWVzc2FnZWxpc3QiPgogICAgICAgICAgPGxpIGNsYXNzPSJzdWNjZXNzIj5TdWNjZXNzZnVsbHkgZGVsZXRlZCAxIGNvbXBhbnkuPC9saT4KICAgICAgICA8L3VsPgogICAgICAgIAogICAgCgogICAgPCEtLSBDb250ZW50IC0tPgogICAgPGRpdiBpZD0iY29udGVudCIgY2xhc3M9ImZsZXgiPgogICAgICAgIAogICAgICAgIDxoMT5TZWxlY3QgY29tcGFueSB0byBjaGFuZ2U8L2gxPgogICAgICAgIAogIDxkaXYgaWQ9ImNvbnRlbnQtbWFpbiI+CiAgICAKICAgICAgICA8dWwgY2xhc3M9Im9iamVjdC10b29scyI+CiAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaT4KICAgICAgICAgICAgICAKICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS9jb21wYW55L2FkZC8iIGNsYXNzPSJhZGRsaW5rIj4KICAgICAgICAgICAgICAgIEFkZCBjb21wYW55CiAgICAgICAgICAgICAgPC9hPgogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgIAogICAgICAgIDwvdWw+CiAgICAKICAgIAogICAgPGRpdiBjbGFzcz0ibW9kdWxlIiBpZD0iY2hhbmdlbGlzdCI+CiAgICAgIAoKCiAgICAgIAoKCiAgICAgIAogICAgICAgIAogICAgICAKCiAgICAgIDxmb3JtIGlkPSJjaGFuZ2VsaXN0LWZvcm0iIG1ldGhvZD0icG9zdCIgbm92YWxpZGF0ZT48aW5wdXQgdHlwZT0naGlkZGVuJyBuYW1lPSdjc3JmbWlkZGxld2FyZXRva2VuJyB2YWx1ZT0nZThjVWhuQXIzcU5WdU9ob290NUdaczhhdGRoaVRjTzFEZWpKdFRzbVFuWWtSV2pRN1VBOFI5UFVyOG43ZGNLUScgLz4KICAgICAgCgogICAgICAKICAgICAgICAgIAogICAgICAgICAgCgoKCiAgICAgICAgICAKICAgICAgCiAgICAgIAoKPHAgY2xhc3M9InBhZ2luYXRvciI+CgowIGNvbXBhbnlzCgoKPC9wPgoKICAgICAgPC9mb3JtPgogICAgPC9kaXY+CiAgPC9kaXY+CgogICAgICAgIAogICAgICAgIDxiciBjbGFzcz0iY2xlYXIiIC8+CiAgICA8L2Rpdj4KICAgIDwhLS0gRU5EIENvbnRlbnQgLS0+CgogICAgPGRpdiBpZD0iZm9vdGVyIj48L2Rpdj4KPC9kaXY+CjwhLS0gRU5EIENvbnRhaW5lciAtLT4KCjwvYm9keT4KPC9odG1sPgo=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 14:55:26 GMT\", \"Expires\": \"Mon, 27 Mar 2017 14:55:26 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "bd548cc2-0526-4b0e-bfe3-b5394e3867d9", - "fields": { - "request": "565a9250-4770-4b87-a72e-5463d634999d", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "bd60434a-4413-4fe1-8134-7f656f3bfb36", - "fields": { - "request": "7f58beec-8752-4060-9047-178b48f469b7", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "be298df3-0fa6-4bf4-b9ea-5c3516402104", - "fields": { - "request": "8879e7b7-6961-4221-8d18-70981618dcaf", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "bfc546e9-9f76-4f98-a1b9-ce1677e626e6", - "fields": { - "request": "cfa62b9c-af1e-4b2a-a941-8c9dd21e24c9", - "status_code": 200, - "raw_body": "CjwhRE9DVFlQRSBodG1sPgo8aHRtbD4KPGhlYWQ+CiAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogIDx0aXRsZT5Td2FnZ2VyIFVJPC90aXRsZT4KICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2ltYWdlcy9mYXZpY29uLTMyeDMyLnBuZyIgc2l6ZXM9IjMyeDMyIiAvPgogIDxsaW5rIHJlbD0iaWNvbiIgdHlwZT0iaW1hZ2UvcG5nIiBocmVmPSIvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvaW1hZ2VzL2Zhdmljb24tMTZ4MTYucG5nIiBzaXplcz0iMTZ4MTYiIC8+CiAgPGxpbmsgaHJlZj0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2Nzcy90eXBvZ3JhcGh5LmNzcycgbWVkaWE9J3NjcmVlbicgcmVsPSdzdHlsZXNoZWV0JyB0eXBlPSd0ZXh0L2NzcycvPgogIDxsaW5rIGhyZWY9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9jc3MvcmVzZXQuY3NzJyBtZWRpYT0nc2NyZWVuJyByZWw9J3N0eWxlc2hlZXQnIHR5cGU9J3RleHQvY3NzJy8+CiAgPGxpbmsgaHJlZj0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2Nzcy9zY3JlZW4uY3NzJyBtZWRpYT0nc2NyZWVuJyByZWw9J3N0eWxlc2hlZXQnIHR5cGU9J3RleHQvY3NzJy8+CiAgPGxpbmsgaHJlZj0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2Nzcy9yZXNldC5jc3MnIG1lZGlhPSdwcmludCcgcmVsPSdzdHlsZXNoZWV0JyB0eXBlPSd0ZXh0L2NzcycvPgogIDxsaW5rIGhyZWY9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9jc3MvcHJpbnQuY3NzJyBtZWRpYT0ncHJpbnQnIHJlbD0nc3R5bGVzaGVldCcgdHlwZT0ndGV4dC9jc3MnLz4KICAKICAKICAKCiAgPHNjcmlwdCBzcmM9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9saWIvb2JqZWN0LWFzc2lnbi1wb2xseWZpbGwuanMnIHR5cGU9J3RleHQvamF2YXNjcmlwdCc+PC9zY3JpcHQ+CiAgPHNjcmlwdCBzcmM9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9saWIvanF1ZXJ5LTEuOC4wLm1pbi5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4KICA8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2xpYi9qcXVlcnkuc2xpZGV0by5taW4uanMnIHR5cGU9J3RleHQvamF2YXNjcmlwdCc+PC9zY3JpcHQ+CiAgPHNjcmlwdCBzcmM9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9saWIvanF1ZXJ5LndpZ2dsZS5taW4uanMnIHR5cGU9J3RleHQvamF2YXNjcmlwdCc+PC9zY3JpcHQ+CiAgPHNjcmlwdCBzcmM9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9saWIvanF1ZXJ5LmJhLWJicS5taW4uanMnIHR5cGU9J3RleHQvamF2YXNjcmlwdCc+PC9zY3JpcHQ+CiAgPHNjcmlwdCBzcmM9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9saWIvaGFuZGxlYmFycy0yLjAuMC5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4KICA8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2xpYi9qcy15YW1sLm1pbi5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4KICA8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2xpYi9sb2Rhc2gubWluLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgogIDxzY3JpcHQgc3JjPScvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvbGliL2JhY2tib25lLW1pbi5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4KICA8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL3N3YWdnZXItdWkubWluLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgogIDxzY3JpcHQgc3JjPScvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvbGliL2hpZ2hsaWdodC45LjEuMC5wYWNrLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgogIDxzY3JpcHQgc3JjPScvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvbGliL2hpZ2hsaWdodC45LjEuMC5wYWNrX2V4dGVuZGVkLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgogIDxzY3JpcHQgc3JjPScvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvbGliL2pzb25lZGl0b3IubWluLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgogIDxzY3JpcHQgc3JjPScvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvbGliL21hcmtlZC5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4KICA8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2xpYi9zd2FnZ2VyLW9hdXRoLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgoKICA8IS0tIFNvbWUgYmFzaWMgdHJhbnNsYXRpb25zIC0tPgogIDwhLS0gPHNjcmlwdCBzcmM9J2xhbmcvdHJhbnNsYXRvci5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4gLS0+CiAgPCEtLSA8c2NyaXB0IHNyYz0nbGFuZy9ydS5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4gLS0+CiAgPCEtLSA8c2NyaXB0IHNyYz0nbGFuZy9lbi5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4gLS0+Cgo8L2hlYWQ+Cgo8Ym9keSBjbGFzcz0ic3dhZ2dlci1zZWN0aW9uIj4KCjxkaXYgaWQ9J2hlYWRlcic+CiAgPGRpdiBjbGFzcz0ic3dhZ2dlci11aS13cmFwIj4KICAgIAogICAgICA8YSBpZD0ibG9nbyIgaHJlZj0iaHR0cDovL3N3YWdnZXIuaW8iPjxpbWcgY2xhc3M9ImxvZ29fX2ltZyIgYWx0PSJzd2FnZ2VyIiBoZWlnaHQ9IjMwIiB3aWR0aD0iMzAiIHNyYz0iL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2ltYWdlcy9sb2dvX3NtYWxsLnBuZyIgLz48c3BhbiBjbGFzcz0ibG9nb19fdGl0bGUiPnN3YWdnZXI8L3NwYW4+PC9hPgogICAgCiAgICA8Zm9ybSBpZD0nYXBpX3NlbGVjdG9yJz4KICAgICAgPGlucHV0IGlkPSJpbnB1dF9iYXNlVXJsIiBuYW1lPSJiYXNlVXJsIiB0eXBlPSJoaWRkZW4iLz4KICAgICAgCiAgICAgICAgPGlucHV0IHR5cGU9J2hpZGRlbicgbmFtZT0nY3NyZm1pZGRsZXdhcmV0b2tlbicgdmFsdWU9J3o1UWJkVENjSVBaR202R2lGeEZwcnBVT1hUUFpJZkxkWWJYMHBwdTd2TWE1SmVJS29ZYVJqNkJ5Vk9WTzJmSDInIC8+CiAgICAgICAgCiAgICAgICAgICA8ZGl2IGNsYXNzPSJpbnB1dCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgIAogICAgICAgICAgICAgIEhlbGxvLCBrYXBlCiAgICAgICAgICAgIAogICAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgICAKICAgICAgICAKICAgICAgCgogICAgICAKICAgICAgICAKICAgICAgICAgIDxkaXYgY2xhc3M9J2lucHV0Jz48YSBpZD0iYXV0aCIgY2xhc3M9ImhlYWRlcl9fYnRuIiBocmVmPSI/bmV4dD0vYXBpIiBkYXRhLXN3LXRyYW5zbGF0ZT5EamFuZ28gTG9nb3V0PC9hPjwvZGl2PgogICAgICAgIAogICAgICAKICAgICAgPGRpdiBpZD0nYXV0aF9jb250YWluZXInPjwvZGl2PgogICAgPC9mb3JtPgogIDwvZGl2Pgo8L2Rpdj4KCgo8ZGl2IGlkPSJtZXNzYWdlLWJhciIgY2xhc3M9InN3YWdnZXItdWktd3JhcCIgZGF0YS1zdy10cmFuc2xhdGU+Jm5ic3A7PC9kaXY+CjxkaXYgaWQ9InN3YWdnZXItdWktY29udGFpbmVyIiBjbGFzcz0ic3dhZ2dlci11aS13cmFwIj48L2Rpdj4KCjxzY3JpcHQgaWQ9ImRycy1zZXR0aW5ncyIgdHlwZT0iYXBwbGljYXRpb24vanNvbiI+CnsiYXBpc1NvcnRlciI6IG51bGwsICJkb2NFeHBhbnNpb24iOiBudWxsLCAianNvbkVkaXRvciI6IGZhbHNlLCAib3BlcmF0aW9uc1NvcnRlciI6IG51bGwsICJzaG93UmVxdWVzdEhlYWRlcnMiOiBmYWxzZSwgInN1cHBvcnRlZFN1Ym1pdE1ldGhvZHMiOiBbImdldCIsICJwb3N0IiwgInB1dCIsICJkZWxldGUiLCAicGF0Y2giXX0KPC9zY3JpcHQ+Cgo8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2luaXQuanMnIHR5cGU9J3RleHQvamF2YXNjcmlwdCc+PC9zY3JpcHQ+CgoKCjwvYm9keT4KPC9odG1sPgo=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Allow\": \"GET, HEAD, OPTIONS\", \"Vary\": \"Accept\"}" - } -}, -{ - "model": "silk.response", - "pk": "c01466cd-6268-41b8-a2d2-cd10e2231a4e", - "fields": { - "request": "0dd96ff3-9801-47bd-8d52-54418ec9ac65", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPkFkZCB2YWNhbmN5IHwgRGphbmdvIHNpdGUgYWRtaW48L3RpdGxlPgo8bGluayByZWw9InN0eWxlc2hlZXQiIHR5cGU9InRleHQvY3NzIiBocmVmPSIvYXNzZXRzL2FkbWluL2Nzcy9iYXNlLmNzcyIgLz4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvZm9ybXMuY3NzIiAvPgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9jb3JlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IvanF1ZXJ5L2pxdWVyeS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvanF1ZXJ5LmluaXQuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2FkbWluL1JlbGF0ZWRPYmplY3RMb29rdXBzLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hY3Rpb25zLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy91cmxpZnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL3ByZXBvcHVsYXRlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IveHJlZ2V4cC94cmVnZXhwLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9jYWxlbmRhci5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvYWRtaW4vRGF0ZVRpbWVTaG9ydGN1dHMuanMiPjwvc2NyaXB0PgoKPG1ldGEgbmFtZT0icm9ib3RzIiBjb250ZW50PSJOT05FLE5PQVJDSElWRSIgLz4KPC9oZWFkPgoKCjxib2R5IGNsYXNzPSIgYXBwLWNvcmUgbW9kZWwtdmFjYW5jeSBjaGFuZ2UtZm9ybSIKICBkYXRhLWFkbWluLXV0Yy1vZmZzZXQ9IjAiPgoKPCEtLSBDb250YWluZXIgLS0+CjxkaXYgaWQ9ImNvbnRhaW5lciI+CgogICAgCiAgICA8IS0tIEhlYWRlciAtLT4KICAgIDxkaXYgaWQ9ImhlYWRlciI+CiAgICAgICAgPGRpdiBpZD0iYnJhbmRpbmciPgogICAgICAgIAo8aDEgaWQ9InNpdGUtbmFtZSI+PGEgaHJlZj0iL2FkbWluLyI+RGphbmdvIGFkbWluaXN0cmF0aW9uPC9hPjwvaDE+CgogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIDxkaXYgaWQ9InVzZXItdG9vbHMiPgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIFdlbGNvbWUsCiAgICAgICAgICAgICAgICA8c3Ryb25nPmthcGU8L3N0cm9uZz4uCiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii8iPlZpZXcgc2l0ZTwvYT4gLwogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vcGFzc3dvcmRfY2hhbmdlLyI+Q2hhbmdlIHBhc3N3b3JkPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9sb2dvdXQvIj5Mb2cgb3V0PC9hPgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgICAgICAKICAgICAgICAKICAgICAgICAKICAgIDwvZGl2PgogICAgPCEtLSBFTkQgSGVhZGVyIC0tPgogICAgCjxkaXYgY2xhc3M9ImJyZWFkY3J1bWJzIj4KPGEgaHJlZj0iL2FkbWluLyI+SG9tZTwvYT4KJnJzYXF1bzsgPGEgaHJlZj0iL2FkbWluL2NvcmUvIj5Db3JlPC9hPgomcnNhcXVvOyA8YSBocmVmPSIvYWRtaW4vY29yZS92YWNhbmN5LyI+VmFjYW5jeXM8L2E+CiZyc2FxdW87IEFkZCB2YWNhbmN5CjwvZGl2PgoKICAgIAoKICAgIAogICAgICAgIAogICAgCgogICAgPCEtLSBDb250ZW50IC0tPgogICAgPGRpdiBpZD0iY29udGVudCIgY2xhc3M9ImNvbE0iPgogICAgICAgIAogICAgICAgIDxoMT5BZGQgdmFjYW5jeTwvaDE+CiAgICAgICAgPGRpdiBpZD0iY29udGVudC1tYWluIj4KCgoKPGZvcm0gZW5jdHlwZT0ibXVsdGlwYXJ0L2Zvcm0tZGF0YSIgYWN0aW9uPSIiIG1ldGhvZD0icG9zdCIgaWQ9InZhY2FuY3lfZm9ybSIgbm92YWxpZGF0ZT48aW5wdXQgdHlwZT0naGlkZGVuJyBuYW1lPSdjc3JmbWlkZGxld2FyZXRva2VuJyB2YWx1ZT0nTEZVR3h0N0U5NTVkSUlqcm1MakxKQTRsMjZVNDBEU0VPRWRnOGFGdHJkaTVKUlBxVXR1b2NMelRoMUpFcjZHWCcgLz4KPGRpdj4KCgoKCgoKCiAgPGZpZWxkc2V0IGNsYXNzPSJtb2R1bGUgYWxpZ25lZCAiPgogICAgCiAgICAKICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImZvcm0tcm93IGZpZWxkLWNvbXBhbnkiPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgY2xhc3M9InJlcXVpcmVkIiBmb3I9ImlkX2NvbXBhbnkiPkNvbXBhbnk6PC9sYWJlbD4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAKPGRpdiBjbGFzcz0icmVsYXRlZC13aWRnZXQtd3JhcHBlciI+CiAgICA8c2VsZWN0IGlkPSJpZF9jb21wYW55IiBuYW1lPSJjb21wYW55IiByZXF1aXJlZD4KPG9wdGlvbiB2YWx1ZT0iIiBzZWxlY3RlZD0ic2VsZWN0ZWQiPi0tLS0tLS0tLTwvb3B0aW9uPgo8L3NlbGVjdD4KICAgIAogICAgICAgIAogICAgICAgIDxhIGNsYXNzPSJyZWxhdGVkLXdpZGdldC13cmFwcGVyLWxpbmsgY2hhbmdlLXJlbGF0ZWQiIGlkPSJjaGFuZ2VfaWRfY29tcGFueSIKICAgICAgICAgICAgZGF0YS1ocmVmLXRlbXBsYXRlPSIvYWRtaW4vY29yZS9jb21wYW55L19fZmtfXy9jaGFuZ2UvP190b19maWVsZD1pZCZhbXA7X3BvcHVwPTEiCiAgICAgICAgICAgIHRpdGxlPSJDaGFuZ2Ugc2VsZWN0ZWQgY29tcGFueSI+CiAgICAgICAgICAgIDxpbWcgc3JjPSIvYXNzZXRzL2FkbWluL2ltZy9pY29uLWNoYW5nZWxpbmsuc3ZnIiBhbHQ9IkNoYW5nZSIvPgogICAgICAgIDwvYT4KICAgICAgICAKICAgICAgICAKICAgICAgICA8YSBjbGFzcz0icmVsYXRlZC13aWRnZXQtd3JhcHBlci1saW5rIGFkZC1yZWxhdGVkIiBpZD0iYWRkX2lkX2NvbXBhbnkiCiAgICAgICAgICAgIGhyZWY9Ii9hZG1pbi9jb3JlL2NvbXBhbnkvYWRkLz9fdG9fZmllbGQ9aWQmYW1wO19wb3B1cD0xIgogICAgICAgICAgICB0aXRsZT0iQWRkIGFub3RoZXIgY29tcGFueSI+CiAgICAgICAgICAgIDxpbWcgc3JjPSIvYXNzZXRzL2FkbWluL2ltZy9pY29uLWFkZGxpbmsuc3ZnIiBhbHQ9IkFkZCIvPgogICAgICAgIDwvYT4KICAgICAgICAKICAgICAgICAKICAgIAo8L2Rpdj4KCiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPC9kaXY+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgCiAgICAgICAgPGRpdiBjbGFzcz0iZm9ybS1yb3cgZmllbGQtdmVyaWZpZWQiPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPSJjaGVja2JveC1yb3ciPgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8aW5wdXQgaWQ9ImlkX3ZlcmlmaWVkIiBuYW1lPSJ2ZXJpZmllZCIgdHlwZT0iY2hlY2tib3giIC8+PGxhYmVsIGNsYXNzPSJ2Q2hlY2tib3hMYWJlbCIgZm9yPSJpZF92ZXJpZmllZCI+VmVyaWZpZWQ8L2xhYmVsPgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPC9kaXY+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgCiAgICAgICAgPGRpdiBjbGFzcz0iZm9ybS1yb3cgZmllbGQtb3Blbl90aW1lIj4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGRpdj4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPGxhYmVsIGNsYXNzPSJyZXF1aXJlZCIgZm9yPSJpZF9vcGVuX3RpbWVfMCI+T3BlbiB0aW1lOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgPHAgY2xhc3M9ImRhdGV0aW1lIj5EYXRlOiA8aW5wdXQgY2xhc3M9InZEYXRlRmllbGQiIGlkPSJpZF9vcGVuX3RpbWVfMCIgbmFtZT0ib3Blbl90aW1lXzAiIHNpemU9IjEwIiB0eXBlPSJ0ZXh0IiByZXF1aXJlZCAvPjxiciAvPlRpbWU6IDxpbnB1dCBjbGFzcz0idlRpbWVGaWVsZCIgaWQ9ImlkX29wZW5fdGltZV8xIiBuYW1lPSJvcGVuX3RpbWVfMSIgc2l6ZT0iOCIgdHlwZT0idGV4dCIgcmVxdWlyZWQgLz48L3A+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPC9kaXY+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgCiAgICAgICAgPGRpdiBjbGFzcz0iZm9ybS1yb3cgZmllbGQtY2xvc2VfdGltZSI+CiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXY+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxsYWJlbCBjbGFzcz0icmVxdWlyZWQiIGZvcj0iaWRfY2xvc2VfdGltZV8wIj5DbG9zZSB0aW1lOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgPHAgY2xhc3M9ImRhdGV0aW1lIj5EYXRlOiA8aW5wdXQgY2xhc3M9InZEYXRlRmllbGQiIGlkPSJpZF9jbG9zZV90aW1lXzAiIG5hbWU9ImNsb3NlX3RpbWVfMCIgc2l6ZT0iMTAiIHR5cGU9InRleHQiIHJlcXVpcmVkIC8+PGJyIC8+VGltZTogPGlucHV0IGNsYXNzPSJ2VGltZUZpZWxkIiBpZD0iaWRfY2xvc2VfdGltZV8xIiBuYW1lPSJjbG9zZV90aW1lXzEiIHNpemU9IjgiIHR5cGU9InRleHQiIHJlcXVpcmVkIC8+PC9wPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDwvZGl2PgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgIAo8L2ZpZWxkc2V0PgoKCgoKCgoKCgoKCgoKPGRpdiBjbGFzcz0ic3VibWl0LXJvdyI+CjxpbnB1dCB0eXBlPSJzdWJtaXQiIHZhbHVlPSJTYXZlIiBjbGFzcz0iZGVmYXVsdCIgbmFtZT0iX3NhdmUiIC8+CgoKPGlucHV0IHR5cGU9InN1Ym1pdCIgdmFsdWU9IlNhdmUgYW5kIGFkZCBhbm90aGVyIiBuYW1lPSJfYWRkYW5vdGhlciIgLz4KPGlucHV0IHR5cGU9InN1Ym1pdCIgdmFsdWU9IlNhdmUgYW5kIGNvbnRpbnVlIGVkaXRpbmciIG5hbWU9Il9jb250aW51ZSIgLz4KPC9kaXY+CgoKCiAgICA8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIKICAgICAgICAgICAgaWQ9ImRqYW5nby1hZG1pbi1mb3JtLWFkZC1jb25zdGFudHMiCiAgICAgICAgICAgIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9jaGFuZ2VfZm9ybS5qcyIKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICBkYXRhLW1vZGVsLW5hbWU9InZhY2FuY3kiCiAgICAgICAgICAgID4KICAgIDwvc2NyaXB0PgoKCgoKPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiCiAgICAgICAgaWQ9ImRqYW5nby1hZG1pbi1wcmVwb3B1bGF0ZWQtZmllbGRzLWNvbnN0YW50cyIKICAgICAgICBzcmM9Ii9hc3NldHMvYWRtaW4vanMvcHJlcG9wdWxhdGVfaW5pdC5qcyIKICAgICAgICBkYXRhLXByZXBvcHVsYXRlZC1maWVsZHM9IltdIj4KPC9zY3JpcHQ+CgoKPC9kaXY+CjwvZm9ybT48L2Rpdj4KCiAgICAgICAgCiAgICAgICAgPGJyIGNsYXNzPSJjbGVhciIgLz4KICAgIDwvZGl2PgogICAgPCEtLSBFTkQgQ29udGVudCAtLT4KCiAgICA8ZGl2IGlkPSJmb290ZXIiPjwvZGl2Pgo8L2Rpdj4KPCEtLSBFTkQgQ29udGFpbmVyIC0tPgoKPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 14:33:18 GMT\", \"Expires\": \"Mon, 27 Mar 2017 14:33:18 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "c1738697-e0f5-4a47-b64e-a9719003c2fe", - "fields": { - "request": "5468cdb0-bd42-4723-8589-125424d50c70", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "c3725df4-e007-42eb-87e1-f229da8d5c1f", - "fields": { - "request": "3c54140c-a49e-4946-927c-44f8373a995f", - "status_code": 200, - "raw_body": "W3sidXJsIjoiaHR0cDovLzEyNy4wLjAuMTo4MDAwL2FwaS91c2Vycy8xLyIsInVzZXJuYW1lIjoia2FwZSIsImVtYWlsIjoia2FwZUBrYXBlLmNvbSIsImlzX3N0YWZmIjp0cnVlfSx7InVybCI6Imh0dHA6Ly8xMjcuMC4wLjE6ODAwMC9hcGkvdXNlcnMvMi8iLCJ1c2VybmFtZSI6ImZhcmhhbiIsImVtYWlsIjoiIiwiaXNfc3RhZmYiOmZhbHNlfSx7InVybCI6Imh0dHA6Ly8xMjcuMC4wLjE6ODAwMC9hcGkvdXNlcnMvMy8iLCJ1c2VybmFtZSI6ImZhcmhhbmNvcnAiLCJlbWFpbCI6IiIsImlzX3N0YWZmIjpmYWxzZX0seyJ1cmwiOiJodHRwOi8vMTI3LjAuMC4xOjgwMDAvYXBpL3VzZXJzLzQvIiwidXNlcm5hbWUiOiJmYXJoYW5zdXBlciIsImVtYWlsIjoiIiwiaXNfc3RhZmYiOmZhbHNlfV0=", - "body": "[\n {\n \"email\": \"kape@kape.com\",\n \"is_staff\": true,\n \"url\": \"http://127.0.0.1:8000/api/users/1/\",\n \"username\": \"kape\"\n },\n {\n \"email\": \"\",\n \"is_staff\": false,\n \"url\": \"http://127.0.0.1:8000/api/users/2/\",\n \"username\": \"farhan\"\n },\n {\n \"email\": \"\",\n \"is_staff\": false,\n \"url\": \"http://127.0.0.1:8000/api/users/3/\",\n \"username\": \"farhancorp\"\n },\n {\n \"email\": \"\",\n \"is_staff\": false,\n \"url\": \"http://127.0.0.1:8000/api/users/4/\",\n \"username\": \"farhansuper\"\n }\n]", - "encoded_headers": "{\"Content-Type\": \"application/json\", \"Allow\": \"GET, POST, OPTIONS\", \"Vary\": \"Accept\"}" - } -}, -{ - "model": "silk.response", - "pk": "c3bf8a72-ba11-42d0-ba5f-81b7601a3f24", - "fields": { - "request": "7ae4fd22-370c-41ce-af3c-0d0be06c9932", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "c4c4d440-ff26-4e3e-b0f2-304d2ca735a3", - "fields": { - "request": "e3443f04-9b4d-4f5a-b692-99eab466a719", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "c4d525fa-14b8-419c-b3f6-33a1a320d4d5", - "fields": { - "request": "ee249942-b058-43b8-9ae8-2120a9ffef0d", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "c4da447c-9d4e-46f7-a638-a9b53f4c6205", - "fields": { - "request": "92e0a131-5154-48cb-a968-1c7f15bde4fc", - "status_code": 200, - "raw_body": "eyJzd2FnZ2VyIjogIjIuMCIsICJpbmZvIjogeyJ0aXRsZSI6ICIiLCAidmVyc2lvbiI6ICIifSwgInBhdGhzIjogeyIvYXBpL2FwcGxpY2F0aW9ucy8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAiYXBwbGljYXRpb25zX2xpc3QiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogInBhZ2UiLCAicmVxdWlyZWQiOiBmYWxzZSwgImluIjogInF1ZXJ5IiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbImFwcGxpY2F0aW9ucyJdfSwgInBvc3QiOiB7Im9wZXJhdGlvbklkIjogImFwcGxpY2F0aW9uc19jcmVhdGUiLCAicmVzcG9uc2VzIjogeyIyMDEiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InN0dWRlbnRfbnBtIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgInZhY2FuY3lfaWQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9fSwgInJlcXVpcmVkIjogWyJzdHVkZW50X25wbSIsICJ2YWNhbmN5X2lkIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsiYXBwbGljYXRpb25zIl19fSwgIi9hcGkvYXBwbGljYXRpb25zL3tpZH0vIjogeyJnZXQiOiB7Im9wZXJhdGlvbklkIjogImFwcGxpY2F0aW9uc19yZWFkIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbImFwcGxpY2F0aW9ucyJdfSwgInB1dCI6IHsib3BlcmF0aW9uSWQiOiAiYXBwbGljYXRpb25zX3VwZGF0ZSIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InN0dWRlbnRfbnBtIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgInZhY2FuY3lfaWQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9fSwgInJlcXVpcmVkIjogWyJzdHVkZW50X25wbSIsICJ2YWNhbmN5X2lkIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsiYXBwbGljYXRpb25zIl19LCAicGF0Y2giOiB7Im9wZXJhdGlvbklkIjogImFwcGxpY2F0aW9uc19wYXJ0aWFsX3VwZGF0ZSIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InN0dWRlbnRfbnBtIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgInZhY2FuY3lfaWQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9fX19XSwgImNvbnN1bWVzIjogWyJhcHBsaWNhdGlvbi9qc29uIl0sICJ0YWdzIjogWyJhcHBsaWNhdGlvbnMiXX0sICJkZWxldGUiOiB7Im9wZXJhdGlvbklkIjogImFwcGxpY2F0aW9uc19kZWxldGUiLCAicmVzcG9uc2VzIjogeyIyMDQiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsiYXBwbGljYXRpb25zIl19fSwgIi9hcGkvY29tcGFuaWVzLyI6IHsiZ2V0IjogeyJvcGVyYXRpb25JZCI6ICJjb21wYW5pZXNfbGlzdCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAicGFnZSIsICJyZXF1aXJlZCI6IGZhbHNlLCAiaW4iOiAicXVlcnkiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsiY29tcGFuaWVzIl19LCAicG9zdCI6IHsib3BlcmF0aW9uSWQiOiAiY29tcGFuaWVzX2NyZWF0ZSIsICJyZXNwb25zZXMiOiB7IjIwMSI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidXNlciI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAib2JqZWN0In0sICJkZXNjcmlwdGlvbiI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sICJ2ZXJpZmllZCI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiYm9vbGVhbiJ9LCAibG9nbyI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sICJhbGFtYXQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9fSwgInJlcXVpcmVkIjogWyJ1c2VyIiwgImRlc2NyaXB0aW9uIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsiY29tcGFuaWVzIl19fSwgIi9hcGkvY29tcGFuaWVzL3tpZH0vIjogeyJnZXQiOiB7Im9wZXJhdGlvbklkIjogImNvbXBhbmllc19yZWFkIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbImNvbXBhbmllcyJdfSwgInB1dCI6IHsib3BlcmF0aW9uSWQiOiAiY29tcGFuaWVzX3VwZGF0ZSIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InVzZXIiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogIm9iamVjdCJ9LCAiZGVzY3JpcHRpb24iOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAidmVyaWZpZWQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImJvb2xlYW4ifSwgImxvZ28iOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiYWxhbWF0IjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifX0sICJyZXF1aXJlZCI6IFsidXNlciIsICJkZXNjcmlwdGlvbiJdfX1dLCAiY29uc3VtZXMiOiBbImFwcGxpY2F0aW9uL2pzb24iXSwgInRhZ3MiOiBbImNvbXBhbmllcyJdfSwgInBhdGNoIjogeyJvcGVyYXRpb25JZCI6ICJjb21wYW5pZXNfcGFydGlhbF91cGRhdGUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ1c2VyIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJvYmplY3QifSwgImRlc2NyaXB0aW9uIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgInZlcmlmaWVkIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJib29sZWFuIn0sICJsb2dvIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImFsYW1hdCI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn19fX1dLCAiY29uc3VtZXMiOiBbImFwcGxpY2F0aW9uL2pzb24iXSwgInRhZ3MiOiBbImNvbXBhbmllcyJdfSwgImRlbGV0ZSI6IHsib3BlcmF0aW9uSWQiOiAiY29tcGFuaWVzX2RlbGV0ZSIsICJyZXNwb25zZXMiOiB7IjIwNCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJjb21wYW5pZXMiXX19LCAiL2FwaS9zdHVkZW50cy8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAic3R1ZGVudHNfbGlzdCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAicGFnZSIsICJyZXF1aXJlZCI6IGZhbHNlLCAiaW4iOiAicXVlcnkiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsic3R1ZGVudHMiXX0sICJwb3N0IjogeyJvcGVyYXRpb25JZCI6ICJzdHVkZW50c19jcmVhdGUiLCAicmVzcG9uc2VzIjogeyIyMDEiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InVzZXIiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogIm9iamVjdCJ9LCAibnBtIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJpbnRlZ2VyIn0sICJyZXN1bWUiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImZpbGUifSwgInBob25lX251bWJlciI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sICJib29rbWFya2VkX3ZhY2FuY2llcyI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiYXJyYXkiLCAiaXRlbXMiOiB7InR5cGUiOiAic3RyaW5nIn19fSwgInJlcXVpcmVkIjogWyJ1c2VyIiwgIm5wbSJdfX1dLCAiY29uc3VtZXMiOiBbImFwcGxpY2F0aW9uL2pzb24iXSwgInRhZ3MiOiBbInN0dWRlbnRzIl19fSwgIi9hcGkvc3R1ZGVudHMve2lkfS8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAic3R1ZGVudHNfcmVhZCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJzdHVkZW50cyJdfSwgInB1dCI6IHsib3BlcmF0aW9uSWQiOiAic3R1ZGVudHNfdXBkYXRlIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCB7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidXNlciI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAib2JqZWN0In0sICJucG0iOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImludGVnZXIifSwgInJlc3VtZSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiZmlsZSJ9LCAicGhvbmVfbnVtYmVyIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImJvb2ttYXJrZWRfdmFjYW5jaWVzIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJhcnJheSIsICJpdGVtcyI6IHsidHlwZSI6ICJzdHJpbmcifX19LCAicmVxdWlyZWQiOiBbInVzZXIiLCAibnBtIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsic3R1ZGVudHMiXX0sICJwYXRjaCI6IHsib3BlcmF0aW9uSWQiOiAic3R1ZGVudHNfcGFydGlhbF91cGRhdGUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ1c2VyIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJvYmplY3QifSwgIm5wbSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiaW50ZWdlciJ9LCAicmVzdW1lIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJmaWxlIn0sICJwaG9uZV9udW1iZXIiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiYm9va21hcmtlZF92YWNhbmNpZXMiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImFycmF5IiwgIml0ZW1zIjogeyJ0eXBlIjogInN0cmluZyJ9fX19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsic3R1ZGVudHMiXX0sICJkZWxldGUiOiB7Im9wZXJhdGlvbklkIjogInN0dWRlbnRzX2RlbGV0ZSIsICJyZXNwb25zZXMiOiB7IjIwNCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJzdHVkZW50cyJdfX0sICIvYXBpL3N0dWRlbnRzL3tpZH0vYm9va21hcmtlZC12YWNhbmNpZXMvIjogeyJwb3N0IjogeyJvcGVyYXRpb25JZCI6ICJzdHVkZW50c19ib29rbWFya192YWNhbmNpZXMiLCAicmVzcG9uc2VzIjogeyIyMDEiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ1c2VyIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJvYmplY3QifSwgIm5wbSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiaW50ZWdlciJ9LCAicmVzdW1lIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJmaWxlIn0sICJwaG9uZV9udW1iZXIiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiYm9va21hcmtlZF92YWNhbmNpZXMiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImFycmF5IiwgIml0ZW1zIjogeyJ0eXBlIjogInN0cmluZyJ9fX0sICJyZXF1aXJlZCI6IFsidXNlciIsICJucG0iXX19XSwgImNvbnN1bWVzIjogWyJhcHBsaWNhdGlvbi9qc29uIl0sICJ0YWdzIjogWyJzdHVkZW50cyJdfSwgImRlbGV0ZSI6IHsib3BlcmF0aW9uSWQiOiAic3R1ZGVudHNfdW5ib29rbWFya192YWNhbmNpZXMiLCAicmVzcG9uc2VzIjogeyIyMDQiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsic3R1ZGVudHMiXX19LCAiL2FwaS9zdXBlcnZpc29ycy8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAic3VwZXJ2aXNvcnNfbGlzdCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAicGFnZSIsICJyZXF1aXJlZCI6IGZhbHNlLCAiaW4iOiAicXVlcnkiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsic3VwZXJ2aXNvcnMiXX0sICJwb3N0IjogeyJvcGVyYXRpb25JZCI6ICJzdXBlcnZpc29yc19jcmVhdGUiLCAicmVzcG9uc2VzIjogeyIyMDEiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InVzZXIiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogIm9iamVjdCJ9LCAibmlwIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJpbnRlZ2VyIn19LCAicmVxdWlyZWQiOiBbInVzZXIiLCAibmlwIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsic3VwZXJ2aXNvcnMiXX19LCAiL2FwaS9zdXBlcnZpc29ycy97aWR9LyI6IHsiZ2V0IjogeyJvcGVyYXRpb25JZCI6ICJzdXBlcnZpc29yc19yZWFkIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbInN1cGVydmlzb3JzIl19LCAicHV0IjogeyJvcGVyYXRpb25JZCI6ICJzdXBlcnZpc29yc191cGRhdGUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ1c2VyIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJvYmplY3QifSwgIm5pcCI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiaW50ZWdlciJ9fSwgInJlcXVpcmVkIjogWyJ1c2VyIiwgIm5pcCJdfX1dLCAiY29uc3VtZXMiOiBbImFwcGxpY2F0aW9uL2pzb24iXSwgInRhZ3MiOiBbInN1cGVydmlzb3JzIl19LCAicGF0Y2giOiB7Im9wZXJhdGlvbklkIjogInN1cGVydmlzb3JzX3BhcnRpYWxfdXBkYXRlIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCB7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidXNlciI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAib2JqZWN0In0sICJuaXAiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImludGVnZXIifX19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsic3VwZXJ2aXNvcnMiXX0sICJkZWxldGUiOiB7Im9wZXJhdGlvbklkIjogInN1cGVydmlzb3JzX2RlbGV0ZSIsICJyZXNwb25zZXMiOiB7IjIwNCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJzdXBlcnZpc29ycyJdfX0sICIvYXBpL3VzZXJzLyI6IHsiZ2V0IjogeyJvcGVyYXRpb25JZCI6ICJ1c2Vyc19saXN0IiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJwYWdlIiwgInJlcXVpcmVkIjogZmFsc2UsICJpbiI6ICJxdWVyeSIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJ1c2VycyJdfSwgInBvc3QiOiB7Im9wZXJhdGlvbklkIjogInVzZXJzX2NyZWF0ZSIsICJyZXNwb25zZXMiOiB7IjIwMSI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidXNlcm5hbWUiOiB7ImRlc2NyaXB0aW9uIjogIlJlcXVpcmVkLiAxNTAgY2hhcmFjdGVycyBvciBmZXdlci4gTGV0dGVycywgZGlnaXRzIGFuZCBALy4vKy8tL18gb25seS4iLCAidHlwZSI6ICJzdHJpbmcifSwgImVtYWlsIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImlzX3N0YWZmIjogeyJkZXNjcmlwdGlvbiI6ICJEZXNpZ25hdGVzIHdoZXRoZXIgdGhlIHVzZXIgY2FuIGxvZyBpbnRvIHRoaXMgYWRtaW4gc2l0ZS4iLCAidHlwZSI6ICJib29sZWFuIn19LCAicmVxdWlyZWQiOiBbInVzZXJuYW1lIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsidXNlcnMiXX19LCAiL2FwaS91c2Vycy9tZS8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAidXNlcnNfbWUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbXSwgInRhZ3MiOiBbInVzZXJzIl19fSwgIi9hcGkvdXNlcnMve2lkfS8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAidXNlcnNfcmVhZCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJ1c2VycyJdfSwgInB1dCI6IHsib3BlcmF0aW9uSWQiOiAidXNlcnNfdXBkYXRlIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCB7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidXNlcm5hbWUiOiB7ImRlc2NyaXB0aW9uIjogIlJlcXVpcmVkLiAxNTAgY2hhcmFjdGVycyBvciBmZXdlci4gTGV0dGVycywgZGlnaXRzIGFuZCBALy4vKy8tL18gb25seS4iLCAidHlwZSI6ICJzdHJpbmcifSwgImVtYWlsIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImlzX3N0YWZmIjogeyJkZXNjcmlwdGlvbiI6ICJEZXNpZ25hdGVzIHdoZXRoZXIgdGhlIHVzZXIgY2FuIGxvZyBpbnRvIHRoaXMgYWRtaW4gc2l0ZS4iLCAidHlwZSI6ICJib29sZWFuIn19LCAicmVxdWlyZWQiOiBbInVzZXJuYW1lIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsidXNlcnMiXX0sICJwYXRjaCI6IHsib3BlcmF0aW9uSWQiOiAidXNlcnNfcGFydGlhbF91cGRhdGUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ1c2VybmFtZSI6IHsiZGVzY3JpcHRpb24iOiAiUmVxdWlyZWQuIDE1MCBjaGFyYWN0ZXJzIG9yIGZld2VyLiBMZXR0ZXJzLCBkaWdpdHMgYW5kIEAvLi8rLy0vXyBvbmx5LiIsICJ0eXBlIjogInN0cmluZyJ9LCAiZW1haWwiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiaXNfc3RhZmYiOiB7ImRlc2NyaXB0aW9uIjogIkRlc2lnbmF0ZXMgd2hldGhlciB0aGUgdXNlciBjYW4gbG9nIGludG8gdGhpcyBhZG1pbiBzaXRlLiIsICJ0eXBlIjogImJvb2xlYW4ifX19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsidXNlcnMiXX0sICJkZWxldGUiOiB7Im9wZXJhdGlvbklkIjogInVzZXJzX2RlbGV0ZSIsICJyZXNwb25zZXMiOiB7IjIwNCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJ1c2VycyJdfX0sICIvYXBpL3ZhY2FuY2llcy8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAidmFjYW5jaWVzX2xpc3QiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogInBhZ2UiLCAicmVxdWlyZWQiOiBmYWxzZSwgImluIjogInF1ZXJ5IiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbInZhY2FuY2llcyJdfSwgInBvc3QiOiB7Im9wZXJhdGlvbklkIjogInZhY2FuY2llc19jcmVhdGUiLCAicmVzcG9uc2VzIjogeyIyMDEiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7ImNvbXBhbnkiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogIm9iamVjdCJ9LCAidmVyaWZpZWQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImJvb2xlYW4ifSwgIm9wZW5fdGltZSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sICJkZXNjcmlwdGlvbiI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sICJjbG9zZV90aW1lIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifX0sICJyZXF1aXJlZCI6IFsiY29tcGFueSIsICJvcGVuX3RpbWUiLCAiY2xvc2VfdGltZSJdfX1dLCAiY29uc3VtZXMiOiBbImFwcGxpY2F0aW9uL2pzb24iXSwgInRhZ3MiOiBbInZhY2FuY2llcyJdfX0sICIvYXBpL3ZhY2FuY2llcy97aWR9LyI6IHsiZ2V0IjogeyJvcGVyYXRpb25JZCI6ICJ2YWNhbmNpZXNfcmVhZCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJ2YWNhbmNpZXMiXX0sICJwdXQiOiB7Im9wZXJhdGlvbklkIjogInZhY2FuY2llc191cGRhdGUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJjb21wYW55IjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJvYmplY3QifSwgInZlcmlmaWVkIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJib29sZWFuIn0sICJvcGVuX3RpbWUiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiZGVzY3JpcHRpb24iOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiY2xvc2VfdGltZSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn19LCAicmVxdWlyZWQiOiBbImNvbXBhbnkiLCAib3Blbl90aW1lIiwgImNsb3NlX3RpbWUiXX19XSwgImNvbnN1bWVzIjogWyJhcHBsaWNhdGlvbi9qc29uIl0sICJ0YWdzIjogWyJ2YWNhbmNpZXMiXX0sICJwYXRjaCI6IHsib3BlcmF0aW9uSWQiOiAidmFjYW5jaWVzX3BhcnRpYWxfdXBkYXRlIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCB7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsiY29tcGFueSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAib2JqZWN0In0sICJ2ZXJpZmllZCI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiYm9vbGVhbiJ9LCAib3Blbl90aW1lIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImRlc2NyaXB0aW9uIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImNsb3NlX3RpbWUiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9fX19XSwgImNvbnN1bWVzIjogWyJhcHBsaWNhdGlvbi9qc29uIl0sICJ0YWdzIjogWyJ2YWNhbmNpZXMiXX0sICJkZWxldGUiOiB7Im9wZXJhdGlvbklkIjogInZhY2FuY2llc19kZWxldGUiLCAicmVzcG9uc2VzIjogeyIyMDQiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsidmFjYW5jaWVzIl19fX0sICJzZWN1cml0eURlZmluaXRpb25zIjogeyJiYXNpYyI6IHsidHlwZSI6ICJiYXNpYyJ9fX0=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"application/openapi+json\", \"Allow\": \"GET, HEAD, OPTIONS\", \"Vary\": \"Accept\"}" - } -}, -{ - "model": "silk.response", - "pk": "c55d91de-53f1-42fd-8195-5a0348289988", - "fields": { - "request": "efb8ec32-b2e0-49d1-9f62-d83ba32057b5", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "c57eb807-ff83-492b-9ea8-f99f656dac27", - "fields": { - "request": "1b3bdb15-0dbe-494b-8f5f-bd562ce8464f", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "c58c0091-50bc-4b9a-a92c-5a3c6faf5868", - "fields": { - "request": "bb9ca922-d90f-4c12-aa43-8d78b288a067", - "status_code": 200, - "raw_body": "eyJzd2FnZ2VyIjogIjIuMCIsICJpbmZvIjogeyJ0aXRsZSI6ICIiLCAidmVyc2lvbiI6ICIifSwgInBhdGhzIjogeyIvYXBpL2FwcGxpY2F0aW9ucy8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAiYXBwbGljYXRpb25zX2xpc3QiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogInBhZ2UiLCAicmVxdWlyZWQiOiBmYWxzZSwgImluIjogInF1ZXJ5IiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbImFwcGxpY2F0aW9ucyJdfSwgInBvc3QiOiB7Im9wZXJhdGlvbklkIjogImFwcGxpY2F0aW9uc19jcmVhdGUiLCAicmVzcG9uc2VzIjogeyIyMDEiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InN0dWRlbnRfbnBtIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgInZhY2FuY3lfaWQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9fSwgInJlcXVpcmVkIjogWyJzdHVkZW50X25wbSIsICJ2YWNhbmN5X2lkIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsiYXBwbGljYXRpb25zIl19fSwgIi9hcGkvYXBwbGljYXRpb25zL3tpZH0vIjogeyJnZXQiOiB7Im9wZXJhdGlvbklkIjogImFwcGxpY2F0aW9uc19yZWFkIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbImFwcGxpY2F0aW9ucyJdfSwgInB1dCI6IHsib3BlcmF0aW9uSWQiOiAiYXBwbGljYXRpb25zX3VwZGF0ZSIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InN0dWRlbnRfbnBtIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgInZhY2FuY3lfaWQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9fSwgInJlcXVpcmVkIjogWyJzdHVkZW50X25wbSIsICJ2YWNhbmN5X2lkIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsiYXBwbGljYXRpb25zIl19LCAicGF0Y2giOiB7Im9wZXJhdGlvbklkIjogImFwcGxpY2F0aW9uc19wYXJ0aWFsX3VwZGF0ZSIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InN0dWRlbnRfbnBtIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgInZhY2FuY3lfaWQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9fX19XSwgImNvbnN1bWVzIjogWyJhcHBsaWNhdGlvbi9qc29uIl0sICJ0YWdzIjogWyJhcHBsaWNhdGlvbnMiXX0sICJkZWxldGUiOiB7Im9wZXJhdGlvbklkIjogImFwcGxpY2F0aW9uc19kZWxldGUiLCAicmVzcG9uc2VzIjogeyIyMDQiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsiYXBwbGljYXRpb25zIl19fSwgIi9hcGkvY29tcGFuaWVzLyI6IHsiZ2V0IjogeyJvcGVyYXRpb25JZCI6ICJjb21wYW5pZXNfbGlzdCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAicGFnZSIsICJyZXF1aXJlZCI6IGZhbHNlLCAiaW4iOiAicXVlcnkiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsiY29tcGFuaWVzIl19LCAicG9zdCI6IHsib3BlcmF0aW9uSWQiOiAiY29tcGFuaWVzX2NyZWF0ZSIsICJyZXNwb25zZXMiOiB7IjIwMSI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidXNlciI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAib2JqZWN0In0sICJkZXNjcmlwdGlvbiI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sICJ2ZXJpZmllZCI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiYm9vbGVhbiJ9LCAibG9nbyI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sICJhbGFtYXQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9fSwgInJlcXVpcmVkIjogWyJ1c2VyIiwgImRlc2NyaXB0aW9uIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsiY29tcGFuaWVzIl19fSwgIi9hcGkvY29tcGFuaWVzL3tpZH0vIjogeyJnZXQiOiB7Im9wZXJhdGlvbklkIjogImNvbXBhbmllc19yZWFkIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbImNvbXBhbmllcyJdfSwgInB1dCI6IHsib3BlcmF0aW9uSWQiOiAiY29tcGFuaWVzX3VwZGF0ZSIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InVzZXIiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogIm9iamVjdCJ9LCAiZGVzY3JpcHRpb24iOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAidmVyaWZpZWQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImJvb2xlYW4ifSwgImxvZ28iOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiYWxhbWF0IjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifX0sICJyZXF1aXJlZCI6IFsidXNlciIsICJkZXNjcmlwdGlvbiJdfX1dLCAiY29uc3VtZXMiOiBbImFwcGxpY2F0aW9uL2pzb24iXSwgInRhZ3MiOiBbImNvbXBhbmllcyJdfSwgInBhdGNoIjogeyJvcGVyYXRpb25JZCI6ICJjb21wYW5pZXNfcGFydGlhbF91cGRhdGUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ1c2VyIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJvYmplY3QifSwgImRlc2NyaXB0aW9uIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgInZlcmlmaWVkIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJib29sZWFuIn0sICJsb2dvIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImFsYW1hdCI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn19fX1dLCAiY29uc3VtZXMiOiBbImFwcGxpY2F0aW9uL2pzb24iXSwgInRhZ3MiOiBbImNvbXBhbmllcyJdfSwgImRlbGV0ZSI6IHsib3BlcmF0aW9uSWQiOiAiY29tcGFuaWVzX2RlbGV0ZSIsICJyZXNwb25zZXMiOiB7IjIwNCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJjb21wYW5pZXMiXX19LCAiL2FwaS9zdHVkZW50cy8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAic3R1ZGVudHNfbGlzdCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAicGFnZSIsICJyZXF1aXJlZCI6IGZhbHNlLCAiaW4iOiAicXVlcnkiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsic3R1ZGVudHMiXX0sICJwb3N0IjogeyJvcGVyYXRpb25JZCI6ICJzdHVkZW50c19jcmVhdGUiLCAicmVzcG9uc2VzIjogeyIyMDEiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InVzZXIiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogIm9iamVjdCJ9LCAibnBtIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJpbnRlZ2VyIn0sICJyZXN1bWUiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImZpbGUifSwgInBob25lX251bWJlciI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sICJib29rbWFya2VkX3ZhY2FuY2llcyI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiYXJyYXkiLCAiaXRlbXMiOiB7InR5cGUiOiAic3RyaW5nIn19fSwgInJlcXVpcmVkIjogWyJ1c2VyIiwgIm5wbSJdfX1dLCAiY29uc3VtZXMiOiBbImFwcGxpY2F0aW9uL2pzb24iXSwgInRhZ3MiOiBbInN0dWRlbnRzIl19fSwgIi9hcGkvc3R1ZGVudHMve2lkfS8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAic3R1ZGVudHNfcmVhZCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJzdHVkZW50cyJdfSwgInB1dCI6IHsib3BlcmF0aW9uSWQiOiAic3R1ZGVudHNfdXBkYXRlIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCB7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidXNlciI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAib2JqZWN0In0sICJucG0iOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImludGVnZXIifSwgInJlc3VtZSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiZmlsZSJ9LCAicGhvbmVfbnVtYmVyIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImJvb2ttYXJrZWRfdmFjYW5jaWVzIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJhcnJheSIsICJpdGVtcyI6IHsidHlwZSI6ICJzdHJpbmcifX19LCAicmVxdWlyZWQiOiBbInVzZXIiLCAibnBtIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsic3R1ZGVudHMiXX0sICJwYXRjaCI6IHsib3BlcmF0aW9uSWQiOiAic3R1ZGVudHNfcGFydGlhbF91cGRhdGUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ1c2VyIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJvYmplY3QifSwgIm5wbSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiaW50ZWdlciJ9LCAicmVzdW1lIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJmaWxlIn0sICJwaG9uZV9udW1iZXIiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiYm9va21hcmtlZF92YWNhbmNpZXMiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImFycmF5IiwgIml0ZW1zIjogeyJ0eXBlIjogInN0cmluZyJ9fX19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsic3R1ZGVudHMiXX0sICJkZWxldGUiOiB7Im9wZXJhdGlvbklkIjogInN0dWRlbnRzX2RlbGV0ZSIsICJyZXNwb25zZXMiOiB7IjIwNCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJzdHVkZW50cyJdfX0sICIvYXBpL3N0dWRlbnRzL3tpZH0vYm9va21hcmtlZC12YWNhbmNpZXMvIjogeyJwb3N0IjogeyJvcGVyYXRpb25JZCI6ICJzdHVkZW50c19ib29rbWFya192YWNhbmNpZXMiLCAicmVzcG9uc2VzIjogeyIyMDEiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ1c2VyIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJvYmplY3QifSwgIm5wbSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiaW50ZWdlciJ9LCAicmVzdW1lIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJmaWxlIn0sICJwaG9uZV9udW1iZXIiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiYm9va21hcmtlZF92YWNhbmNpZXMiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImFycmF5IiwgIml0ZW1zIjogeyJ0eXBlIjogInN0cmluZyJ9fX0sICJyZXF1aXJlZCI6IFsidXNlciIsICJucG0iXX19XSwgImNvbnN1bWVzIjogWyJhcHBsaWNhdGlvbi9qc29uIl0sICJ0YWdzIjogWyJzdHVkZW50cyJdfSwgImRlbGV0ZSI6IHsib3BlcmF0aW9uSWQiOiAic3R1ZGVudHNfdW5ib29rbWFya192YWNhbmNpZXMiLCAicmVzcG9uc2VzIjogeyIyMDQiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsic3R1ZGVudHMiXX19LCAiL2FwaS9zdXBlcnZpc29ycy8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAic3VwZXJ2aXNvcnNfbGlzdCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAicGFnZSIsICJyZXF1aXJlZCI6IGZhbHNlLCAiaW4iOiAicXVlcnkiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsic3VwZXJ2aXNvcnMiXX0sICJwb3N0IjogeyJvcGVyYXRpb25JZCI6ICJzdXBlcnZpc29yc19jcmVhdGUiLCAicmVzcG9uc2VzIjogeyIyMDEiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InVzZXIiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogIm9iamVjdCJ9LCAibmlwIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJpbnRlZ2VyIn19LCAicmVxdWlyZWQiOiBbInVzZXIiLCAibmlwIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsic3VwZXJ2aXNvcnMiXX19LCAiL2FwaS9zdXBlcnZpc29ycy97aWR9LyI6IHsiZ2V0IjogeyJvcGVyYXRpb25JZCI6ICJzdXBlcnZpc29yc19yZWFkIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbInN1cGVydmlzb3JzIl19LCAicHV0IjogeyJvcGVyYXRpb25JZCI6ICJzdXBlcnZpc29yc191cGRhdGUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ1c2VyIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJvYmplY3QifSwgIm5pcCI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiaW50ZWdlciJ9fSwgInJlcXVpcmVkIjogWyJ1c2VyIiwgIm5pcCJdfX1dLCAiY29uc3VtZXMiOiBbImFwcGxpY2F0aW9uL2pzb24iXSwgInRhZ3MiOiBbInN1cGVydmlzb3JzIl19LCAicGF0Y2giOiB7Im9wZXJhdGlvbklkIjogInN1cGVydmlzb3JzX3BhcnRpYWxfdXBkYXRlIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCB7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidXNlciI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAib2JqZWN0In0sICJuaXAiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImludGVnZXIifX19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsic3VwZXJ2aXNvcnMiXX0sICJkZWxldGUiOiB7Im9wZXJhdGlvbklkIjogInN1cGVydmlzb3JzX2RlbGV0ZSIsICJyZXNwb25zZXMiOiB7IjIwNCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJzdXBlcnZpc29ycyJdfX0sICIvYXBpL3VzZXJzLyI6IHsiZ2V0IjogeyJvcGVyYXRpb25JZCI6ICJ1c2Vyc19saXN0IiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJwYWdlIiwgInJlcXVpcmVkIjogZmFsc2UsICJpbiI6ICJxdWVyeSIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJ1c2VycyJdfSwgInBvc3QiOiB7Im9wZXJhdGlvbklkIjogInVzZXJzX2NyZWF0ZSIsICJyZXNwb25zZXMiOiB7IjIwMSI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidXNlcm5hbWUiOiB7ImRlc2NyaXB0aW9uIjogIlJlcXVpcmVkLiAxNTAgY2hhcmFjdGVycyBvciBmZXdlci4gTGV0dGVycywgZGlnaXRzIGFuZCBALy4vKy8tL18gb25seS4iLCAidHlwZSI6ICJzdHJpbmcifSwgImVtYWlsIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImlzX3N0YWZmIjogeyJkZXNjcmlwdGlvbiI6ICJEZXNpZ25hdGVzIHdoZXRoZXIgdGhlIHVzZXIgY2FuIGxvZyBpbnRvIHRoaXMgYWRtaW4gc2l0ZS4iLCAidHlwZSI6ICJib29sZWFuIn19LCAicmVxdWlyZWQiOiBbInVzZXJuYW1lIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsidXNlcnMiXX19LCAiL2FwaS91c2Vycy9tZS8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAidXNlcnNfbWUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbXSwgInRhZ3MiOiBbInVzZXJzIl19fSwgIi9hcGkvdXNlcnMve2lkfS8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAidXNlcnNfcmVhZCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJ1c2VycyJdfSwgInB1dCI6IHsib3BlcmF0aW9uSWQiOiAidXNlcnNfdXBkYXRlIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCB7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidXNlcm5hbWUiOiB7ImRlc2NyaXB0aW9uIjogIlJlcXVpcmVkLiAxNTAgY2hhcmFjdGVycyBvciBmZXdlci4gTGV0dGVycywgZGlnaXRzIGFuZCBALy4vKy8tL18gb25seS4iLCAidHlwZSI6ICJzdHJpbmcifSwgImVtYWlsIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImlzX3N0YWZmIjogeyJkZXNjcmlwdGlvbiI6ICJEZXNpZ25hdGVzIHdoZXRoZXIgdGhlIHVzZXIgY2FuIGxvZyBpbnRvIHRoaXMgYWRtaW4gc2l0ZS4iLCAidHlwZSI6ICJib29sZWFuIn19LCAicmVxdWlyZWQiOiBbInVzZXJuYW1lIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsidXNlcnMiXX0sICJwYXRjaCI6IHsib3BlcmF0aW9uSWQiOiAidXNlcnNfcGFydGlhbF91cGRhdGUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ1c2VybmFtZSI6IHsiZGVzY3JpcHRpb24iOiAiUmVxdWlyZWQuIDE1MCBjaGFyYWN0ZXJzIG9yIGZld2VyLiBMZXR0ZXJzLCBkaWdpdHMgYW5kIEAvLi8rLy0vXyBvbmx5LiIsICJ0eXBlIjogInN0cmluZyJ9LCAiZW1haWwiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiaXNfc3RhZmYiOiB7ImRlc2NyaXB0aW9uIjogIkRlc2lnbmF0ZXMgd2hldGhlciB0aGUgdXNlciBjYW4gbG9nIGludG8gdGhpcyBhZG1pbiBzaXRlLiIsICJ0eXBlIjogImJvb2xlYW4ifX19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsidXNlcnMiXX0sICJkZWxldGUiOiB7Im9wZXJhdGlvbklkIjogInVzZXJzX2RlbGV0ZSIsICJyZXNwb25zZXMiOiB7IjIwNCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJ1c2VycyJdfX0sICIvYXBpL3ZhY2FuY2llcy8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAidmFjYW5jaWVzX2xpc3QiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogInBhZ2UiLCAicmVxdWlyZWQiOiBmYWxzZSwgImluIjogInF1ZXJ5IiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbInZhY2FuY2llcyJdfSwgInBvc3QiOiB7Im9wZXJhdGlvbklkIjogInZhY2FuY2llc19jcmVhdGUiLCAicmVzcG9uc2VzIjogeyIyMDEiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InZlcmlmaWVkIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJib29sZWFuIn0sICJvcGVuX3RpbWUiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiZGVzY3JpcHRpb24iOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiY2xvc2VfdGltZSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sICJjb21wYW55IjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifX0sICJyZXF1aXJlZCI6IFsib3Blbl90aW1lIiwgImNsb3NlX3RpbWUiLCAiY29tcGFueSJdfX1dLCAiY29uc3VtZXMiOiBbImFwcGxpY2F0aW9uL2pzb24iXSwgInRhZ3MiOiBbInZhY2FuY2llcyJdfX0sICIvYXBpL3ZhY2FuY2llcy97aWR9LyI6IHsiZ2V0IjogeyJvcGVyYXRpb25JZCI6ICJ2YWNhbmNpZXNfcmVhZCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJ2YWNhbmNpZXMiXX0sICJwdXQiOiB7Im9wZXJhdGlvbklkIjogInZhY2FuY2llc191cGRhdGUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ2ZXJpZmllZCI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiYm9vbGVhbiJ9LCAib3Blbl90aW1lIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImRlc2NyaXB0aW9uIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImNsb3NlX3RpbWUiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiY29tcGFueSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn19LCAicmVxdWlyZWQiOiBbIm9wZW5fdGltZSIsICJjbG9zZV90aW1lIiwgImNvbXBhbnkiXX19XSwgImNvbnN1bWVzIjogWyJhcHBsaWNhdGlvbi9qc29uIl0sICJ0YWdzIjogWyJ2YWNhbmNpZXMiXX0sICJwYXRjaCI6IHsib3BlcmF0aW9uSWQiOiAidmFjYW5jaWVzX3BhcnRpYWxfdXBkYXRlIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCB7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidmVyaWZpZWQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImJvb2xlYW4ifSwgIm9wZW5fdGltZSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sICJkZXNjcmlwdGlvbiI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sICJjbG9zZV90aW1lIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImNvbXBhbnkiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9fX19XSwgImNvbnN1bWVzIjogWyJhcHBsaWNhdGlvbi9qc29uIl0sICJ0YWdzIjogWyJ2YWNhbmNpZXMiXX0sICJkZWxldGUiOiB7Im9wZXJhdGlvbklkIjogInZhY2FuY2llc19kZWxldGUiLCAicmVzcG9uc2VzIjogeyIyMDQiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsidmFjYW5jaWVzIl19fX0sICJzZWN1cml0eURlZmluaXRpb25zIjogeyJiYXNpYyI6IHsidHlwZSI6ICJiYXNpYyJ9fX0=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"application/openapi+json\", \"Allow\": \"GET, HEAD, OPTIONS\", \"Vary\": \"Accept\"}" - } -}, -{ - "model": "silk.response", - "pk": "c611a555-38b7-479b-bc9e-253005afe060", - "fields": { - "request": "0cdfed90-bb34-446f-930e-952829d4ac39", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPkFyZSB5b3Ugc3VyZT8gfCBEamFuZ28gc2l0ZSBhZG1pbjwvdGl0bGU+CjxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvYWRtaW4vY3NzL2Jhc2UuY3NzIiAvPgoKCgogICAgPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9jb3JlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IvanF1ZXJ5L2pxdWVyeS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvanF1ZXJ5LmluaXQuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2FkbWluL1JlbGF0ZWRPYmplY3RMb29rdXBzLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hY3Rpb25zLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy91cmxpZnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL3ByZXBvcHVsYXRlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IveHJlZ2V4cC94cmVnZXhwLmpzIj48L3NjcmlwdD4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvY2FuY2VsLmpzIj48L3NjcmlwdD4KCjxtZXRhIG5hbWU9InJvYm90cyIgY29udGVudD0iTk9ORSxOT0FSQ0hJVkUiIC8+CjwvaGVhZD4KCgo8Ym9keSBjbGFzcz0iIGFwcC1jb3JlIG1vZGVsLWNvbXBhbnkgZGVsZXRlLWNvbmZpcm1hdGlvbiBkZWxldGUtc2VsZWN0ZWQtY29uZmlybWF0aW9uIgogIGRhdGEtYWRtaW4tdXRjLW9mZnNldD0iMCI+Cgo8IS0tIENvbnRhaW5lciAtLT4KPGRpdiBpZD0iY29udGFpbmVyIj4KCiAgICAKICAgIDwhLS0gSGVhZGVyIC0tPgogICAgPGRpdiBpZD0iaGVhZGVyIj4KICAgICAgICA8ZGl2IGlkPSJicmFuZGluZyI+CiAgICAgICAgCjxoMSBpZD0ic2l0ZS1uYW1lIj48YSBocmVmPSIvYWRtaW4vIj5EamFuZ28gYWRtaW5pc3RyYXRpb248L2E+PC9oMT4KCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgPGRpdiBpZD0idXNlci10b29scyI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgV2VsY29tZSwKICAgICAgICAgICAgICAgIDxzdHJvbmc+a2FwZTwvc3Ryb25nPi4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iLyI+VmlldyBzaXRlPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9wYXNzd29yZF9jaGFuZ2UvIj5DaGFuZ2UgcGFzc3dvcmQ8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2xvZ291dC8iPkxvZyBvdXQ8L2E+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIAogICAgPC9kaXY+CiAgICA8IS0tIEVORCBIZWFkZXIgLS0+CiAgICAKPGRpdiBjbGFzcz0iYnJlYWRjcnVtYnMiPgo8YSBocmVmPSIvYWRtaW4vIj5Ib21lPC9hPgomcnNhcXVvOyA8YSBocmVmPSIvYWRtaW4vY29yZS8iPkNvcmU8L2E+CiZyc2FxdW87IDxhIGhyZWY9Ii9hZG1pbi9jb3JlL2NvbXBhbnkvIj5Db21wYW55czwvYT4KJnJzYXF1bzsgRGVsZXRlIG11bHRpcGxlIG9iamVjdHMKPC9kaXY+CgogICAgCgogICAgCiAgICAgICAgCiAgICAKCiAgICA8IS0tIENvbnRlbnQgLS0+CiAgICA8ZGl2IGlkPSJjb250ZW50IiBjbGFzcz0iY29sTSI+CiAgICAgICAgCiAgICAgICAgPGgxPkFyZSB5b3Ugc3VyZT88L2gxPgogICAgICAgIAoKICAgIDxwPkFyZSB5b3Ugc3VyZSB5b3Ugd2FudCB0byBkZWxldGUgdGhlIHNlbGVjdGVkIGNvbXBhbnk/IEFsbCBvZiB0aGUgZm9sbG93aW5nIG9iamVjdHMgYW5kIHRoZWlyIHJlbGF0ZWQgaXRlbXMgd2lsbCBiZSBkZWxldGVkOjwvcD4KICAgIAo8aDI+U3VtbWFyeTwvaDI+Cjx1bD4KICAgIAogICAgPGxpPkNvbXBhbnlzOiAxPC9saT4KICAgIAo8L3VsPgoKICAgIDxoMj5PYmplY3RzPC9oMj4KICAgIAogICAgICAgIDx1bD4JPGxpPkNvbXBhbnk6IDxhIGhyZWY9Ii9hZG1pbi9jb3JlL2NvbXBhbnkvMS9jaGFuZ2UvIj5Db21wYW55IG9iamVjdDwvYT48L2xpPjwvdWw+CiAgICAKICAgIDxmb3JtIG1ldGhvZD0icG9zdCI+PGlucHV0IHR5cGU9J2hpZGRlbicgbmFtZT0nY3NyZm1pZGRsZXdhcmV0b2tlbicgdmFsdWU9JzRSYXlIY3R3SmExMXJ2QmU2WmZhS1huazNvS2Q5M3drdFhoblRJbHJ3N2NxT0RER1BxS0NDRTQ0MWpRMnQzczknIC8+CiAgICA8ZGl2PgogICAgCiAgICA8aW5wdXQgdHlwZT0iaGlkZGVuIiBuYW1lPSJfc2VsZWN0ZWRfYWN0aW9uIiB2YWx1ZT0iMSIgLz4KICAgIAogICAgPGlucHV0IHR5cGU9ImhpZGRlbiIgbmFtZT0iYWN0aW9uIiB2YWx1ZT0iZGVsZXRlX3NlbGVjdGVkIiAvPgogICAgPGlucHV0IHR5cGU9ImhpZGRlbiIgbmFtZT0icG9zdCIgdmFsdWU9InllcyIgLz4KICAgIDxpbnB1dCB0eXBlPSJzdWJtaXQiIHZhbHVlPSJZZXMsIEknbSBzdXJlIiAvPgogICAgPGEgaHJlZj0iIyIgY2xhc3M9ImJ1dHRvbiBjYW5jZWwtbGluayI+Tm8sIHRha2UgbWUgYmFjazwvYT4KICAgIDwvZGl2PgogICAgPC9mb3JtPgoKCiAgICAgICAgCiAgICAgICAgPGJyIGNsYXNzPSJjbGVhciIgLz4KICAgIDwvZGl2PgogICAgPCEtLSBFTkQgQ29udGVudCAtLT4KCiAgICA8ZGl2IGlkPSJmb290ZXIiPjwvZGl2Pgo8L2Rpdj4KPCEtLSBFTkQgQ29udGFpbmVyIC0tPgoKPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 14:55:24 GMT\", \"Expires\": \"Mon, 27 Mar 2017 14:55:24 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "c6c948ec-ac18-4ad4-8770-373a524d9749", - "fields": { - "request": "66beefa4-17a6-4c0c-88f8-25a1f34be9ef", - "status_code": 500, - "raw_body": "QXR0cmlidXRlRXJyb3IgYXQgL2FwaS9zdHVkZW50cy80L2Jvb2ttYXJrZWQtdmFjYW5jaWVzLwonbGlzdCcgb2JqZWN0IGhhcyBubyBhdHRyaWJ1dGUgJ2lkJwoKUmVxdWVzdCBNZXRob2Q6IFBPU1QKUmVxdWVzdCBVUkw6IGh0dHA6Ly8xMjcuMC4wLjE6ODAwMC9hcGkvc3R1ZGVudHMvNC9ib29rbWFya2VkLXZhY2FuY2llcy8KRGphbmdvIFZlcnNpb246IDEuMTAuNQpQeXRob24gRXhlY3V0YWJsZTogQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXHB5dGhvbi5leGUKUHl0aG9uIFZlcnNpb246IDMuNi4wClB5dGhvbiBQYXRoOiBbJ0Q6XFxQUExBJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXHB5dGhvbjM2LnppcCcsICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyXFxETExzJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXGxpYicsICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXGxpYlxcc2l0ZS1wYWNrYWdlcyddClNlcnZlciB0aW1lOiBNb24sIDI3IE1hciAyMDE3IDE1OjU3OjIyICswMDAwCkluc3RhbGxlZCBBcHBsaWNhdGlvbnM6ClsnZGphbmdvLmNvbnRyaWIuYWRtaW4nLAogJ2RqYW5nby5jb250cmliLmF1dGgnLAogJ2RqYW5nby5jb250cmliLmNvbnRlbnR0eXBlcycsCiAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMnLAogJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzJywKICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcycsCiAnd2VicGFja19sb2FkZXInLAogJ2NvcmUnLAogJ3Jlc3RfZnJhbWV3b3JrJywKICdkamFuZ29fbm9zZScsCiAncmVzdF9mcmFtZXdvcmtfc3dhZ2dlcicsCiAnc2lsayddCkluc3RhbGxlZCBNaWRkbGV3YXJlOgpbJ2RqYW5nby5taWRkbGV3YXJlLnNlY3VyaXR5LlNlY3VyaXR5TWlkZGxld2FyZScsCiAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMubWlkZGxld2FyZS5TZXNzaW9uTWlkZGxld2FyZScsCiAnZGphbmdvLm1pZGRsZXdhcmUuY29tbW9uLkNvbW1vbk1pZGRsZXdhcmUnLAogJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5hdXRoLm1pZGRsZXdhcmUuQXV0aGVudGljYXRpb25NaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5tZXNzYWdlcy5taWRkbGV3YXJlLk1lc3NhZ2VNaWRkbGV3YXJlJywKICdkamFuZ28ubWlkZGxld2FyZS5jbGlja2phY2tpbmcuWEZyYW1lT3B0aW9uc01pZGRsZXdhcmUnLAogJ3NpbGsubWlkZGxld2FyZS5TaWxreU1pZGRsZXdhcmUnXQoKClRyYWNlYmFjazogIAoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXGRqYW5nb1xjb3JlXGhhbmRsZXJzXGV4Y2VwdGlvbi5weSIgaW4gaW5uZXIKICAzOS4gICAgICAgICAgICAgcmVzcG9uc2UgPSBnZXRfcmVzcG9uc2UocmVxdWVzdCkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cY29yZVxoYW5kbGVyc1xiYXNlLnB5IiBpbiBfZ2V0X3Jlc3BvbnNlCiAgMTg3LiAgICAgICAgICAgICAgICAgcmVzcG9uc2UgPSBzZWxmLnByb2Nlc3NfZXhjZXB0aW9uX2J5X21pZGRsZXdhcmUoZSwgcmVxdWVzdCkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cY29yZVxoYW5kbGVyc1xiYXNlLnB5IiBpbiBfZ2V0X3Jlc3BvbnNlCiAgMTg1LiAgICAgICAgICAgICAgICAgcmVzcG9uc2UgPSB3cmFwcGVkX2NhbGxiYWNrKHJlcXVlc3QsICpjYWxsYmFja19hcmdzLCAqKmNhbGxiYWNrX2t3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cdmlld3NcZGVjb3JhdG9yc1xjc3JmLnB5IiBpbiB3cmFwcGVkX3ZpZXcKICA1OC4gICAgICAgICByZXR1cm4gdmlld19mdW5jKCphcmdzLCAqKmt3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3c2V0cy5weSIgaW4gdmlldwogIDgzLiAgICAgICAgICAgICByZXR1cm4gc2VsZi5kaXNwYXRjaChyZXF1ZXN0LCAqYXJncywgKiprd2FyZ3MpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNccmVzdF9mcmFtZXdvcmtcdmlld3MucHkiIGluIGRpc3BhdGNoCiAgNDgzLiAgICAgICAgICAgICByZXNwb25zZSA9IHNlbGYuaGFuZGxlX2V4Y2VwdGlvbihleGMpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNccmVzdF9mcmFtZXdvcmtcdmlld3MucHkiIGluIGhhbmRsZV9leGNlcHRpb24KICA0NDMuICAgICAgICAgICAgIHNlbGYucmFpc2VfdW5jYXVnaHRfZXhjZXB0aW9uKGV4YykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3cy5weSIgaW4gZGlzcGF0Y2gKICA0ODAuICAgICAgICAgICAgIHJlc3BvbnNlID0gaGFuZGxlcihyZXF1ZXN0LCAqYXJncywgKiprd2FyZ3MpCgpGaWxlICJEOlxQUExBXGNvcmVcdmlld3NcYWNjb3VudHMucHkiIGluIGJvb2ttYXJrX3ZhY2FuY2llcwogIDMwLiAgICAgICAgIHZhY2FuY3kgPSBnZXRfb2JqZWN0X29yXzQwNChWYWNhbmN5Lm9iamVjdHMuYWxsKCksIHBrPXJlcXVlc3QuZGF0YS5pZCkKCkV4Y2VwdGlvbiBUeXBlOiBBdHRyaWJ1dGVFcnJvciBhdCAvYXBpL3N0dWRlbnRzLzQvYm9va21hcmtlZC12YWNhbmNpZXMvCkV4Y2VwdGlvbiBWYWx1ZTogJ2xpc3QnIG9iamVjdCBoYXMgbm8gYXR0cmlidXRlICdpZCcKUmVxdWVzdCBpbmZvcm1hdGlvbjoKVVNFUjoga2FwZQoKR0VUOiBObyBHRVQgZGF0YQoKUE9TVDogTm8gUE9TVCBkYXRhCgpGSUxFUzogTm8gRklMRVMgZGF0YQoKQ09PS0lFUzoKc2Vzc2lvbmlkID0gJ2JsdDg3N2c1ZmptdWN4eTNkZDV1eGNpemF2YjlvcG92Jwpjc3JmdG9rZW4gPSAnMUVFUDJTd0t0MUs5UWJXbkZQU3lXUElpYnRPN01BYVZxS0xFZW9vRmdZVnlkallQb2duME93cDI5b1VXNkE2SycKCk1FVEE6CkFMTFVTRVJTUFJPRklMRSA9ICdDOlxcUHJvZ3JhbURhdGEnCkFQUERBVEEgPSAnQzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmcnCkNPTU1PTlBST0dSQU1GSUxFUyA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcQ29tbW9uIEZpbGVzJwpDT01NT05QUk9HUkFNRklMRVMoWDg2KSA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcQ29tbW9uIEZpbGVzJwpDT01NT05QUk9HUkFNVzY0MzIgPSAnQzpcXFByb2dyYW0gRmlsZXNcXENvbW1vbiBGaWxlcycKQ09NUFVURVJOQU1FID0gJ0ZBUkhBTicKQ09NU1BFQyA9ICdDOlxcV0lORE9XU1xcc3lzdGVtMzJcXGNtZC5leGUnCkNPTlRFTlRfTEVOR1RIID0gJzE0NycKQ09OVEVOVF9UWVBFID0gJ2FwcGxpY2F0aW9uL2pzb24nCkNTUkZfQ09PS0lFID0gJzFFRVAyU3dLdDFLOVFiV25GUFN5V1BJaWJ0TzdNQWFWcUtMRWVvb0ZnWVZ5ZGpZUG9nbjBPd3AyOW9VVzZBNksnCkRKQU5HT19TRVRUSU5HU19NT0RVTEUgPSAna2FwZS5zZXR0aW5ncycKRlBTX0JST1dTRVJfQVBQX1BST0ZJTEVfU1RSSU5HID0gJ0ludGVybmV0IEV4cGxvcmVyJwpGUFNfQlJPV1NFUl9VU0VSX1BST0ZJTEVfU1RSSU5HID0gJ0RlZmF1bHQnCkZQX05PX0hPU1RfQ0hFQ0sgPSAnTk8nCkdBVEVXQVlfSU5URVJGQUNFID0gJ0NHSS8xLjEnCkhPTUVEUklWRSA9ICdDOicKSE9NRVBBVEggPSAnXFxVc2Vyc1xcZmFyaGFfMDAwJwpIVFRQX0FDQ0VQVCA9ICdhcHBsaWNhdGlvbi9qc29uJwpIVFRQX0FDQ0VQVF9FTkNPRElORyA9ICdnemlwLCBkZWZsYXRlLCBicicKSFRUUF9BQ0NFUFRfTEFOR1VBR0UgPSAnaWQtSUQsaWQ7cT0wLjgsZW4tVVM7cT0wLjYsZW47cT0wLjQnCkhUVFBfQ09OTkVDVElPTiA9ICdrZWVwLWFsaXZlJwpIVFRQX0NPT0tJRSA9ICdzZXNzaW9uaWQ9Ymx0ODc3ZzVmam11Y3h5M2RkNXV4Y2l6YXZiOW9wb3Y7IGNzcmZ0b2tlbj0xRUVQMlN3S3QxSzlRYlduRlBTeVdQSWlidE83TUFhVnFLTEVlb29GZ1lWeWRqWVBvZ24wT3dwMjlvVVc2QTZLJwpIVFRQX0hPU1QgPSAnMTI3LjAuMC4xOjgwMDAnCkhUVFBfT1JJR0lOID0gJ2h0dHA6Ly8xMjcuMC4wLjE6ODAwMCcKSFRUUF9SRUZFUkVSID0gJ2h0dHA6Ly8xMjcuMC4wLjE6ODAwMC9hcGknCkhUVFBfVVNFUl9BR0VOVCA9ICdNb3ppbGxhLzUuMCAoV2luZG93cyBOVCAxMC4wOyBXT1c2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzU2LjAuMjkyNC44NyBTYWZhcmkvNTM3LjM2JwpIVFRQX1hfQ1NSRlRPS0VOID0gJ2pxOTFCdUY1ZTVSN1NqTUZSYzJUTmZ2V1U4bERPNnd5SXdnUU4weDAxMjJ3ZnJPN0FEeGxGV2NHUzNyczg2c24nCkxPQ0FMQVBQREFUQSA9ICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWwnCkxPR09OU0VSVkVSID0gJ1xcXFxGQVJIQU4nCk5VTUJFUl9PRl9QUk9DRVNTT1JTID0gJzInCk9ORURSSVZFID0gJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxPbmVEcml2ZScKT1MgPSAnV2luZG93c19OVCcKUEFUSCA9ICdDOlxcUHJvZ3JhbURhdGFcXE9yYWNsZVxcSmF2YVxcamF2YXBhdGg7QzpcXFByb2dyYW0gRmlsZXNcXEhhc2tlbGxcXGJpbjtDOlxcUHJvZ3JhbSBGaWxlc1xcSGFza2VsbCBQbGF0Zm9ybVxcNy4xMC4zXFxsaWJcXGV4dHJhbGlic1xcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxIYXNrZWxsIFBsYXRmb3JtXFw3LjEwLjNcXGJpbjtDOlxcV0lORE9XU1xcc3lzdGVtMzI7QzpcXFdJTkRPV1M7QzpcXFdJTkRPV1NcXFN5c3RlbTMyXFxXYmVtO0M6XFxXSU5ET1dTXFxTeXN0ZW0zMlxcV2luZG93c1Bvd2VyU2hlbGxcXHYxLjBcXDtDOlxcUHJvZ3JhbSBGaWxlc1xcSGFza2VsbCBQbGF0Zm9ybVxcNy4xMC4zXFxtaW5nd1xcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxKYXZhXFxqZGsxLjguMF83N1xcYmluO0M6XFxjeWd3aW42NFxcYmluOyVsb2NhbGFwcGRhdGElXFxNaWNyb3NvZnRcXFdpbmRvd3NBcHBzO0Q6XFxYQU1QUFxccGhwO0M6XFxQcm9ncmFtIEZpbGVzXFxHaXRcXGNtZDtDOlxceGFtcHBcXHBocDtDOlxcUHJvZ3JhbURhdGFcXENvbXBvc2VyU2V0dXBcXGJpbjtDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcbm9kZWpzXFw7QzpcXFByb2dyYW0gRmlsZXNcXFBvc3RncmVTUUxcXDkuNlxcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxNQVRMQUJcXFIyMDE3YVxcYmluO0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXFNjcmlwdHNcXDtDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyXFw7QzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmdcXGNhYmFsXFxiaW47RDpcXFhBTVBQXFxwaHA7QzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmdcXENvbXBvc2VyXFx2ZW5kb3JcXGJpbjtDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXE1pY3Jvc29mdFxcV2luZG93c0FwcHM7QzpcXHB5dGhvbi0zLjYuMCcKUEFUSEVYVCA9ICcuQ09NOy5FWEU7LkJBVDsuQ01EOy5WQlM7LlZCRTsuSlM7LkpTRTsuV1NGOy5XU0g7Lk1TQycKUEFUSF9JTkZPID0gJy9hcGkvc3R1ZGVudHMvNC9ib29rbWFya2VkLXZhY2FuY2llcy8nClBST0NFU1NPUl9BUkNISVRFQ1RVUkUgPSAneDg2JwpQUk9DRVNTT1JfQVJDSElURVc2NDMyID0gJ0FNRDY0JwpQUk9DRVNTT1JfSURFTlRJRklFUiA9ICdJbnRlbDY0IEZhbWlseSA2IE1vZGVsIDU4IFN0ZXBwaW5nIDksIEdlbnVpbmVJbnRlbCcKUFJPQ0VTU09SX0xFVkVMID0gJzYnClBST0NFU1NPUl9SRVZJU0lPTiA9ICczYTA5JwpQUk9HUkFNREFUQSA9ICdDOlxcUHJvZ3JhbURhdGEnClBST0dSQU1GSUxFUyA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KScKUFJPR1JBTUZJTEVTKFg4NikgPSAnQzpcXFByb2dyYW0gRmlsZXMgKHg4NiknClBST0dSQU1XNjQzMiA9ICdDOlxcUHJvZ3JhbSBGaWxlcycKUFJPTVBUID0gJyRQJEcnClBTTU9EVUxFUEFUSCA9ICdDOlxcV0lORE9XU1xcc3lzdGVtMzJcXFdpbmRvd3NQb3dlclNoZWxsXFx2MS4wXFxNb2R1bGVzXFwnClBVQkxJQyA9ICdDOlxcVXNlcnNcXFB1YmxpYycKUVVFUllfU1RSSU5HID0gJycKUkVNT1RFX0FERFIgPSAnMTI3LjAuMC4xJwpSRU1PVEVfSE9TVCA9ICcnClJFUVVFU1RfTUVUSE9EID0gJ1BPU1QnClJVTl9NQUlOID0gJ3RydWUnClNDUklQVF9OQU1FID0gJycKU0VSVkVSX05BTUUgPSAnRmFyaGFuJwpTRVJWRVJfUE9SVCA9ICc4MDAwJwpTRVJWRVJfUFJPVE9DT0wgPSAnSFRUUC8xLjEnClNFUlZFUl9TT0ZUV0FSRSA9ICdXU0dJU2VydmVyLzAuMicKU0VTU0lPTk5BTUUgPSAnQ29uc29sZScKU1lTVEVNRFJJVkUgPSAnQzonClNZU1RFTVJPT1QgPSAnQzpcXFdJTkRPV1MnClRFTVAgPSAnQzpcXFVzZXJzXFxGQVJIQV9+MVxcQXBwRGF0YVxcTG9jYWxcXFRlbXAnClRNUCA9ICdDOlxcVXNlcnNcXEZBUkhBX34xXFxBcHBEYXRhXFxMb2NhbFxcVGVtcCcKVVNFUkRPTUFJTiA9ICdGYXJoYW4nClVTRVJET01BSU5fUk9BTUlOR1BST0ZJTEUgPSAnRmFyaGFuJwpVU0VSTkFNRSA9ICdGYXJoYW4gRmFyYXNkYWsnClVTRVJQUk9GSUxFID0gJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwJwpWQk9YX01TSV9JTlNUQUxMX1BBVEggPSAnQzpcXFByb2dyYW0gRmlsZXNcXE9yYWNsZVxcVmlydHVhbEJveFxcJwpXSU5ESVIgPSAnQzpcXFdJTkRPV1MnCndzZ2kuZXJyb3JzID0gPF9pby5UZXh0SU9XcmFwcGVyIG5hbWU9JzxzdGRlcnI+JyBtb2RlPSd3JyBlbmNvZGluZz0ndXRmLTgnPgp3c2dpLmZpbGVfd3JhcHBlciA9ICcnCndzZ2kuaW5wdXQgPSA8X2lvLkJ1ZmZlcmVkUmVhZGVyIG5hbWU9MjAwMD4Kd3NnaS5tdWx0aXByb2Nlc3MgPSBGYWxzZQp3c2dpLm11bHRpdGhyZWFkID0gVHJ1ZQp3c2dpLnJ1bl9vbmNlID0gRmFsc2UKd3NnaS51cmxfc2NoZW1lID0gJ2h0dHAnCndzZ2kudmVyc2lvbiA9IAoKU2V0dGluZ3M6ClVzaW5nIHNldHRpbmdzIG1vZHVsZSBrYXBlLnNldHRpbmdzCkFCU09MVVRFX1VSTF9PVkVSUklERVMgPSB7fQpBRE1JTlMgPSBbXQpBTExPV0VEX0hPU1RTID0gWydib3QucmVjcnVpdC5pZCcsICcxMDQuMjM2Ljc2LjE2MScsICdsb2NhbGhvc3QnLCAnMTI3LjAuMC4xJ10KQVBQRU5EX1NMQVNIID0gVHJ1ZQpBVVRIRU5USUNBVElPTl9CQUNLRU5EUyA9IFsnZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQnXQpBVVRIX1BBU1NXT1JEX1ZBTElEQVRPUlMgPSAnKioqKioqKioqKioqKioqKioqKionCkFVVEhfVVNFUl9NT0RFTCA9ICdhdXRoLlVzZXInCkJBU0VfRElSID0gJ0Q6XFxQUExBJwpDQUNIRVMgPSB7J2RlZmF1bHQnOiB7J0JBQ0tFTkQnOiAnZGphbmdvLmNvcmUuY2FjaGUuYmFja2VuZHMubG9jbWVtLkxvY01lbUNhY2hlJ319CkNBQ0hFX01JRERMRVdBUkVfQUxJQVMgPSAnZGVmYXVsdCcKQ0FDSEVfTUlERExFV0FSRV9LRVlfUFJFRklYID0gJyoqKioqKioqKioqKioqKioqKioqJwpDQUNIRV9NSURETEVXQVJFX1NFQ09ORFMgPSA2MDAKQ1NSRl9DT09LSUVfQUdFID0gMzE0NDk2MDAKQ1NSRl9DT09LSUVfRE9NQUlOID0gTm9uZQpDU1JGX0NPT0tJRV9IVFRQT05MWSA9IEZhbHNlCkNTUkZfQ09PS0lFX05BTUUgPSAnY3NyZnRva2VuJwpDU1JGX0NPT0tJRV9QQVRIID0gJy8nCkNTUkZfQ09PS0lFX1NFQ1VSRSA9IEZhbHNlCkNTUkZfRkFJTFVSRV9WSUVXID0gJ2RqYW5nby52aWV3cy5jc3JmLmNzcmZfZmFpbHVyZScKQ1NSRl9IRUFERVJfTkFNRSA9ICdIVFRQX1hfQ1NSRlRPS0VOJwpDU1JGX1RSVVNURURfT1JJR0lOUyA9IFtdCkRBVEFCQVNFUyA9IHsnZGVmYXVsdCc6IHsnRU5HSU5FJzogJ2RqYW5nby5kYi5iYWNrZW5kcy5wb3N0Z3Jlc3FsX3BzeWNvcGcyJywgJ05BTUUnOiAna2FwZScsICdVU0VSJzogJ2thcGUnLCAnUEFTU1dPUkQnOiAnKioqKioqKioqKioqKioqKioqKionLCAnSE9TVCc6ICdsb2NhbGhvc3QnLCAnUE9SVCc6ICcnLCAnQVRPTUlDX1JFUVVFU1RTJzogRmFsc2UsICdBVVRPQ09NTUlUJzogVHJ1ZSwgJ0NPTk5fTUFYX0FHRSc6IDAsICdPUFRJT05TJzoge30sICdUSU1FX1pPTkUnOiBOb25lLCAnVEVTVCc6IHsnQ0hBUlNFVCc6IE5vbmUsICdDT0xMQVRJT04nOiBOb25lLCAnTkFNRSc6IE5vbmUsICdNSVJST1InOiBOb25lfX19CkRBVEFCQVNFX1JPVVRFUlMgPSBbXQpEQVRBX1VQTE9BRF9NQVhfTUVNT1JZX1NJWkUgPSAyNjIxNDQwCkRBVEFfVVBMT0FEX01BWF9OVU1CRVJfRklFTERTID0gMTAwMApEQVRFVElNRV9GT1JNQVQgPSAnTiBqLCBZLCBQJwpEQVRFVElNRV9JTlBVVF9GT1JNQVRTID0gWyclWS0lbS0lZCAlSDolTTolUycsICclWS0lbS0lZCAlSDolTTolUy4lZicsICclWS0lbS0lZCAlSDolTScsICclWS0lbS0lZCcsICclbS8lZC8lWSAlSDolTTolUycsICclbS8lZC8lWSAlSDolTTolUy4lZicsICclbS8lZC8lWSAlSDolTScsICclbS8lZC8lWScsICclbS8lZC8leSAlSDolTTolUycsICclbS8lZC8leSAlSDolTTolUy4lZicsICclbS8lZC8leSAlSDolTScsICclbS8lZC8leSddCkRBVEVfRk9STUFUID0gJ04gaiwgWScKREFURV9JTlBVVF9GT1JNQVRTID0gWyclWS0lbS0lZCcsICclbS8lZC8lWScsICclbS8lZC8leScsICclYiAlZCAlWScsICclYiAlZCwgJVknLCAnJWQgJWIgJVknLCAnJWQgJWIsICVZJywgJyVCICVkICVZJywgJyVCICVkLCAlWScsICclZCAlQiAlWScsICclZCAlQiwgJVknXQpERUJVRyA9IFRydWUKREVCVUdfUFJPUEFHQVRFX0VYQ0VQVElPTlMgPSBGYWxzZQpERUNJTUFMX1NFUEFSQVRPUiA9ICcuJwpERUZBVUxUX0NIQVJTRVQgPSAndXRmLTgnCkRFRkFVTFRfQ09OVEVOVF9UWVBFID0gJ3RleHQvaHRtbCcKREVGQVVMVF9FWENFUFRJT05fUkVQT1JURVJfRklMVEVSID0gJ2RqYW5nby52aWV3cy5kZWJ1Zy5TYWZlRXhjZXB0aW9uUmVwb3J0ZXJGaWx0ZXInCkRFRkFVTFRfRklMRV9TVE9SQUdFID0gJ2RqYW5nby5jb3JlLmZpbGVzLnN0b3JhZ2UuRmlsZVN5c3RlbVN0b3JhZ2UnCkRFRkFVTFRfRlJPTV9FTUFJTCA9ICd3ZWJtYXN0ZXJAbG9jYWxob3N0JwpERUZBVUxUX0lOREVYX1RBQkxFU1BBQ0UgPSAnJwpERUZBVUxUX1RBQkxFU1BBQ0UgPSAnJwpESVNBTExPV0VEX1VTRVJfQUdFTlRTID0gW10KRU1BSUxfQkFDS0VORCA9ICdkamFuZ28uY29yZS5tYWlsLmJhY2tlbmRzLnNtdHAuRW1haWxCYWNrZW5kJwpFTUFJTF9IT1NUID0gJ2xvY2FsaG9zdCcKRU1BSUxfSE9TVF9QQVNTV09SRCA9ICcqKioqKioqKioqKioqKioqKioqKicKRU1BSUxfSE9TVF9VU0VSID0gJycKRU1BSUxfUE9SVCA9IDI1CkVNQUlMX1NTTF9DRVJURklMRSA9IE5vbmUKRU1BSUxfU1NMX0tFWUZJTEUgPSAnKioqKioqKioqKioqKioqKioqKionCkVNQUlMX1NVQkpFQ1RfUFJFRklYID0gJ1tEamFuZ29dICcKRU1BSUxfVElNRU9VVCA9IE5vbmUKRU1BSUxfVVNFX1NTTCA9IEZhbHNlCkVNQUlMX1VTRV9UTFMgPSBGYWxzZQpGSUxFX0NIQVJTRVQgPSAndXRmLTgnCkZJTEVfVVBMT0FEX0RJUkVDVE9SWV9QRVJNSVNTSU9OUyA9IE5vbmUKRklMRV9VUExPQURfSEFORExFUlMgPSBbJ2RqYW5nby5jb3JlLmZpbGVzLnVwbG9hZGhhbmRsZXIuTWVtb3J5RmlsZVVwbG9hZEhhbmRsZXInLCAnZGphbmdvLmNvcmUuZmlsZXMudXBsb2FkaGFuZGxlci5UZW1wb3JhcnlGaWxlVXBsb2FkSGFuZGxlciddCkZJTEVfVVBMT0FEX01BWF9NRU1PUllfU0laRSA9IDI2MjE0NDAKRklMRV9VUExPQURfUEVSTUlTU0lPTlMgPSBOb25lCkZJTEVfVVBMT0FEX1RFTVBfRElSID0gTm9uZQpGSVJTVF9EQVlfT0ZfV0VFSyA9IDAKRklYVFVSRV9ESVJTID0gW10KRk9SQ0VfU0NSSVBUX05BTUUgPSBOb25lCkZPUk1BVF9NT0RVTEVfUEFUSCA9IE5vbmUKR1pJUF9DT05URU5UX1RZUEVTID0gCklHTk9SQUJMRV80MDRfVVJMUyA9IFtdCklOU1RBTExFRF9BUFBTID0gWydkamFuZ28uY29udHJpYi5hZG1pbicsICdkamFuZ28uY29udHJpYi5hdXRoJywgJ2RqYW5nby5jb250cmliLmNvbnRlbnR0eXBlcycsICdkamFuZ28uY29udHJpYi5zZXNzaW9ucycsICdkamFuZ28uY29udHJpYi5tZXNzYWdlcycsICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcycsICd3ZWJwYWNrX2xvYWRlcicsICdjb3JlJywgJ3Jlc3RfZnJhbWV3b3JrJywgJ2RqYW5nb19ub3NlJywgJ3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXInLCAnc2lsayddCklOVEVSTkFMX0lQUyA9IFtdCkxBTkdVQUdFUyA9IFsoJ2FmJywgJ0FmcmlrYWFucycpLCAoJ2FyJywgJ0FyYWJpYycpLCAoJ2FzdCcsICdBc3R1cmlhbicpLCAoJ2F6JywgJ0F6ZXJiYWlqYW5pJyksICgnYmcnLCAnQnVsZ2FyaWFuJyksICgnYmUnLCAnQmVsYXJ1c2lhbicpLCAoJ2JuJywgJ0JlbmdhbGknKSwgKCdicicsICdCcmV0b24nKSwgKCdicycsICdCb3NuaWFuJyksICgnY2EnLCAnQ2F0YWxhbicpLCAoJ2NzJywgJ0N6ZWNoJyksICgnY3knLCAnV2Vsc2gnKSwgKCdkYScsICdEYW5pc2gnKSwgKCdkZScsICdHZXJtYW4nKSwgKCdkc2InLCAnTG93ZXIgU29yYmlhbicpLCAoJ2VsJywgJ0dyZWVrJyksICgnZW4nLCAnRW5nbGlzaCcpLCAoJ2VuLWF1JywgJ0F1c3RyYWxpYW4gRW5nbGlzaCcpLCAoJ2VuLWdiJywgJ0JyaXRpc2ggRW5nbGlzaCcpLCAoJ2VvJywgJ0VzcGVyYW50bycpLCAoJ2VzJywgJ1NwYW5pc2gnKSwgKCdlcy1hcicsICdBcmdlbnRpbmlhbiBTcGFuaXNoJyksICgnZXMtY28nLCAnQ29sb21iaWFuIFNwYW5pc2gnKSwgKCdlcy1teCcsICdNZXhpY2FuIFNwYW5pc2gnKSwgKCdlcy1uaScsICdOaWNhcmFndWFuIFNwYW5pc2gnKSwgKCdlcy12ZScsICdWZW5lenVlbGFuIFNwYW5pc2gnKSwgKCdldCcsICdFc3RvbmlhbicpLCAoJ2V1JywgJ0Jhc3F1ZScpLCAoJ2ZhJywgJ1BlcnNpYW4nKSwgKCdmaScsICdGaW5uaXNoJyksICgnZnInLCAnRnJlbmNoJyksICgnZnknLCAnRnJpc2lhbicpLCAoJ2dhJywgJ0lyaXNoJyksICgnZ2QnLCAnU2NvdHRpc2ggR2FlbGljJyksICgnZ2wnLCAnR2FsaWNpYW4nKSwgKCdoZScsICdIZWJyZXcnKSwgKCdoaScsICdIaW5kaScpLCAoJ2hyJywgJ0Nyb2F0aWFuJyksICgnaHNiJywgJ1VwcGVyIFNvcmJpYW4nKSwgKCdodScsICdIdW5nYXJpYW4nKSwgKCdpYScsICdJbnRlcmxpbmd1YScpLCAoJ2lkJywgJ0luZG9uZXNpYW4nKSwgKCdpbycsICdJZG8nKSwgKCdpcycsICdJY2VsYW5kaWMnKSwgKCdpdCcsICdJdGFsaWFuJyksICgnamEnLCAnSmFwYW5lc2UnKSwgKCdrYScsICdHZW9yZ2lhbicpLCAoJ2trJywgJ0themFraCcpLCAoJ2ttJywgJ0tobWVyJyksICgna24nLCAnS2FubmFkYScpLCAoJ2tvJywgJ0tvcmVhbicpLCAoJ2xiJywgJ0x1eGVtYm91cmdpc2gnKSwgKCdsdCcsICdMaXRodWFuaWFuJyksICgnbHYnLCAnTGF0dmlhbicpLCAoJ21rJywgJ01hY2Vkb25pYW4nKSwgKCdtbCcsICdNYWxheWFsYW0nKSwgKCdtbicsICdNb25nb2xpYW4nKSwgKCdtcicsICdNYXJhdGhpJyksICgnbXknLCAnQnVybWVzZScpLCAoJ25iJywgJ05vcndlZ2lhbiBCb2ttw6VsJyksICgnbmUnLCAnTmVwYWxpJyksICgnbmwnLCAnRHV0Y2gnKSwgKCdubicsICdOb3J3ZWdpYW4gTnlub3JzaycpLCAoJ29zJywgJ09zc2V0aWMnKSwgKCdwYScsICdQdW5qYWJpJyksICgncGwnLCAnUG9saXNoJyksICgncHQnLCAnUG9ydHVndWVzZScpLCAoJ3B0LWJyJywgJ0JyYXppbGlhbiBQb3J0dWd1ZXNlJyksICgncm8nLCAnUm9tYW5pYW4nKSwgKCdydScsICdSdXNzaWFuJyksICgnc2snLCAnU2xvdmFrJyksICgnc2wnLCAnU2xvdmVuaWFuJyksICgnc3EnLCAnQWxiYW5pYW4nKSwgKCdzcicsICdTZXJiaWFuJyksICgnc3ItbGF0bicsICdTZXJiaWFuIExhdGluJyksICgnc3YnLCAnU3dlZGlzaCcpLCAoJ3N3JywgJ1N3YWhpbGknKSwgKCd0YScsICdUYW1pbCcpLCAoJ3RlJywgJ1RlbHVndScpLCAoJ3RoJywgJ1RoYWknKSwgKCd0cicsICdUdXJraXNoJyksICgndHQnLCAnVGF0YXInKSwgKCd1ZG0nLCAnVWRtdXJ0JyksICgndWsnLCAnVWtyYWluaWFuJyksICgndXInLCAnVXJkdScpLCAoJ3ZpJywgJ1ZpZXRuYW1lc2UnKSwgKCd6aC1oYW5zJywgJ1NpbXBsaWZpZWQgQ2hpbmVzZScpLCAoJ3poLWhhbnQnLCAnVHJhZGl0aW9uYWwgQ2hpbmVzZScpXQpMQU5HVUFHRVNfQklESSA9IFsnaGUnLCAnYXInLCAnZmEnLCAndXInXQpMQU5HVUFHRV9DT0RFID0gJ2VuLXVzJwpMQU5HVUFHRV9DT09LSUVfQUdFID0gTm9uZQpMQU5HVUFHRV9DT09LSUVfRE9NQUlOID0gTm9uZQpMQU5HVUFHRV9DT09LSUVfTkFNRSA9ICdkamFuZ29fbGFuZ3VhZ2UnCkxBTkdVQUdFX0NPT0tJRV9QQVRIID0gJy8nCkxPQ0FMRV9QQVRIUyA9IFtdCkxPR0dJTkcgPSB7fQpMT0dHSU5HX0NPTkZJRyA9ICdsb2dnaW5nLmNvbmZpZy5kaWN0Q29uZmlnJwpMT0dJTl9SRURJUkVDVF9VUkwgPSAnL2FjY291bnRzL3Byb2ZpbGUvJwpMT0dJTl9VUkwgPSAnL2FjY291bnRzL2xvZ2luLycKTE9HT1VUX1JFRElSRUNUX1VSTCA9IE5vbmUKTUFOQUdFUlMgPSBbXQpNRURJQV9ST09UID0gJy9ob21lL2ZpbGVzJwpNRURJQV9VUkwgPSAnL2ZpbGVzLycKTUVTU0FHRV9TVE9SQUdFID0gJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzLnN0b3JhZ2UuZmFsbGJhY2suRmFsbGJhY2tTdG9yYWdlJwpNSURETEVXQVJFID0gWydkamFuZ28ubWlkZGxld2FyZS5zZWN1cml0eS5TZWN1cml0eU1pZGRsZXdhcmUnLCAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMubWlkZGxld2FyZS5TZXNzaW9uTWlkZGxld2FyZScsICdkamFuZ28ubWlkZGxld2FyZS5jb21tb24uQ29tbW9uTWlkZGxld2FyZScsICdkamFuZ28ubWlkZGxld2FyZS5jc3JmLkNzcmZWaWV3TWlkZGxld2FyZScsICdkamFuZ28uY29udHJpYi5hdXRoLm1pZGRsZXdhcmUuQXV0aGVudGljYXRpb25NaWRkbGV3YXJlJywgJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzLm1pZGRsZXdhcmUuTWVzc2FnZU1pZGRsZXdhcmUnLCAnZGphbmdvLm1pZGRsZXdhcmUuY2xpY2tqYWNraW5nLlhGcmFtZU9wdGlvbnNNaWRkbGV3YXJlJywgJ3NpbGsubWlkZGxld2FyZS5TaWxreU1pZGRsZXdhcmUnXQpNSURETEVXQVJFX0NMQVNTRVMgPSBbJ2RqYW5nby5taWRkbGV3YXJlLmNvbW1vbi5Db21tb25NaWRkbGV3YXJlJywgJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJ10KTUlHUkFUSU9OX01PRFVMRVMgPSB7fQpNT05USF9EQVlfRk9STUFUID0gJ0YgaicKTk9TRV9BUkdTID0gWyctLXdpdGgtY292ZXJhZ2UnLCAnLS1jb3Zlci1wYWNrYWdlPWNvcmUudmlld3MnLCAnLS1jb3Zlci1odG1sLWRpcj10ZXN0L2JhY2tlbmQnLCAnLS1jb3Zlci1odG1sJ10KTlVNQkVSX0dST1VQSU5HID0gMApQQVNTV09SRF9IQVNIRVJTID0gJyoqKioqKioqKioqKioqKioqKioqJwpQQVNTV09SRF9SRVNFVF9USU1FT1VUX0RBWVMgPSAnKioqKioqKioqKioqKioqKioqKionClBSRVBFTkRfV1dXID0gRmFsc2UKUkVTVF9GUkFNRVdPUksgPSB7J0RFRkFVTFRfUEVSTUlTU0lPTl9DTEFTU0VTJzogWydyZXN0X2ZyYW1ld29yay5wZXJtaXNzaW9ucy5EamFuZ29Nb2RlbFBlcm1pc3Npb25zT3JBbm9uUmVhZE9ubHknXX0KUk9PVF9VUkxDT05GID0gJ2thcGUudXJscycKUlVOTklOR19ERVZTRVJWRVIgPSBUcnVlClNFQ1JFVF9LRVkgPSAnKioqKioqKioqKioqKioqKioqKionClNFQ1VSRV9CUk9XU0VSX1hTU19GSUxURVIgPSBGYWxzZQpTRUNVUkVfQ09OVEVOVF9UWVBFX05PU05JRkYgPSBGYWxzZQpTRUNVUkVfSFNUU19JTkNMVURFX1NVQkRPTUFJTlMgPSBGYWxzZQpTRUNVUkVfSFNUU19TRUNPTkRTID0gMApTRUNVUkVfUFJPWFlfU1NMX0hFQURFUiA9IE5vbmUKU0VDVVJFX1JFRElSRUNUX0VYRU1QVCA9IFtdClNFQ1VSRV9TU0xfSE9TVCA9IE5vbmUKU0VDVVJFX1NTTF9SRURJUkVDVCA9IEZhbHNlClNFUlZFUl9FTUFJTCA9ICdyb290QGxvY2FsaG9zdCcKU0VTU0lPTl9DQUNIRV9BTElBUyA9ICdkZWZhdWx0JwpTRVNTSU9OX0NPT0tJRV9BR0UgPSAxMjA5NjAwClNFU1NJT05fQ09PS0lFX0RPTUFJTiA9IE5vbmUKU0VTU0lPTl9DT09LSUVfSFRUUE9OTFkgPSBGYWxzZQpTRVNTSU9OX0NPT0tJRV9OQU1FID0gJ3Nlc3Npb25pZCcKU0VTU0lPTl9DT09LSUVfUEFUSCA9ICcvJwpTRVNTSU9OX0NPT0tJRV9TRUNVUkUgPSBGYWxzZQpTRVNTSU9OX0VOR0lORSA9ICdkamFuZ28uY29udHJpYi5zZXNzaW9ucy5iYWNrZW5kcy5kYicKU0VTU0lPTl9FWFBJUkVfQVRfQlJPV1NFUl9DTE9TRSA9IEZhbHNlClNFU1NJT05fRklMRV9QQVRIID0gTm9uZQpTRVNTSU9OX1NBVkVfRVZFUllfUkVRVUVTVCA9IEZhbHNlClNFU1NJT05fU0VSSUFMSVpFUiA9ICdkamFuZ28uY29udHJpYi5zZXNzaW9ucy5zZXJpYWxpemVycy5KU09OU2VyaWFsaXplcicKU0VUVElOR1NfTU9EVUxFID0gJ2thcGUuc2V0dGluZ3MnClNIT1JUX0RBVEVUSU1FX0ZPUk1BVCA9ICdtL2QvWSBQJwpTSE9SVF9EQVRFX0ZPUk1BVCA9ICdtL2QvWScKU0lHTklOR19CQUNLRU5EID0gJ2RqYW5nby5jb3JlLnNpZ25pbmcuVGltZXN0YW1wU2lnbmVyJwpTSUxFTkNFRF9TWVNURU1fQ0hFQ0tTID0gW10KU1RBVElDRklMRVNfRElSUyA9ICdEOlxcUFBMQVxcYXNzZXRzJwpTVEFUSUNGSUxFU19GSU5ERVJTID0gWydkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcy5maW5kZXJzLkZpbGVTeXN0ZW1GaW5kZXInLCAnZGphbmdvLmNvbnRyaWIuc3RhdGljZmlsZXMuZmluZGVycy5BcHBEaXJlY3Rvcmllc0ZpbmRlciddClNUQVRJQ0ZJTEVTX1NUT1JBR0UgPSAnZGphbmdvLmNvbnRyaWIuc3RhdGljZmlsZXMuc3RvcmFnZS5TdGF0aWNGaWxlc1N0b3JhZ2UnClNUQVRJQ19ST09UID0gJy9ob21lL2Fzc2V0cycKU1RBVElDX1VSTCA9ICcvYXNzZXRzLycKVEVNUExBVEVTID0gW3snQkFDS0VORCc6ICdkamFuZ28udGVtcGxhdGUuYmFja2VuZHMuZGphbmdvLkRqYW5nb1RlbXBsYXRlcycsICdESVJTJzogW10sICdBUFBfRElSUyc6IFRydWUsICdPUFRJT05TJzogeydjb250ZXh0X3Byb2Nlc3NvcnMnOiBbJ2RqYW5nby50ZW1wbGF0ZS5jb250ZXh0X3Byb2Nlc3NvcnMuZGVidWcnLCAnZGphbmdvLnRlbXBsYXRlLmNvbnRleHRfcHJvY2Vzc29ycy5yZXF1ZXN0JywgJ2RqYW5nby5jb250cmliLmF1dGguY29udGV4dF9wcm9jZXNzb3JzLmF1dGgnLCAnZGphbmdvLmNvbnRyaWIubWVzc2FnZXMuY29udGV4dF9wcm9jZXNzb3JzLm1lc3NhZ2VzJ119fV0KVEVTVF9OT05fU0VSSUFMSVpFRF9BUFBTID0gW10KVEVTVF9SVU5ORVIgPSAnZGphbmdvX25vc2UuTm9zZVRlc3RTdWl0ZVJ1bm5lcicKVEhPVVNBTkRfU0VQQVJBVE9SID0gJywnClRJTUVfRk9STUFUID0gJ1AnClRJTUVfSU5QVVRfRk9STUFUUyA9IFsnJUg6JU06JVMnLCAnJUg6JU06JVMuJWYnLCAnJUg6JU0nXQpUSU1FX1pPTkUgPSAnVVRDJwpVU0VfRVRBR1MgPSBGYWxzZQpVU0VfSTE4TiA9IFRydWUKVVNFX0wxME4gPSBUcnVlClVTRV9USE9VU0FORF9TRVBBUkFUT1IgPSBGYWxzZQpVU0VfVFogPSBUcnVlClVTRV9YX0ZPUldBUkRFRF9IT1NUID0gRmFsc2UKVVNFX1hfRk9SV0FSREVEX1BPUlQgPSBGYWxzZQpXRUJQQUNLX0xPQURFUiA9IHsnREVGQVVMVCc6IHsnQlVORExFX0RJUl9OQU1FJzogJ2J1bmRsZXMvJywgJ1NUQVRTX0ZJTEUnOiAnRDpcXFBQTEFcXHdlYnBhY2stc3RhdHMuanNvbid9fQpXU0dJX0FQUExJQ0FUSU9OID0gJ2thcGUud3NnaS5hcHBsaWNhdGlvbicKWF9GUkFNRV9PUFRJT05TID0gJ1NBTUVPUklHSU4nCllFQVJfTU9OVEhfRk9STUFUID0gJ0YgWScKCgpZb3UncmUgc2VlaW5nIHRoaXMgZXJyb3IgYmVjYXVzZSB5b3UgaGF2ZSBERUJVRyA9IFRydWUgaW4geW91cgpEamFuZ28gc2V0dGluZ3MgZmlsZS4gQ2hhbmdlIHRoYXQgdG8gRmFsc2UsIGFuZCBEamFuZ28gd2lsbApkaXNwbGF5IGEgc3RhbmRhcmQgcGFnZSBnZW5lcmF0ZWQgYnkgdGhlIGhhbmRsZXIgZm9yIHRoaXMgc3RhdHVzIGNvZGUuCgo=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/plain\"}" - } -}, -{ - "model": "silk.response", - "pk": "c881b117-3afd-4e1f-9c1a-31dce441314b", - "fields": { - "request": "cb17a51f-ce50-4ffa-8b4d-62304c3894af", - "status_code": 200, - "raw_body": "W3siaWQiOjEsInZlcmlmaWVkIjpmYWxzZSwib3Blbl90aW1lIjoiMjAxNy0wMy0yN1QxNToyMzoyMFoiLCJjbG9zZV90aW1lIjoiMjAxNy0wMy0yN1QxNToyMzoyMloiLCJjb21wYW55IjoyfV0=", - "body": "[\n {\n \"close_time\": \"2017-03-27T15:23:22Z\",\n \"company\": 2,\n \"id\": 1,\n \"open_time\": \"2017-03-27T15:23:20Z\",\n \"verified\": false\n }\n]", - "encoded_headers": "{\"Content-Type\": \"application/json\", \"Allow\": \"GET, POST, OPTIONS\", \"Vary\": \"Accept\"}" - } -}, -{ - "model": "silk.response", - "pk": "c8d50ba8-81d1-4446-b269-3e010d239e8b", - "fields": { - "request": "2ad18529-c45b-4cd8-8e86-25dcfe2082d4", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPlNlbGVjdCBjb21wYW55IHRvIGNoYW5nZSB8IERqYW5nbyBzaXRlIGFkbWluPC90aXRsZT4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvYmFzZS5jc3MiIC8+CgogIAogIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvYWRtaW4vY3NzL2NoYW5nZWxpc3RzLmNzcyIgLz4KICAKICAKICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KICAKICAKICAKCgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvY29yZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL2pxdWVyeS9qcXVlcnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2pxdWVyeS5pbml0LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hZG1pbi9SZWxhdGVkT2JqZWN0TG9va3Vwcy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvYWN0aW9ucy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdXJsaWZ5LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9wcmVwb3B1bGF0ZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL3hyZWdleHAveHJlZ2V4cC5qcyI+PC9zY3JpcHQ+Cgo8bWV0YSBuYW1lPSJyb2JvdHMiIGNvbnRlbnQ9Ik5PTkUsTk9BUkNISVZFIiAvPgo8L2hlYWQ+CgoKPGJvZHkgY2xhc3M9IiBhcHAtY29yZSBtb2RlbC1jb21wYW55IGNoYW5nZS1saXN0IgogIGRhdGEtYWRtaW4tdXRjLW9mZnNldD0iMCI+Cgo8IS0tIENvbnRhaW5lciAtLT4KPGRpdiBpZD0iY29udGFpbmVyIj4KCiAgICAKICAgIDwhLS0gSGVhZGVyIC0tPgogICAgPGRpdiBpZD0iaGVhZGVyIj4KICAgICAgICA8ZGl2IGlkPSJicmFuZGluZyI+CiAgICAgICAgCjxoMSBpZD0ic2l0ZS1uYW1lIj48YSBocmVmPSIvYWRtaW4vIj5EamFuZ28gYWRtaW5pc3RyYXRpb248L2E+PC9oMT4KCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgPGRpdiBpZD0idXNlci10b29scyI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgV2VsY29tZSwKICAgICAgICAgICAgICAgIDxzdHJvbmc+a2FwZTwvc3Ryb25nPi4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iLyI+VmlldyBzaXRlPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9wYXNzd29yZF9jaGFuZ2UvIj5DaGFuZ2UgcGFzc3dvcmQ8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2xvZ291dC8iPkxvZyBvdXQ8L2E+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIAogICAgPC9kaXY+CiAgICA8IS0tIEVORCBIZWFkZXIgLS0+CiAgICAKPGRpdiBjbGFzcz0iYnJlYWRjcnVtYnMiPgo8YSBocmVmPSIvYWRtaW4vIj5Ib21lPC9hPgomcnNhcXVvOyA8YSBocmVmPSIvYWRtaW4vY29yZS8iPkNvcmU8L2E+CiZyc2FxdW87IENvbXBhbnlzCjwvZGl2PgoKICAgIAoKICAgIAogICAgICAgIAogICAgCgogICAgPCEtLSBDb250ZW50IC0tPgogICAgPGRpdiBpZD0iY29udGVudCIgY2xhc3M9ImZsZXgiPgogICAgICAgIAogICAgICAgIDxoMT5TZWxlY3QgY29tcGFueSB0byBjaGFuZ2U8L2gxPgogICAgICAgIAogIDxkaXYgaWQ9ImNvbnRlbnQtbWFpbiI+CiAgICAKICAgICAgICA8dWwgY2xhc3M9Im9iamVjdC10b29scyI+CiAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaT4KICAgICAgICAgICAgICAKICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS9jb21wYW55L2FkZC8iIGNsYXNzPSJhZGRsaW5rIj4KICAgICAgICAgICAgICAgIEFkZCBjb21wYW55CiAgICAgICAgICAgICAgPC9hPgogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgIAogICAgICAgIDwvdWw+CiAgICAKICAgIAogICAgPGRpdiBjbGFzcz0ibW9kdWxlIiBpZD0iY2hhbmdlbGlzdCI+CiAgICAgIAoKCiAgICAgIAoKCiAgICAgIAogICAgICAgIAogICAgICAKCiAgICAgIDxmb3JtIGlkPSJjaGFuZ2VsaXN0LWZvcm0iIG1ldGhvZD0icG9zdCIgbm92YWxpZGF0ZT48aW5wdXQgdHlwZT0naGlkZGVuJyBuYW1lPSdjc3JmbWlkZGxld2FyZXRva2VuJyB2YWx1ZT0nQU5pMThiWVhKejhrRGlCcnpjakx1MjB4dDdFVFNrTWxETUJCSlN3TTFIbGNFcjdxN1V1b1hkdjVJMnR0ak5BRScgLz4KICAgICAgCgogICAgICAKICAgICAgICAgIAo8ZGl2IGNsYXNzPSJhY3Rpb25zIj4KICAgIDxsYWJlbD5BY3Rpb246IDxzZWxlY3QgbmFtZT0iYWN0aW9uIiByZXF1aXJlZD4KPG9wdGlvbiB2YWx1ZT0iIiBzZWxlY3RlZD0ic2VsZWN0ZWQiPi0tLS0tLS0tLTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSJkZWxldGVfc2VsZWN0ZWQiPkRlbGV0ZSBzZWxlY3RlZCBjb21wYW55czwvb3B0aW9uPgo8L3NlbGVjdD48L2xhYmVsPjxpbnB1dCBjbGFzcz0ic2VsZWN0LWFjcm9zcyIgbmFtZT0ic2VsZWN0X2Fjcm9zcyIgdHlwZT0iaGlkZGVuIiB2YWx1ZT0iMCIgLz4KICAgIDxidXR0b24gdHlwZT0ic3VibWl0IiBjbGFzcz0iYnV0dG9uIiB0aXRsZT0iUnVuIHRoZSBzZWxlY3RlZCBhY3Rpb24iIG5hbWU9ImluZGV4IiB2YWx1ZT0iMCI+R288L2J1dHRvbj4KICAgIAogICAgICAgIDxzcGFuIGNsYXNzPSJhY3Rpb24tY291bnRlciIgZGF0YS1hY3Rpb25zLWljbnQ9IjEiPjAgb2YgMSBzZWxlY3RlZDwvc3Bhbj4KICAgICAgICAKICAgIAo8L2Rpdj4KCiAgICAgICAgICAKCgo8ZGl2IGNsYXNzPSJyZXN1bHRzIj4KPHRhYmxlIGlkPSJyZXN1bHRfbGlzdCI+Cjx0aGVhZD4KPHRyPgoKPHRoIHNjb3BlPSJjb2wiICBjbGFzcz0iYWN0aW9uLWNoZWNrYm94LWNvbHVtbiI+CiAgIAogICA8ZGl2IGNsYXNzPSJ0ZXh0Ij48c3Bhbj48aW5wdXQgdHlwZT0iY2hlY2tib3giIGlkPSJhY3Rpb24tdG9nZ2xlIiAvPjwvc3Bhbj48L2Rpdj4KICAgPGRpdiBjbGFzcz0iY2xlYXIiPjwvZGl2Pgo8L3RoPgo8dGggc2NvcGU9ImNvbCIgIGNsYXNzPSJjb2x1bW4tX19zdHJfXyI+CiAgIAogICA8ZGl2IGNsYXNzPSJ0ZXh0Ij48c3Bhbj5Db21wYW55PC9zcGFuPjwvZGl2PgogICA8ZGl2IGNsYXNzPSJjbGVhciI+PC9kaXY+CjwvdGg+CjwvdHI+CjwvdGhlYWQ+Cjx0Ym9keT4KCgo8dHIgY2xhc3M9InJvdzEiPjx0ZCBjbGFzcz0iYWN0aW9uLWNoZWNrYm94Ij48aW5wdXQgY2xhc3M9ImFjdGlvbi1zZWxlY3QiIG5hbWU9Il9zZWxlY3RlZF9hY3Rpb24iIHR5cGU9ImNoZWNrYm94IiB2YWx1ZT0iMSIgLz48L3RkPjx0aCBjbGFzcz0iZmllbGQtX19zdHJfXyI+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8xL2NoYW5nZS8iPkNvbXBhbnkgb2JqZWN0PC9hPjwvdGg+PC90cj4KCjwvdGJvZHk+CjwvdGFibGU+CjwvZGl2PgoKCiAgICAgICAgICAKICAgICAgCiAgICAgIAoKPHAgY2xhc3M9InBhZ2luYXRvciI+CgoxIGNvbXBhbnkKCgo8L3A+CgogICAgICA8L2Zvcm0+CiAgICA8L2Rpdj4KICA8L2Rpdj4KCiAgICAgICAgCiAgICAgICAgPGJyIGNsYXNzPSJjbGVhciIgLz4KICAgIDwvZGl2PgogICAgPCEtLSBFTkQgQ29udGVudCAtLT4KCiAgICA8ZGl2IGlkPSJmb290ZXIiPjwvZGl2Pgo8L2Rpdj4KPCEtLSBFTkQgQ29udGFpbmVyIC0tPgoKPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 14:33:57 GMT\", \"Expires\": \"Mon, 27 Mar 2017 14:33:57 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "c90a4e7b-ca78-4fb3-bc85-21d12288699f", - "fields": { - "request": "5230b0f5-788a-4d12-8708-08a1e5cefce5", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPlNlbGVjdCBjb21wYW55IHRvIGNoYW5nZSB8IERqYW5nbyBzaXRlIGFkbWluPC90aXRsZT4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvYmFzZS5jc3MiIC8+CgogIAogIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvYWRtaW4vY3NzL2NoYW5nZWxpc3RzLmNzcyIgLz4KICAKICAKICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KICAKICAKICAKCgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvY29yZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL2pxdWVyeS9qcXVlcnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2pxdWVyeS5pbml0LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hZG1pbi9SZWxhdGVkT2JqZWN0TG9va3Vwcy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvYWN0aW9ucy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdXJsaWZ5LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9wcmVwb3B1bGF0ZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL3hyZWdleHAveHJlZ2V4cC5qcyI+PC9zY3JpcHQ+Cgo8bWV0YSBuYW1lPSJyb2JvdHMiIGNvbnRlbnQ9Ik5PTkUsTk9BUkNISVZFIiAvPgo8L2hlYWQ+CgoKPGJvZHkgY2xhc3M9IiBhcHAtY29yZSBtb2RlbC1jb21wYW55IGNoYW5nZS1saXN0IgogIGRhdGEtYWRtaW4tdXRjLW9mZnNldD0iMCI+Cgo8IS0tIENvbnRhaW5lciAtLT4KPGRpdiBpZD0iY29udGFpbmVyIj4KCiAgICAKICAgIDwhLS0gSGVhZGVyIC0tPgogICAgPGRpdiBpZD0iaGVhZGVyIj4KICAgICAgICA8ZGl2IGlkPSJicmFuZGluZyI+CiAgICAgICAgCjxoMSBpZD0ic2l0ZS1uYW1lIj48YSBocmVmPSIvYWRtaW4vIj5EamFuZ28gYWRtaW5pc3RyYXRpb248L2E+PC9oMT4KCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgPGRpdiBpZD0idXNlci10b29scyI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgV2VsY29tZSwKICAgICAgICAgICAgICAgIDxzdHJvbmc+a2FwZTwvc3Ryb25nPi4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iLyI+VmlldyBzaXRlPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9wYXNzd29yZF9jaGFuZ2UvIj5DaGFuZ2UgcGFzc3dvcmQ8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2xvZ291dC8iPkxvZyBvdXQ8L2E+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIAogICAgPC9kaXY+CiAgICA8IS0tIEVORCBIZWFkZXIgLS0+CiAgICAKPGRpdiBjbGFzcz0iYnJlYWRjcnVtYnMiPgo8YSBocmVmPSIvYWRtaW4vIj5Ib21lPC9hPgomcnNhcXVvOyA8YSBocmVmPSIvYWRtaW4vY29yZS8iPkNvcmU8L2E+CiZyc2FxdW87IENvbXBhbnlzCjwvZGl2PgoKICAgIAoKICAgIAogICAgICAgIAogICAgICAgIDx1bCBjbGFzcz0ibWVzc2FnZWxpc3QiPgogICAgICAgICAgPGxpIGNsYXNzPSJzdWNjZXNzIj5UaGUgY29tcGFueSAiPGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8xL2NoYW5nZS8iPkNvbXBhbnkgb2JqZWN0PC9hPiIgd2FzIGFkZGVkIHN1Y2Nlc3NmdWxseS48L2xpPgogICAgICAgIDwvdWw+CiAgICAgICAgCiAgICAKCiAgICA8IS0tIENvbnRlbnQgLS0+CiAgICA8ZGl2IGlkPSJjb250ZW50IiBjbGFzcz0iZmxleCI+CiAgICAgICAgCiAgICAgICAgPGgxPlNlbGVjdCBjb21wYW55IHRvIGNoYW5nZTwvaDE+CiAgICAgICAgCiAgPGRpdiBpZD0iY29udGVudC1tYWluIj4KICAgIAogICAgICAgIDx1bCBjbGFzcz0ib2JqZWN0LXRvb2xzIj4KICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgPGxpPgogICAgICAgICAgICAgIAogICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9jb3JlL2NvbXBhbnkvYWRkLyIgY2xhc3M9ImFkZGxpbmsiPgogICAgICAgICAgICAgICAgQWRkIGNvbXBhbnkKICAgICAgICAgICAgICA8L2E+CiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgCiAgICAgICAgPC91bD4KICAgIAogICAgCiAgICA8ZGl2IGNsYXNzPSJtb2R1bGUiIGlkPSJjaGFuZ2VsaXN0Ij4KICAgICAgCgoKICAgICAgCgoKICAgICAgCiAgICAgICAgCiAgICAgIAoKICAgICAgPGZvcm0gaWQ9ImNoYW5nZWxpc3QtZm9ybSIgbWV0aG9kPSJwb3N0IiBub3ZhbGlkYXRlPjxpbnB1dCB0eXBlPSdoaWRkZW4nIG5hbWU9J2NzcmZtaWRkbGV3YXJldG9rZW4nIHZhbHVlPSdIVVNUUFVCM054RFRRdGxnVWNSeEM0djFkNmlKSXVheEtUYnRxQjlTNUZRTFJDUmZzVTJhNWYwenMxN2o5WFlRJyAvPgogICAgICAKCiAgICAgIAogICAgICAgICAgCjxkaXYgY2xhc3M9ImFjdGlvbnMiPgogICAgPGxhYmVsPkFjdGlvbjogPHNlbGVjdCBuYW1lPSJhY3Rpb24iIHJlcXVpcmVkPgo8b3B0aW9uIHZhbHVlPSIiIHNlbGVjdGVkPSJzZWxlY3RlZCI+LS0tLS0tLS0tPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9ImRlbGV0ZV9zZWxlY3RlZCI+RGVsZXRlIHNlbGVjdGVkIGNvbXBhbnlzPC9vcHRpb24+Cjwvc2VsZWN0PjwvbGFiZWw+PGlucHV0IGNsYXNzPSJzZWxlY3QtYWNyb3NzIiBuYW1lPSJzZWxlY3RfYWNyb3NzIiB0eXBlPSJoaWRkZW4iIHZhbHVlPSIwIiAvPgogICAgPGJ1dHRvbiB0eXBlPSJzdWJtaXQiIGNsYXNzPSJidXR0b24iIHRpdGxlPSJSdW4gdGhlIHNlbGVjdGVkIGFjdGlvbiIgbmFtZT0iaW5kZXgiIHZhbHVlPSIwIj5HbzwvYnV0dG9uPgogICAgCiAgICAgICAgPHNwYW4gY2xhc3M9ImFjdGlvbi1jb3VudGVyIiBkYXRhLWFjdGlvbnMtaWNudD0iMSI+MCBvZiAxIHNlbGVjdGVkPC9zcGFuPgogICAgICAgIAogICAgCjwvZGl2PgoKICAgICAgICAgIAoKCjxkaXYgY2xhc3M9InJlc3VsdHMiPgo8dGFibGUgaWQ9InJlc3VsdF9saXN0Ij4KPHRoZWFkPgo8dHI+Cgo8dGggc2NvcGU9ImNvbCIgIGNsYXNzPSJhY3Rpb24tY2hlY2tib3gtY29sdW1uIj4KICAgCiAgIDxkaXYgY2xhc3M9InRleHQiPjxzcGFuPjxpbnB1dCB0eXBlPSJjaGVja2JveCIgaWQ9ImFjdGlvbi10b2dnbGUiIC8+PC9zcGFuPjwvZGl2PgogICA8ZGl2IGNsYXNzPSJjbGVhciI+PC9kaXY+CjwvdGg+Cjx0aCBzY29wZT0iY29sIiAgY2xhc3M9ImNvbHVtbi1fX3N0cl9fIj4KICAgCiAgIDxkaXYgY2xhc3M9InRleHQiPjxzcGFuPkNvbXBhbnk8L3NwYW4+PC9kaXY+CiAgIDxkaXYgY2xhc3M9ImNsZWFyIj48L2Rpdj4KPC90aD4KPC90cj4KPC90aGVhZD4KPHRib2R5PgoKCjx0ciBjbGFzcz0icm93MSI+PHRkIGNsYXNzPSJhY3Rpb24tY2hlY2tib3giPjxpbnB1dCBjbGFzcz0iYWN0aW9uLXNlbGVjdCIgbmFtZT0iX3NlbGVjdGVkX2FjdGlvbiIgdHlwZT0iY2hlY2tib3giIHZhbHVlPSIxIiAvPjwvdGQ+PHRoIGNsYXNzPSJmaWVsZC1fX3N0cl9fIj48YSBocmVmPSIvYWRtaW4vY29yZS9jb21wYW55LzEvY2hhbmdlLyI+Q29tcGFueSBvYmplY3Q8L2E+PC90aD48L3RyPgoKPC90Ym9keT4KPC90YWJsZT4KPC9kaXY+CgoKICAgICAgICAgIAogICAgICAKICAgICAgCgo8cCBjbGFzcz0icGFnaW5hdG9yIj4KCjEgY29tcGFueQoKCjwvcD4KCiAgICAgIDwvZm9ybT4KICAgIDwvZGl2PgogIDwvZGl2PgoKICAgICAgICAKICAgICAgICA8YnIgY2xhc3M9ImNsZWFyIiAvPgogICAgPC9kaXY+CiAgICA8IS0tIEVORCBDb250ZW50IC0tPgoKICAgIDxkaXYgaWQ9ImZvb3RlciI+PC9kaXY+CjwvZGl2Pgo8IS0tIEVORCBDb250YWluZXIgLS0+Cgo8L2JvZHk+CjwvaHRtbD4K", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 14:33:51 GMT\", \"Expires\": \"Mon, 27 Mar 2017 14:33:51 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "c92ef829-e7e3-4f88-b91a-44d857f61bda", - "fields": { - "request": "1807e3cc-ce88-49a2-b127-769c972b4e98", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "c942a1ee-94b0-4bce-82f4-e8c67bc6b215", - "fields": { - "request": "baa82de7-859e-47cf-8a41-72e61edd5226", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPkFkZCB1c2VyIHwgRGphbmdvIHNpdGUgYWRtaW48L3RpdGxlPgo8bGluayByZWw9InN0eWxlc2hlZXQiIHR5cGU9InRleHQvY3NzIiBocmVmPSIvYXNzZXRzL2FkbWluL2Nzcy9iYXNlLmNzcyIgLz4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvZm9ybXMuY3NzIiAvPgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9jb3JlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IvanF1ZXJ5L2pxdWVyeS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvanF1ZXJ5LmluaXQuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2FkbWluL1JlbGF0ZWRPYmplY3RMb29rdXBzLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hY3Rpb25zLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy91cmxpZnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL3ByZXBvcHVsYXRlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IveHJlZ2V4cC94cmVnZXhwLmpzIj48L3NjcmlwdD4KCjxtZXRhIG5hbWU9InJvYm90cyIgY29udGVudD0iTk9ORSxOT0FSQ0hJVkUiIC8+CjwvaGVhZD4KCgo8Ym9keSBjbGFzcz0iIGFwcC1hdXRoIG1vZGVsLXVzZXIgY2hhbmdlLWZvcm0iCiAgZGF0YS1hZG1pbi11dGMtb2Zmc2V0PSIwIj4KCjwhLS0gQ29udGFpbmVyIC0tPgo8ZGl2IGlkPSJjb250YWluZXIiPgoKICAgIAogICAgPCEtLSBIZWFkZXIgLS0+CiAgICA8ZGl2IGlkPSJoZWFkZXIiPgogICAgICAgIDxkaXYgaWQ9ImJyYW5kaW5nIj4KICAgICAgICAKPGgxIGlkPSJzaXRlLW5hbWUiPjxhIGhyZWY9Ii9hZG1pbi8iPkRqYW5nbyBhZG1pbmlzdHJhdGlvbjwvYT48L2gxPgoKICAgICAgICA8L2Rpdj4KICAgICAgICAKICAgICAgICAKICAgICAgICA8ZGl2IGlkPSJ1c2VyLXRvb2xzIj4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICBXZWxjb21lLAogICAgICAgICAgICAgICAgPHN0cm9uZz5rYXBlPC9zdHJvbmc+LgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvIj5WaWV3IHNpdGU8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL3Bhc3N3b3JkX2NoYW5nZS8iPkNoYW5nZSBwYXNzd29yZDwvYT4gLwogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vbG9nb3V0LyI+TG9nIG91dDwvYT4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgCiAgICA8L2Rpdj4KICAgIDwhLS0gRU5EIEhlYWRlciAtLT4KICAgIAo8ZGl2IGNsYXNzPSJicmVhZGNydW1icyI+CjxhIGhyZWY9Ii9hZG1pbi8iPkhvbWU8L2E+CiZyc2FxdW87IDxhIGhyZWY9Ii9hZG1pbi9hdXRoLyI+QXV0aGVudGljYXRpb24gYW5kIEF1dGhvcml6YXRpb248L2E+CiZyc2FxdW87IDxhIGhyZWY9Ii9hZG1pbi9hdXRoL3VzZXIvIj5Vc2VyczwvYT4KJnJzYXF1bzsgQWRkIHVzZXIKPC9kaXY+CgogICAgCgogICAgCiAgICAgICAgCiAgICAKCiAgICA8IS0tIENvbnRlbnQgLS0+CiAgICA8ZGl2IGlkPSJjb250ZW50IiBjbGFzcz0iY29sTSI+CiAgICAgICAgCiAgICAgICAgPGgxPkFkZCB1c2VyPC9oMT4KICAgICAgICA8ZGl2IGlkPSJjb250ZW50LW1haW4iPgoKCgo8Zm9ybSBlbmN0eXBlPSJtdWx0aXBhcnQvZm9ybS1kYXRhIiBhY3Rpb249IiIgbWV0aG9kPSJwb3N0IiBpZD0idXNlcl9mb3JtIiBub3ZhbGlkYXRlPjxpbnB1dCB0eXBlPSdoaWRkZW4nIG5hbWU9J2NzcmZtaWRkbGV3YXJldG9rZW4nIHZhbHVlPScyUGxNS2ZnT1BrS0p5dDdhRXBSWDdtTzdZWlY3SVB3SHJWc0JXTDhKQ2hWOFZCOUNuUW1wWjN2UldVMVcyUHN3JyAvPgogIAogICAgPHA+Rmlyc3QsIGVudGVyIGEgdXNlcm5hbWUgYW5kIHBhc3N3b3JkLiBUaGVuLCB5b3UnbGwgYmUgYWJsZSB0byBlZGl0IG1vcmUgdXNlciBvcHRpb25zLjwvcD4KICAKCjxkaXY+CgoKCgoKCgogIDxmaWVsZHNldCBjbGFzcz0ibW9kdWxlIGFsaWduZWQgd2lkZSI+CiAgICAKICAgIAogICAgCiAgICAgICAgPGRpdiBjbGFzcz0iZm9ybS1yb3cgZmllbGQtdXNlcm5hbWUiPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgY2xhc3M9InJlcXVpcmVkIiBmb3I9ImlkX3VzZXJuYW1lIj5Vc2VybmFtZTo8L2xhYmVsPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxpbnB1dCBhdXRvZm9jdXM9IiIgY2xhc3M9InZUZXh0RmllbGQiIGlkPSJpZF91c2VybmFtZSIgbWF4bGVuZ3RoPSIxNTAiIG5hbWU9InVzZXJuYW1lIiB0eXBlPSJ0ZXh0IiByZXF1aXJlZCAvPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPHAgY2xhc3M9ImhlbHAiPlJlcXVpcmVkLiAxNTAgY2hhcmFjdGVycyBvciBmZXdlci4gTGV0dGVycywgZGlnaXRzIGFuZCBALy4vKy8tL18gb25seS48L3A+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC1wYXNzd29yZDEiPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgY2xhc3M9InJlcXVpcmVkIiBmb3I9ImlkX3Bhc3N3b3JkMSI+UGFzc3dvcmQ6PC9sYWJlbD4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8aW5wdXQgaWQ9ImlkX3Bhc3N3b3JkMSIgbmFtZT0icGFzc3dvcmQxIiB0eXBlPSJwYXNzd29yZCIgcmVxdWlyZWQgLz4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC1wYXNzd29yZDIiPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgY2xhc3M9InJlcXVpcmVkIiBmb3I9ImlkX3Bhc3N3b3JkMiI+UGFzc3dvcmQgY29uZmlybWF0aW9uOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgPGlucHV0IGlkPSJpZF9wYXNzd29yZDIiIG5hbWU9InBhc3N3b3JkMiIgdHlwZT0icGFzc3dvcmQiIHJlcXVpcmVkIC8+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8cCBjbGFzcz0iaGVscCI+RW50ZXIgdGhlIHNhbWUgcGFzc3dvcmQgYXMgYmVmb3JlLCBmb3IgdmVyaWZpY2F0aW9uLjwvcD4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDwvZGl2PgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgIAo8L2ZpZWxkc2V0PgoKCgoKCgoKCgoKCgoKPGRpdiBjbGFzcz0ic3VibWl0LXJvdyI+CjxpbnB1dCB0eXBlPSJzdWJtaXQiIHZhbHVlPSJTYXZlIiBjbGFzcz0iZGVmYXVsdCIgbmFtZT0iX3NhdmUiIC8+CgoKPGlucHV0IHR5cGU9InN1Ym1pdCIgdmFsdWU9IlNhdmUgYW5kIGFkZCBhbm90aGVyIiBuYW1lPSJfYWRkYW5vdGhlciIgLz4KPGlucHV0IHR5cGU9InN1Ym1pdCIgdmFsdWU9IlNhdmUgYW5kIGNvbnRpbnVlIGVkaXRpbmciIG5hbWU9Il9jb250aW51ZSIgLz4KPC9kaXY+CgoKCiAgICA8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIKICAgICAgICAgICAgaWQ9ImRqYW5nby1hZG1pbi1mb3JtLWFkZC1jb25zdGFudHMiCiAgICAgICAgICAgIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9jaGFuZ2VfZm9ybS5qcyIKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICBkYXRhLW1vZGVsLW5hbWU9InVzZXIiCiAgICAgICAgICAgID4KICAgIDwvc2NyaXB0PgoKCgoKPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiCiAgICAgICAgaWQ9ImRqYW5nby1hZG1pbi1wcmVwb3B1bGF0ZWQtZmllbGRzLWNvbnN0YW50cyIKICAgICAgICBzcmM9Ii9hc3NldHMvYWRtaW4vanMvcHJlcG9wdWxhdGVfaW5pdC5qcyIKICAgICAgICBkYXRhLXByZXBvcHVsYXRlZC1maWVsZHM9IltdIj4KPC9zY3JpcHQ+CgoKPC9kaXY+CjwvZm9ybT48L2Rpdj4KCiAgICAgICAgCiAgICAgICAgPGJyIGNsYXNzPSJjbGVhciIgLz4KICAgIDwvZGl2PgogICAgPCEtLSBFTkQgQ29udGVudCAtLT4KCiAgICA8ZGl2IGlkPSJmb290ZXIiPjwvZGl2Pgo8L2Rpdj4KPCEtLSBFTkQgQ29udGFpbmVyIC0tPgoKPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 14:52:18 GMT\", \"Expires\": \"Mon, 27 Mar 2017 14:52:18 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "ca5edf4a-c180-40af-9f6b-ae144055a051", - "fields": { - "request": "32d06d39-a94a-4154-8f38-1a4f4eee5817", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "cb9d426f-5d90-4db3-b3ad-47d67a30e3b1", - "fields": { - "request": "42837a28-d01e-428b-943d-151927d49c06", - "status_code": 200, - "raw_body": "W3siaWQiOjEsInVzZXIiOnsidXJsIjoiaHR0cDovLzEyNy4wLjAuMTo4MDAwL2FwaS91c2Vycy8yLyIsInVzZXJuYW1lIjoiZmFyaGFuIiwiZW1haWwiOiIiLCJpc19zdGFmZiI6ZmFsc2V9LCJuYW1lIjoiZmFyaGFuIiwiY3JlYXRlZCI6IjIwMTctMDMtMjdUMTU6MjE6NTguNTUwMDAwWiIsInVwZGF0ZWQiOiIyMDE3LTAzLTI3VDE1OjIxOjU4LjU1MDAwMFoiLCJucG0iOjE0MDY1NzIzMjEsInJlc3VtZSI6bnVsbCwicGhvbmVfbnVtYmVyIjoiIiwiYm9va21hcmtlZF92YWNhbmNpZXMiOltdfV0=", - "body": "[\n {\n \"bookmarked_vacancies\": [],\n \"created\": \"2017-03-27T15:21:58.550000Z\",\n \"id\": 1,\n \"name\": \"farhan\",\n \"npm\": 1406572321,\n \"phone_number\": \"\",\n \"resume\": null,\n \"updated\": \"2017-03-27T15:21:58.550000Z\",\n \"user\": {\n \"email\": \"\",\n \"is_staff\": false,\n \"url\": \"http://127.0.0.1:8000/api/users/2/\",\n \"username\": \"farhan\"\n }\n }\n]", - "encoded_headers": "{\"Content-Type\": \"application/json\", \"Allow\": \"GET, POST, OPTIONS\", \"Vary\": \"Accept\"}" - } -}, -{ - "model": "silk.response", - "pk": "cbeed36f-82de-4195-b0e6-c277fe4f9c68", - "fields": { - "request": "c682cd7a-b5dd-4296-8f20-f8f4e590d45a", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "cc3a2f5a-a29c-492d-aade-b42d3bf34847", - "fields": { - "request": "8849edc8-14f5-44e2-91f1-84d4235c8165", - "status_code": 200, - "raw_body": "W3siaWQiOjEsImNvbXBhbnkiOnsiaWQiOjIsInVzZXIiOnsidXJsIjoiaHR0cDovLzEyNy4wLjAuMTo4MDAwL2FwaS91c2Vycy8zLyIsInVzZXJuYW1lIjoiZmFyaGFuY29ycCIsImVtYWlsIjoiIiwiaXNfc3RhZmYiOmZhbHNlfSwibmFtZSI6ImZhcmhhbmNvcnAiLCJjcmVhdGVkIjoiMjAxNy0wMy0yN1QxNDo1NTo0NC42NzkwMDBaIiwidXBkYXRlZCI6IjIwMTctMDMtMjdUMTQ6NTU6NDQuNjc5MDAwWiIsImRlc2NyaXB0aW9uIjoiZmFyaGFuY29ycCIsInZlcmlmaWVkIjpmYWxzZSwibG9nbyI6bnVsbCwiYWxhbWF0IjpudWxsfSwidmVyaWZpZWQiOmZhbHNlLCJvcGVuX3RpbWUiOiIyMDE3LTAzLTI3VDE1OjIzOjIwWiIsImRlc2NyaXB0aW9uIjoiIiwiY2xvc2VfdGltZSI6IjIwMTctMDMtMjdUMTU6MjM6MjJaIn1d", - "body": "[\n {\n \"close_time\": \"2017-03-27T15:23:22Z\",\n \"company\": {\n \"alamat\": null,\n \"created\": \"2017-03-27T14:55:44.679000Z\",\n \"description\": \"farhancorp\",\n \"id\": 2,\n \"logo\": null,\n \"name\": \"farhancorp\",\n \"updated\": \"2017-03-27T14:55:44.679000Z\",\n \"user\": {\n \"email\": \"\",\n \"is_staff\": false,\n \"url\": \"http://127.0.0.1:8000/api/users/3/\",\n \"username\": \"farhancorp\"\n },\n \"verified\": false\n },\n \"description\": \"\",\n \"id\": 1,\n \"open_time\": \"2017-03-27T15:23:20Z\",\n \"verified\": false\n }\n]", - "encoded_headers": "{\"Content-Type\": \"application/json\", \"Allow\": \"GET, POST, OPTIONS\", \"Vary\": \"Accept\"}" - } -}, -{ - "model": "silk.response", - "pk": "cc6392bf-aef6-440e-95f7-b5133552d535", - "fields": { - "request": "0baf73ed-9a02-4c02-8327-46c8b886778a", - "status_code": 200, - "raw_body": "eyJzd2FnZ2VyIjogIjIuMCIsICJpbmZvIjogeyJ0aXRsZSI6ICIiLCAidmVyc2lvbiI6ICIifSwgInBhdGhzIjogeyIvYXBpL2FwcGxpY2F0aW9ucy8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAiYXBwbGljYXRpb25zX2xpc3QiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogInBhZ2UiLCAicmVxdWlyZWQiOiBmYWxzZSwgImluIjogInF1ZXJ5IiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbImFwcGxpY2F0aW9ucyJdfSwgInBvc3QiOiB7Im9wZXJhdGlvbklkIjogImFwcGxpY2F0aW9uc19jcmVhdGUiLCAicmVzcG9uc2VzIjogeyIyMDEiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InN0dWRlbnRfbnBtIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgInZhY2FuY3lfaWQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9fSwgInJlcXVpcmVkIjogWyJzdHVkZW50X25wbSIsICJ2YWNhbmN5X2lkIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsiYXBwbGljYXRpb25zIl19fSwgIi9hcGkvYXBwbGljYXRpb25zL3tpZH0vIjogeyJnZXQiOiB7Im9wZXJhdGlvbklkIjogImFwcGxpY2F0aW9uc19yZWFkIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbImFwcGxpY2F0aW9ucyJdfSwgInB1dCI6IHsib3BlcmF0aW9uSWQiOiAiYXBwbGljYXRpb25zX3VwZGF0ZSIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InN0dWRlbnRfbnBtIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgInZhY2FuY3lfaWQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9fSwgInJlcXVpcmVkIjogWyJzdHVkZW50X25wbSIsICJ2YWNhbmN5X2lkIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsiYXBwbGljYXRpb25zIl19LCAicGF0Y2giOiB7Im9wZXJhdGlvbklkIjogImFwcGxpY2F0aW9uc19wYXJ0aWFsX3VwZGF0ZSIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InN0dWRlbnRfbnBtIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgInZhY2FuY3lfaWQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9fX19XSwgImNvbnN1bWVzIjogWyJhcHBsaWNhdGlvbi9qc29uIl0sICJ0YWdzIjogWyJhcHBsaWNhdGlvbnMiXX0sICJkZWxldGUiOiB7Im9wZXJhdGlvbklkIjogImFwcGxpY2F0aW9uc19kZWxldGUiLCAicmVzcG9uc2VzIjogeyIyMDQiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsiYXBwbGljYXRpb25zIl19fSwgIi9hcGkvY29tcGFuaWVzLyI6IHsiZ2V0IjogeyJvcGVyYXRpb25JZCI6ICJjb21wYW5pZXNfbGlzdCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAicGFnZSIsICJyZXF1aXJlZCI6IGZhbHNlLCAiaW4iOiAicXVlcnkiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsiY29tcGFuaWVzIl19LCAicG9zdCI6IHsib3BlcmF0aW9uSWQiOiAiY29tcGFuaWVzX2NyZWF0ZSIsICJyZXNwb25zZXMiOiB7IjIwMSI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidXNlciI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAib2JqZWN0In0sICJkZXNjcmlwdGlvbiI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sICJ2ZXJpZmllZCI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiYm9vbGVhbiJ9fSwgInJlcXVpcmVkIjogWyJ1c2VyIiwgImRlc2NyaXB0aW9uIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsiY29tcGFuaWVzIl19fSwgIi9hcGkvY29tcGFuaWVzL3tpZH0vIjogeyJnZXQiOiB7Im9wZXJhdGlvbklkIjogImNvbXBhbmllc19yZWFkIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbImNvbXBhbmllcyJdfSwgInB1dCI6IHsib3BlcmF0aW9uSWQiOiAiY29tcGFuaWVzX3VwZGF0ZSIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InVzZXIiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogIm9iamVjdCJ9LCAiZGVzY3JpcHRpb24iOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAidmVyaWZpZWQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImJvb2xlYW4ifX0sICJyZXF1aXJlZCI6IFsidXNlciIsICJkZXNjcmlwdGlvbiJdfX1dLCAiY29uc3VtZXMiOiBbImFwcGxpY2F0aW9uL2pzb24iXSwgInRhZ3MiOiBbImNvbXBhbmllcyJdfSwgInBhdGNoIjogeyJvcGVyYXRpb25JZCI6ICJjb21wYW5pZXNfcGFydGlhbF91cGRhdGUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ1c2VyIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJvYmplY3QifSwgImRlc2NyaXB0aW9uIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgInZlcmlmaWVkIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJib29sZWFuIn19fX1dLCAiY29uc3VtZXMiOiBbImFwcGxpY2F0aW9uL2pzb24iXSwgInRhZ3MiOiBbImNvbXBhbmllcyJdfSwgImRlbGV0ZSI6IHsib3BlcmF0aW9uSWQiOiAiY29tcGFuaWVzX2RlbGV0ZSIsICJyZXNwb25zZXMiOiB7IjIwNCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJjb21wYW5pZXMiXX19LCAiL2FwaS9zdHVkZW50cy8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAic3R1ZGVudHNfbGlzdCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAicGFnZSIsICJyZXF1aXJlZCI6IGZhbHNlLCAiaW4iOiAicXVlcnkiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsic3R1ZGVudHMiXX0sICJwb3N0IjogeyJvcGVyYXRpb25JZCI6ICJzdHVkZW50c19jcmVhdGUiLCAicmVzcG9uc2VzIjogeyIyMDEiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InVzZXIiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogIm9iamVjdCJ9LCAibnBtIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJpbnRlZ2VyIn0sICJyZXN1bWUiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImZpbGUifSwgInBob25lX251bWJlciI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sICJib29rbWFya2VkX3ZhY2FuY2llcyI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiYXJyYXkiLCAiaXRlbXMiOiB7InR5cGUiOiAic3RyaW5nIn19fSwgInJlcXVpcmVkIjogWyJ1c2VyIiwgIm5wbSJdfX1dLCAiY29uc3VtZXMiOiBbImFwcGxpY2F0aW9uL2pzb24iXSwgInRhZ3MiOiBbInN0dWRlbnRzIl19fSwgIi9hcGkvc3R1ZGVudHMve2lkfS8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAic3R1ZGVudHNfcmVhZCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJzdHVkZW50cyJdfSwgInB1dCI6IHsib3BlcmF0aW9uSWQiOiAic3R1ZGVudHNfdXBkYXRlIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCB7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidXNlciI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAib2JqZWN0In0sICJucG0iOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImludGVnZXIifSwgInJlc3VtZSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiZmlsZSJ9LCAicGhvbmVfbnVtYmVyIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImJvb2ttYXJrZWRfdmFjYW5jaWVzIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJhcnJheSIsICJpdGVtcyI6IHsidHlwZSI6ICJzdHJpbmcifX19LCAicmVxdWlyZWQiOiBbInVzZXIiLCAibnBtIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsic3R1ZGVudHMiXX0sICJwYXRjaCI6IHsib3BlcmF0aW9uSWQiOiAic3R1ZGVudHNfcGFydGlhbF91cGRhdGUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ1c2VyIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJvYmplY3QifSwgIm5wbSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiaW50ZWdlciJ9LCAicmVzdW1lIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJmaWxlIn0sICJwaG9uZV9udW1iZXIiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiYm9va21hcmtlZF92YWNhbmNpZXMiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImFycmF5IiwgIml0ZW1zIjogeyJ0eXBlIjogInN0cmluZyJ9fX19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsic3R1ZGVudHMiXX0sICJkZWxldGUiOiB7Im9wZXJhdGlvbklkIjogInN0dWRlbnRzX2RlbGV0ZSIsICJyZXNwb25zZXMiOiB7IjIwNCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJzdHVkZW50cyJdfX0sICIvYXBpL3N0dWRlbnRzL3tpZH0vYm9va21hcmtlZC12YWNhbmNpZXMvIjogeyJwb3N0IjogeyJvcGVyYXRpb25JZCI6ICJzdHVkZW50c19ib29rbWFya192YWNhbmNpZXMiLCAicmVzcG9uc2VzIjogeyIyMDEiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ1c2VyIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJvYmplY3QifSwgIm5wbSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiaW50ZWdlciJ9LCAicmVzdW1lIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJmaWxlIn0sICJwaG9uZV9udW1iZXIiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiYm9va21hcmtlZF92YWNhbmNpZXMiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImFycmF5IiwgIml0ZW1zIjogeyJ0eXBlIjogInN0cmluZyJ9fX0sICJyZXF1aXJlZCI6IFsidXNlciIsICJucG0iXX19XSwgImNvbnN1bWVzIjogWyJhcHBsaWNhdGlvbi9qc29uIl0sICJ0YWdzIjogWyJzdHVkZW50cyJdfSwgImRlbGV0ZSI6IHsib3BlcmF0aW9uSWQiOiAic3R1ZGVudHNfdW5ib29rbWFya192YWNhbmNpZXMiLCAicmVzcG9uc2VzIjogeyIyMDQiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsic3R1ZGVudHMiXX19LCAiL2FwaS9zdXBlcnZpc29ycy8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAic3VwZXJ2aXNvcnNfbGlzdCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAicGFnZSIsICJyZXF1aXJlZCI6IGZhbHNlLCAiaW4iOiAicXVlcnkiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsic3VwZXJ2aXNvcnMiXX0sICJwb3N0IjogeyJvcGVyYXRpb25JZCI6ICJzdXBlcnZpc29yc19jcmVhdGUiLCAicmVzcG9uc2VzIjogeyIyMDEiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InVzZXIiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogIm9iamVjdCJ9LCAibmlwIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJpbnRlZ2VyIn19LCAicmVxdWlyZWQiOiBbInVzZXIiLCAibmlwIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsic3VwZXJ2aXNvcnMiXX19LCAiL2FwaS9zdXBlcnZpc29ycy97aWR9LyI6IHsiZ2V0IjogeyJvcGVyYXRpb25JZCI6ICJzdXBlcnZpc29yc19yZWFkIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbInN1cGVydmlzb3JzIl19LCAicHV0IjogeyJvcGVyYXRpb25JZCI6ICJzdXBlcnZpc29yc191cGRhdGUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ1c2VyIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJvYmplY3QifSwgIm5pcCI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiaW50ZWdlciJ9fSwgInJlcXVpcmVkIjogWyJ1c2VyIiwgIm5pcCJdfX1dLCAiY29uc3VtZXMiOiBbImFwcGxpY2F0aW9uL2pzb24iXSwgInRhZ3MiOiBbInN1cGVydmlzb3JzIl19LCAicGF0Y2giOiB7Im9wZXJhdGlvbklkIjogInN1cGVydmlzb3JzX3BhcnRpYWxfdXBkYXRlIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCB7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidXNlciI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAib2JqZWN0In0sICJuaXAiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImludGVnZXIifX19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsic3VwZXJ2aXNvcnMiXX0sICJkZWxldGUiOiB7Im9wZXJhdGlvbklkIjogInN1cGVydmlzb3JzX2RlbGV0ZSIsICJyZXNwb25zZXMiOiB7IjIwNCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJzdXBlcnZpc29ycyJdfX0sICIvYXBpL3VzZXJzLyI6IHsiZ2V0IjogeyJvcGVyYXRpb25JZCI6ICJ1c2Vyc19saXN0IiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJwYWdlIiwgInJlcXVpcmVkIjogZmFsc2UsICJpbiI6ICJxdWVyeSIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJ1c2VycyJdfSwgInBvc3QiOiB7Im9wZXJhdGlvbklkIjogInVzZXJzX2NyZWF0ZSIsICJyZXNwb25zZXMiOiB7IjIwMSI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidXNlcm5hbWUiOiB7ImRlc2NyaXB0aW9uIjogIlJlcXVpcmVkLiAxNTAgY2hhcmFjdGVycyBvciBmZXdlci4gTGV0dGVycywgZGlnaXRzIGFuZCBALy4vKy8tL18gb25seS4iLCAidHlwZSI6ICJzdHJpbmcifSwgImVtYWlsIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImlzX3N0YWZmIjogeyJkZXNjcmlwdGlvbiI6ICJEZXNpZ25hdGVzIHdoZXRoZXIgdGhlIHVzZXIgY2FuIGxvZyBpbnRvIHRoaXMgYWRtaW4gc2l0ZS4iLCAidHlwZSI6ICJib29sZWFuIn19LCAicmVxdWlyZWQiOiBbInVzZXJuYW1lIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsidXNlcnMiXX19LCAiL2FwaS91c2Vycy9tZS8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAidXNlcnNfbWUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbXSwgInRhZ3MiOiBbInVzZXJzIl19fSwgIi9hcGkvdXNlcnMve2lkfS8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAidXNlcnNfcmVhZCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJ1c2VycyJdfSwgInB1dCI6IHsib3BlcmF0aW9uSWQiOiAidXNlcnNfdXBkYXRlIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCB7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidXNlcm5hbWUiOiB7ImRlc2NyaXB0aW9uIjogIlJlcXVpcmVkLiAxNTAgY2hhcmFjdGVycyBvciBmZXdlci4gTGV0dGVycywgZGlnaXRzIGFuZCBALy4vKy8tL18gb25seS4iLCAidHlwZSI6ICJzdHJpbmcifSwgImVtYWlsIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImlzX3N0YWZmIjogeyJkZXNjcmlwdGlvbiI6ICJEZXNpZ25hdGVzIHdoZXRoZXIgdGhlIHVzZXIgY2FuIGxvZyBpbnRvIHRoaXMgYWRtaW4gc2l0ZS4iLCAidHlwZSI6ICJib29sZWFuIn19LCAicmVxdWlyZWQiOiBbInVzZXJuYW1lIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsidXNlcnMiXX0sICJwYXRjaCI6IHsib3BlcmF0aW9uSWQiOiAidXNlcnNfcGFydGlhbF91cGRhdGUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ1c2VybmFtZSI6IHsiZGVzY3JpcHRpb24iOiAiUmVxdWlyZWQuIDE1MCBjaGFyYWN0ZXJzIG9yIGZld2VyLiBMZXR0ZXJzLCBkaWdpdHMgYW5kIEAvLi8rLy0vXyBvbmx5LiIsICJ0eXBlIjogInN0cmluZyJ9LCAiZW1haWwiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiaXNfc3RhZmYiOiB7ImRlc2NyaXB0aW9uIjogIkRlc2lnbmF0ZXMgd2hldGhlciB0aGUgdXNlciBjYW4gbG9nIGludG8gdGhpcyBhZG1pbiBzaXRlLiIsICJ0eXBlIjogImJvb2xlYW4ifX19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsidXNlcnMiXX0sICJkZWxldGUiOiB7Im9wZXJhdGlvbklkIjogInVzZXJzX2RlbGV0ZSIsICJyZXNwb25zZXMiOiB7IjIwNCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJ1c2VycyJdfX0sICIvYXBpL3ZhY2FuY2llcy8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAidmFjYW5jaWVzX2xpc3QiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogInBhZ2UiLCAicmVxdWlyZWQiOiBmYWxzZSwgImluIjogInF1ZXJ5IiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbInZhY2FuY2llcyJdfSwgInBvc3QiOiB7Im9wZXJhdGlvbklkIjogInZhY2FuY2llc19jcmVhdGUiLCAicmVzcG9uc2VzIjogeyIyMDEiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InZlcmlmaWVkIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJib29sZWFuIn0sICJvcGVuX3RpbWUiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiY2xvc2VfdGltZSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sICJjb21wYW55IjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifX0sICJyZXF1aXJlZCI6IFsib3Blbl90aW1lIiwgImNsb3NlX3RpbWUiLCAiY29tcGFueSJdfX1dLCAiY29uc3VtZXMiOiBbImFwcGxpY2F0aW9uL2pzb24iXSwgInRhZ3MiOiBbInZhY2FuY2llcyJdfX0sICIvYXBpL3ZhY2FuY2llcy97aWR9LyI6IHsiZ2V0IjogeyJvcGVyYXRpb25JZCI6ICJ2YWNhbmNpZXNfcmVhZCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJ2YWNhbmNpZXMiXX0sICJwdXQiOiB7Im9wZXJhdGlvbklkIjogInZhY2FuY2llc191cGRhdGUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ2ZXJpZmllZCI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiYm9vbGVhbiJ9LCAib3Blbl90aW1lIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImNsb3NlX3RpbWUiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiY29tcGFueSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn19LCAicmVxdWlyZWQiOiBbIm9wZW5fdGltZSIsICJjbG9zZV90aW1lIiwgImNvbXBhbnkiXX19XSwgImNvbnN1bWVzIjogWyJhcHBsaWNhdGlvbi9qc29uIl0sICJ0YWdzIjogWyJ2YWNhbmNpZXMiXX0sICJwYXRjaCI6IHsib3BlcmF0aW9uSWQiOiAidmFjYW5jaWVzX3BhcnRpYWxfdXBkYXRlIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCB7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidmVyaWZpZWQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImJvb2xlYW4ifSwgIm9wZW5fdGltZSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sICJjbG9zZV90aW1lIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImNvbXBhbnkiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9fX19XSwgImNvbnN1bWVzIjogWyJhcHBsaWNhdGlvbi9qc29uIl0sICJ0YWdzIjogWyJ2YWNhbmNpZXMiXX0sICJkZWxldGUiOiB7Im9wZXJhdGlvbklkIjogInZhY2FuY2llc19kZWxldGUiLCAicmVzcG9uc2VzIjogeyIyMDQiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsidmFjYW5jaWVzIl19fX0sICJzZWN1cml0eURlZmluaXRpb25zIjogeyJiYXNpYyI6IHsidHlwZSI6ICJiYXNpYyJ9fX0=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"application/openapi+json\", \"Allow\": \"GET, HEAD, OPTIONS\", \"Vary\": \"Accept\"}" - } -}, -{ - "model": "silk.response", - "pk": "cc7fc7cc-4cfd-41f1-af12-f9a108146631", - "fields": { - "request": "c16253c3-a1a6-4078-8a84-1fbca8189d0e", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "cc90cc4b-9ef5-4999-81df-df4202046754", - "fields": { - "request": "55ced51b-69df-4271-9fbc-2af103f92e32", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPlNlbGVjdCB1c2VyIHRvIGNoYW5nZSB8IERqYW5nbyBzaXRlIGFkbWluPC90aXRsZT4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvYmFzZS5jc3MiIC8+CgogIAogIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvYWRtaW4vY3NzL2NoYW5nZWxpc3RzLmNzcyIgLz4KICAKICAKICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KICAKICAKICAKCgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvY29yZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL2pxdWVyeS9qcXVlcnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2pxdWVyeS5pbml0LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hZG1pbi9SZWxhdGVkT2JqZWN0TG9va3Vwcy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvYWN0aW9ucy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdXJsaWZ5LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9wcmVwb3B1bGF0ZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL3hyZWdleHAveHJlZ2V4cC5qcyI+PC9zY3JpcHQ+Cgo8bWV0YSBuYW1lPSJyb2JvdHMiIGNvbnRlbnQ9Ik5PTkUsTk9BUkNISVZFIiAvPgo8L2hlYWQ+CgoKPGJvZHkgY2xhc3M9IiBhcHAtYXV0aCBtb2RlbC11c2VyIGNoYW5nZS1saXN0IgogIGRhdGEtYWRtaW4tdXRjLW9mZnNldD0iMCI+Cgo8IS0tIENvbnRhaW5lciAtLT4KPGRpdiBpZD0iY29udGFpbmVyIj4KCiAgICAKICAgIDwhLS0gSGVhZGVyIC0tPgogICAgPGRpdiBpZD0iaGVhZGVyIj4KICAgICAgICA8ZGl2IGlkPSJicmFuZGluZyI+CiAgICAgICAgCjxoMSBpZD0ic2l0ZS1uYW1lIj48YSBocmVmPSIvYWRtaW4vIj5EamFuZ28gYWRtaW5pc3RyYXRpb248L2E+PC9oMT4KCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgPGRpdiBpZD0idXNlci10b29scyI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgV2VsY29tZSwKICAgICAgICAgICAgICAgIDxzdHJvbmc+a2FwZTwvc3Ryb25nPi4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iLyI+VmlldyBzaXRlPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9wYXNzd29yZF9jaGFuZ2UvIj5DaGFuZ2UgcGFzc3dvcmQ8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2xvZ291dC8iPkxvZyBvdXQ8L2E+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIAogICAgPC9kaXY+CiAgICA8IS0tIEVORCBIZWFkZXIgLS0+CiAgICAKPGRpdiBjbGFzcz0iYnJlYWRjcnVtYnMiPgo8YSBocmVmPSIvYWRtaW4vIj5Ib21lPC9hPgomcnNhcXVvOyA8YSBocmVmPSIvYWRtaW4vYXV0aC8iPkF1dGhlbnRpY2F0aW9uIGFuZCBBdXRob3JpemF0aW9uPC9hPgomcnNhcXVvOyBVc2Vycwo8L2Rpdj4KCiAgICAKCiAgICAKICAgICAgICAKICAgIAoKICAgIDwhLS0gQ29udGVudCAtLT4KICAgIDxkaXYgaWQ9ImNvbnRlbnQiIGNsYXNzPSJmbGV4Ij4KICAgICAgICAKICAgICAgICA8aDE+U2VsZWN0IHVzZXIgdG8gY2hhbmdlPC9oMT4KICAgICAgICAKICA8ZGl2IGlkPSJjb250ZW50LW1haW4iPgogICAgCiAgICAgICAgPHVsIGNsYXNzPSJvYmplY3QtdG9vbHMiPgogICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICA8bGk+CiAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci9hZGQvIiBjbGFzcz0iYWRkbGluayI+CiAgICAgICAgICAgICAgICBBZGQgdXNlcgogICAgICAgICAgICAgIDwvYT4KICAgICAgICAgICAgPC9saT4KICAgICAgICAgICAgCiAgICAgICAgICAKICAgICAgICA8L3VsPgogICAgCiAgICAKICAgIDxkaXYgY2xhc3M9Im1vZHVsZSBmaWx0ZXJlZCIgaWQ9ImNoYW5nZWxpc3QiPgogICAgICAKCjxkaXYgaWQ9InRvb2xiYXIiPjxmb3JtIGlkPSJjaGFuZ2VsaXN0LXNlYXJjaCIgbWV0aG9kPSJnZXQiPgo8ZGl2PjwhLS0gRElWIG5lZWRlZCBmb3IgdmFsaWQgSFRNTCAtLT4KPGxhYmVsIGZvcj0ic2VhcmNoYmFyIj48aW1nIHNyYz0iL2Fzc2V0cy9hZG1pbi9pbWcvc2VhcmNoLnN2ZyIgYWx0PSJTZWFyY2giIC8+PC9sYWJlbD4KPGlucHV0IHR5cGU9InRleHQiIHNpemU9IjQwIiBuYW1lPSJxIiB2YWx1ZT0iIiBpZD0ic2VhcmNoYmFyIiBhdXRvZm9jdXMgLz4KPGlucHV0IHR5cGU9InN1Ym1pdCIgdmFsdWU9IlNlYXJjaCIgLz4KCgo8L2Rpdj4KPC9mb3JtPjwvZGl2PgoKCiAgICAgIAoKCiAgICAgIAogICAgICAgIAogICAgICAgICAgPGRpdiBpZD0iY2hhbmdlbGlzdC1maWx0ZXIiPgogICAgICAgICAgICA8aDI+RmlsdGVyPC9oMj4KICAgICAgICAgICAgCjxoMz4gQnkgc3RhZmYgc3RhdHVzIDwvaDM+Cjx1bD4KCiAgICA8bGkgY2xhc3M9InNlbGVjdGVkIj4KICAgIDxhIGhyZWY9Ij8iPkFsbDwvYT48L2xpPgoKICAgIDxsaT4KICAgIDxhIGhyZWY9Ij9pc19zdGFmZl9fZXhhY3Q9MSI+WWVzPC9hPjwvbGk+CgogICAgPGxpPgogICAgPGEgaHJlZj0iP2lzX3N0YWZmX19leGFjdD0wIj5ObzwvYT48L2xpPgoKPC91bD4KCjxoMz4gQnkgc3VwZXJ1c2VyIHN0YXR1cyA8L2gzPgo8dWw+CgogICAgPGxpIGNsYXNzPSJzZWxlY3RlZCI+CiAgICA8YSBocmVmPSI/Ij5BbGw8L2E+PC9saT4KCiAgICA8bGk+CiAgICA8YSBocmVmPSI/aXNfc3VwZXJ1c2VyX19leGFjdD0xIj5ZZXM8L2E+PC9saT4KCiAgICA8bGk+CiAgICA8YSBocmVmPSI/aXNfc3VwZXJ1c2VyX19leGFjdD0wIj5ObzwvYT48L2xpPgoKPC91bD4KCjxoMz4gQnkgYWN0aXZlIDwvaDM+Cjx1bD4KCiAgICA8bGkgY2xhc3M9InNlbGVjdGVkIj4KICAgIDxhIGhyZWY9Ij8iPkFsbDwvYT48L2xpPgoKICAgIDxsaT4KICAgIDxhIGhyZWY9Ij9pc19hY3RpdmVfX2V4YWN0PTEiPlllczwvYT48L2xpPgoKICAgIDxsaT4KICAgIDxhIGhyZWY9Ij9pc19hY3RpdmVfX2V4YWN0PTAiPk5vPC9hPjwvbGk+Cgo8L3VsPgoKICAgICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAKCiAgICAgIDxmb3JtIGlkPSJjaGFuZ2VsaXN0LWZvcm0iIG1ldGhvZD0icG9zdCIgbm92YWxpZGF0ZT48aW5wdXQgdHlwZT0naGlkZGVuJyBuYW1lPSdjc3JmbWlkZGxld2FyZXRva2VuJyB2YWx1ZT0nMDlaU0Vlc0MwR0NIYWR0clN5RmxBSmpxazB3SktKNjhwZjZIUUtreE5ETjZ4bHZUQlphTnNxMGFpVkN5NEoyWCcgLz4KICAgICAgCgogICAgICAKICAgICAgICAgIAo8ZGl2IGNsYXNzPSJhY3Rpb25zIj4KICAgIDxsYWJlbD5BY3Rpb246IDxzZWxlY3QgbmFtZT0iYWN0aW9uIiByZXF1aXJlZD4KPG9wdGlvbiB2YWx1ZT0iIiBzZWxlY3RlZD0ic2VsZWN0ZWQiPi0tLS0tLS0tLTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSJkZWxldGVfc2VsZWN0ZWQiPkRlbGV0ZSBzZWxlY3RlZCB1c2Vyczwvb3B0aW9uPgo8L3NlbGVjdD48L2xhYmVsPjxpbnB1dCBjbGFzcz0ic2VsZWN0LWFjcm9zcyIgbmFtZT0ic2VsZWN0X2Fjcm9zcyIgdHlwZT0iaGlkZGVuIiB2YWx1ZT0iMCIgLz4KICAgIDxidXR0b24gdHlwZT0ic3VibWl0IiBjbGFzcz0iYnV0dG9uIiB0aXRsZT0iUnVuIHRoZSBzZWxlY3RlZCBhY3Rpb24iIG5hbWU9ImluZGV4IiB2YWx1ZT0iMCI+R288L2J1dHRvbj4KICAgIAogICAgICAgIDxzcGFuIGNsYXNzPSJhY3Rpb24tY291bnRlciIgZGF0YS1hY3Rpb25zLWljbnQ9IjQiPjAgb2YgNCBzZWxlY3RlZDwvc3Bhbj4KICAgICAgICAKICAgIAo8L2Rpdj4KCiAgICAgICAgICAKCgo8ZGl2IGNsYXNzPSJyZXN1bHRzIj4KPHRhYmxlIGlkPSJyZXN1bHRfbGlzdCI+Cjx0aGVhZD4KPHRyPgoKPHRoIHNjb3BlPSJjb2wiICBjbGFzcz0iYWN0aW9uLWNoZWNrYm94LWNvbHVtbiI+CiAgIAogICA8ZGl2IGNsYXNzPSJ0ZXh0Ij48c3Bhbj48aW5wdXQgdHlwZT0iY2hlY2tib3giIGlkPSJhY3Rpb24tdG9nZ2xlIiAvPjwvc3Bhbj48L2Rpdj4KICAgPGRpdiBjbGFzcz0iY2xlYXIiPjwvZGl2Pgo8L3RoPgo8dGggc2NvcGU9ImNvbCIgIGNsYXNzPSJzb3J0YWJsZSBjb2x1bW4tdXNlcm5hbWUgc29ydGVkIGFzY2VuZGluZyI+CiAgIAogICAgIAogICAgICAgPGRpdiBjbGFzcz0ic29ydG9wdGlvbnMiPgogICAgICAgICA8YSBjbGFzcz0ic29ydHJlbW92ZSIgaHJlZj0iP289IiB0aXRsZT0iUmVtb3ZlIGZyb20gc29ydGluZyI+PC9hPgogICAgICAgICAKICAgICAgICAgPGEgaHJlZj0iP289LTEiIGNsYXNzPSJ0b2dnbGUgYXNjZW5kaW5nIiB0aXRsZT0iVG9nZ2xlIHNvcnRpbmciPjwvYT4KICAgICAgIDwvZGl2PgogICAgIAogICAKICAgPGRpdiBjbGFzcz0idGV4dCI+PGEgaHJlZj0iP289LTEiPlVzZXJuYW1lPC9hPjwvZGl2PgogICA8ZGl2IGNsYXNzPSJjbGVhciI+PC9kaXY+CjwvdGg+Cjx0aCBzY29wZT0iY29sIiAgY2xhc3M9InNvcnRhYmxlIGNvbHVtbi1lbWFpbCI+CiAgIAogICAgIAogICAKICAgPGRpdiBjbGFzcz0idGV4dCI+PGEgaHJlZj0iP289Mi4xIj5FbWFpbCBhZGRyZXNzPC9hPjwvZGl2PgogICA8ZGl2IGNsYXNzPSJjbGVhciI+PC9kaXY+CjwvdGg+Cjx0aCBzY29wZT0iY29sIiAgY2xhc3M9InNvcnRhYmxlIGNvbHVtbi1maXJzdF9uYW1lIj4KICAgCiAgICAgCiAgIAogICA8ZGl2IGNsYXNzPSJ0ZXh0Ij48YSBocmVmPSI/bz0zLjEiPkZpcnN0IG5hbWU8L2E+PC9kaXY+CiAgIDxkaXYgY2xhc3M9ImNsZWFyIj48L2Rpdj4KPC90aD4KPHRoIHNjb3BlPSJjb2wiICBjbGFzcz0ic29ydGFibGUgY29sdW1uLWxhc3RfbmFtZSI+CiAgIAogICAgIAogICAKICAgPGRpdiBjbGFzcz0idGV4dCI+PGEgaHJlZj0iP289NC4xIj5MYXN0IG5hbWU8L2E+PC9kaXY+CiAgIDxkaXYgY2xhc3M9ImNsZWFyIj48L2Rpdj4KPC90aD4KPHRoIHNjb3BlPSJjb2wiICBjbGFzcz0ic29ydGFibGUgY29sdW1uLWlzX3N0YWZmIj4KICAgCiAgICAgCiAgIAogICA8ZGl2IGNsYXNzPSJ0ZXh0Ij48YSBocmVmPSI/bz01LjEiPlN0YWZmIHN0YXR1czwvYT48L2Rpdj4KICAgPGRpdiBjbGFzcz0iY2xlYXIiPjwvZGl2Pgo8L3RoPgo8L3RyPgo8L3RoZWFkPgo8dGJvZHk+CgoKPHRyIGNsYXNzPSJyb3cxIj48dGQgY2xhc3M9ImFjdGlvbi1jaGVja2JveCI+PGlucHV0IGNsYXNzPSJhY3Rpb24tc2VsZWN0IiBuYW1lPSJfc2VsZWN0ZWRfYWN0aW9uIiB0eXBlPSJjaGVja2JveCIgdmFsdWU9IjIiIC8+PC90ZD48dGggY2xhc3M9ImZpZWxkLXVzZXJuYW1lIj48YSBocmVmPSIvYWRtaW4vYXV0aC91c2VyLzIvY2hhbmdlLyI+ZmFyaGFuPC9hPjwvdGg+PHRkIGNsYXNzPSJmaWVsZC1lbWFpbCI+Jm5ic3A7PC90ZD48dGQgY2xhc3M9ImZpZWxkLWZpcnN0X25hbWUiPiZuYnNwOzwvdGQ+PHRkIGNsYXNzPSJmaWVsZC1sYXN0X25hbWUiPiZuYnNwOzwvdGQ+PHRkIGNsYXNzPSJmaWVsZC1pc19zdGFmZiI+PGltZyBzcmM9Ii9hc3NldHMvYWRtaW4vaW1nL2ljb24tbm8uc3ZnIiBhbHQ9IkZhbHNlIiAvPjwvdGQ+PC90cj4KCgo8dHIgY2xhc3M9InJvdzIiPjx0ZCBjbGFzcz0iYWN0aW9uLWNoZWNrYm94Ij48aW5wdXQgY2xhc3M9ImFjdGlvbi1zZWxlY3QiIG5hbWU9Il9zZWxlY3RlZF9hY3Rpb24iIHR5cGU9ImNoZWNrYm94IiB2YWx1ZT0iMyIgLz48L3RkPjx0aCBjbGFzcz0iZmllbGQtdXNlcm5hbWUiPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL3VzZXIvMy9jaGFuZ2UvIj5mYXJoYW5jb3JwPC9hPjwvdGg+PHRkIGNsYXNzPSJmaWVsZC1lbWFpbCI+Jm5ic3A7PC90ZD48dGQgY2xhc3M9ImZpZWxkLWZpcnN0X25hbWUiPiZuYnNwOzwvdGQ+PHRkIGNsYXNzPSJmaWVsZC1sYXN0X25hbWUiPiZuYnNwOzwvdGQ+PHRkIGNsYXNzPSJmaWVsZC1pc19zdGFmZiI+PGltZyBzcmM9Ii9hc3NldHMvYWRtaW4vaW1nL2ljb24tbm8uc3ZnIiBhbHQ9IkZhbHNlIiAvPjwvdGQ+PC90cj4KCgo8dHIgY2xhc3M9InJvdzEiPjx0ZCBjbGFzcz0iYWN0aW9uLWNoZWNrYm94Ij48aW5wdXQgY2xhc3M9ImFjdGlvbi1zZWxlY3QiIG5hbWU9Il9zZWxlY3RlZF9hY3Rpb24iIHR5cGU9ImNoZWNrYm94IiB2YWx1ZT0iNCIgLz48L3RkPjx0aCBjbGFzcz0iZmllbGQtdXNlcm5hbWUiPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL3VzZXIvNC9jaGFuZ2UvIj5mYXJoYW5zdXBlcjwvYT48L3RoPjx0ZCBjbGFzcz0iZmllbGQtZW1haWwiPiZuYnNwOzwvdGQ+PHRkIGNsYXNzPSJmaWVsZC1maXJzdF9uYW1lIj4mbmJzcDs8L3RkPjx0ZCBjbGFzcz0iZmllbGQtbGFzdF9uYW1lIj4mbmJzcDs8L3RkPjx0ZCBjbGFzcz0iZmllbGQtaXNfc3RhZmYiPjxpbWcgc3JjPSIvYXNzZXRzL2FkbWluL2ltZy9pY29uLW5vLnN2ZyIgYWx0PSJGYWxzZSIgLz48L3RkPjwvdHI+CgoKPHRyIGNsYXNzPSJyb3cyIj48dGQgY2xhc3M9ImFjdGlvbi1jaGVja2JveCI+PGlucHV0IGNsYXNzPSJhY3Rpb24tc2VsZWN0IiBuYW1lPSJfc2VsZWN0ZWRfYWN0aW9uIiB0eXBlPSJjaGVja2JveCIgdmFsdWU9IjEiIC8+PC90ZD48dGggY2xhc3M9ImZpZWxkLXVzZXJuYW1lIj48YSBocmVmPSIvYWRtaW4vYXV0aC91c2VyLzEvY2hhbmdlLyI+a2FwZTwvYT48L3RoPjx0ZCBjbGFzcz0iZmllbGQtZW1haWwiPmthcGVAa2FwZS5jb208L3RkPjx0ZCBjbGFzcz0iZmllbGQtZmlyc3RfbmFtZSI+Jm5ic3A7PC90ZD48dGQgY2xhc3M9ImZpZWxkLWxhc3RfbmFtZSI+Jm5ic3A7PC90ZD48dGQgY2xhc3M9ImZpZWxkLWlzX3N0YWZmIj48aW1nIHNyYz0iL2Fzc2V0cy9hZG1pbi9pbWcvaWNvbi15ZXMuc3ZnIiBhbHQ9IlRydWUiIC8+PC90ZD48L3RyPgoKPC90Ym9keT4KPC90YWJsZT4KPC9kaXY+CgoKICAgICAgICAgIAogICAgICAKICAgICAgCgo8cCBjbGFzcz0icGFnaW5hdG9yIj4KCjQgdXNlcnMKCgo8L3A+CgogICAgICA8L2Zvcm0+CiAgICA8L2Rpdj4KICA8L2Rpdj4KCiAgICAgICAgCiAgICAgICAgPGJyIGNsYXNzPSJjbGVhciIgLz4KICAgIDwvZGl2PgogICAgPCEtLSBFTkQgQ29udGVudCAtLT4KCiAgICA8ZGl2IGlkPSJmb290ZXIiPjwvZGl2Pgo8L2Rpdj4KPCEtLSBFTkQgQ29udGFpbmVyIC0tPgoKPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 17:13:40 GMT\", \"Expires\": \"Mon, 27 Mar 2017 17:13:40 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "cd434816-389b-445a-a446-222a81ef0fa7", - "fields": { - "request": "f28442e9-0455-4a1a-b580-76f68f4c23d0", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPlNlbGVjdCBzdHVkZW50IHRvIGNoYW5nZSB8IERqYW5nbyBzaXRlIGFkbWluPC90aXRsZT4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvYmFzZS5jc3MiIC8+CgogIAogIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvYWRtaW4vY3NzL2NoYW5nZWxpc3RzLmNzcyIgLz4KICAKICAKICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KICAKICAKICAKCgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvY29yZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL2pxdWVyeS9qcXVlcnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2pxdWVyeS5pbml0LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hZG1pbi9SZWxhdGVkT2JqZWN0TG9va3Vwcy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvYWN0aW9ucy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdXJsaWZ5LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9wcmVwb3B1bGF0ZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL3hyZWdleHAveHJlZ2V4cC5qcyI+PC9zY3JpcHQ+Cgo8bWV0YSBuYW1lPSJyb2JvdHMiIGNvbnRlbnQ9Ik5PTkUsTk9BUkNISVZFIiAvPgo8L2hlYWQ+CgoKPGJvZHkgY2xhc3M9IiBhcHAtY29yZSBtb2RlbC1zdHVkZW50IGNoYW5nZS1saXN0IgogIGRhdGEtYWRtaW4tdXRjLW9mZnNldD0iMCI+Cgo8IS0tIENvbnRhaW5lciAtLT4KPGRpdiBpZD0iY29udGFpbmVyIj4KCiAgICAKICAgIDwhLS0gSGVhZGVyIC0tPgogICAgPGRpdiBpZD0iaGVhZGVyIj4KICAgICAgICA8ZGl2IGlkPSJicmFuZGluZyI+CiAgICAgICAgCjxoMSBpZD0ic2l0ZS1uYW1lIj48YSBocmVmPSIvYWRtaW4vIj5EamFuZ28gYWRtaW5pc3RyYXRpb248L2E+PC9oMT4KCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgPGRpdiBpZD0idXNlci10b29scyI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgV2VsY29tZSwKICAgICAgICAgICAgICAgIDxzdHJvbmc+a2FwZTwvc3Ryb25nPi4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iLyI+VmlldyBzaXRlPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9wYXNzd29yZF9jaGFuZ2UvIj5DaGFuZ2UgcGFzc3dvcmQ8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2xvZ291dC8iPkxvZyBvdXQ8L2E+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIAogICAgPC9kaXY+CiAgICA8IS0tIEVORCBIZWFkZXIgLS0+CiAgICAKPGRpdiBjbGFzcz0iYnJlYWRjcnVtYnMiPgo8YSBocmVmPSIvYWRtaW4vIj5Ib21lPC9hPgomcnNhcXVvOyA8YSBocmVmPSIvYWRtaW4vY29yZS8iPkNvcmU8L2E+CiZyc2FxdW87IFN0dWRlbnRzCjwvZGl2PgoKICAgIAoKICAgIAogICAgICAgIAogICAgICAgIDx1bCBjbGFzcz0ibWVzc2FnZWxpc3QiPgogICAgICAgICAgPGxpIGNsYXNzPSJzdWNjZXNzIj5UaGUgc3R1ZGVudCAiPGEgaHJlZj0iL2FkbWluL2NvcmUvc3R1ZGVudC8xL2NoYW5nZS8iPlN0dWRlbnQgb2JqZWN0PC9hPiIgd2FzIGFkZGVkIHN1Y2Nlc3NmdWxseS48L2xpPgogICAgICAgIDwvdWw+CiAgICAgICAgCiAgICAKCiAgICA8IS0tIENvbnRlbnQgLS0+CiAgICA8ZGl2IGlkPSJjb250ZW50IiBjbGFzcz0iZmxleCI+CiAgICAgICAgCiAgICAgICAgPGgxPlNlbGVjdCBzdHVkZW50IHRvIGNoYW5nZTwvaDE+CiAgICAgICAgCiAgPGRpdiBpZD0iY29udGVudC1tYWluIj4KICAgIAogICAgICAgIDx1bCBjbGFzcz0ib2JqZWN0LXRvb2xzIj4KICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgPGxpPgogICAgICAgICAgICAgIAogICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvYWRkLyIgY2xhc3M9ImFkZGxpbmsiPgogICAgICAgICAgICAgICAgQWRkIHN0dWRlbnQKICAgICAgICAgICAgICA8L2E+CiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgCiAgICAgICAgPC91bD4KICAgIAogICAgCiAgICA8ZGl2IGNsYXNzPSJtb2R1bGUiIGlkPSJjaGFuZ2VsaXN0Ij4KICAgICAgCgoKICAgICAgCgoKICAgICAgCiAgICAgICAgCiAgICAgIAoKICAgICAgPGZvcm0gaWQ9ImNoYW5nZWxpc3QtZm9ybSIgbWV0aG9kPSJwb3N0IiBub3ZhbGlkYXRlPjxpbnB1dCB0eXBlPSdoaWRkZW4nIG5hbWU9J2NzcmZtaWRkbGV3YXJldG9rZW4nIHZhbHVlPSdjV3M5cElWbUtoeEp5c0FrNnc1N1Fra3NDZGpVM3gzT0IyellCZU5oeGVJOFZBQ01QWEF6STExY0E4cEpueFpEJyAvPgogICAgICAKCiAgICAgIAogICAgICAgICAgCjxkaXYgY2xhc3M9ImFjdGlvbnMiPgogICAgPGxhYmVsPkFjdGlvbjogPHNlbGVjdCBuYW1lPSJhY3Rpb24iIHJlcXVpcmVkPgo8b3B0aW9uIHZhbHVlPSIiIHNlbGVjdGVkPSJzZWxlY3RlZCI+LS0tLS0tLS0tPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9ImRlbGV0ZV9zZWxlY3RlZCI+RGVsZXRlIHNlbGVjdGVkIHN0dWRlbnRzPC9vcHRpb24+Cjwvc2VsZWN0PjwvbGFiZWw+PGlucHV0IGNsYXNzPSJzZWxlY3QtYWNyb3NzIiBuYW1lPSJzZWxlY3RfYWNyb3NzIiB0eXBlPSJoaWRkZW4iIHZhbHVlPSIwIiAvPgogICAgPGJ1dHRvbiB0eXBlPSJzdWJtaXQiIGNsYXNzPSJidXR0b24iIHRpdGxlPSJSdW4gdGhlIHNlbGVjdGVkIGFjdGlvbiIgbmFtZT0iaW5kZXgiIHZhbHVlPSIwIj5HbzwvYnV0dG9uPgogICAgCiAgICAgICAgPHNwYW4gY2xhc3M9ImFjdGlvbi1jb3VudGVyIiBkYXRhLWFjdGlvbnMtaWNudD0iMSI+MCBvZiAxIHNlbGVjdGVkPC9zcGFuPgogICAgICAgIAogICAgCjwvZGl2PgoKICAgICAgICAgIAoKCjxkaXYgY2xhc3M9InJlc3VsdHMiPgo8dGFibGUgaWQ9InJlc3VsdF9saXN0Ij4KPHRoZWFkPgo8dHI+Cgo8dGggc2NvcGU9ImNvbCIgIGNsYXNzPSJhY3Rpb24tY2hlY2tib3gtY29sdW1uIj4KICAgCiAgIDxkaXYgY2xhc3M9InRleHQiPjxzcGFuPjxpbnB1dCB0eXBlPSJjaGVja2JveCIgaWQ9ImFjdGlvbi10b2dnbGUiIC8+PC9zcGFuPjwvZGl2PgogICA8ZGl2IGNsYXNzPSJjbGVhciI+PC9kaXY+CjwvdGg+Cjx0aCBzY29wZT0iY29sIiAgY2xhc3M9ImNvbHVtbi1fX3N0cl9fIj4KICAgCiAgIDxkaXYgY2xhc3M9InRleHQiPjxzcGFuPlN0dWRlbnQ8L3NwYW4+PC9kaXY+CiAgIDxkaXYgY2xhc3M9ImNsZWFyIj48L2Rpdj4KPC90aD4KPC90cj4KPC90aGVhZD4KPHRib2R5PgoKCjx0ciBjbGFzcz0icm93MSI+PHRkIGNsYXNzPSJhY3Rpb24tY2hlY2tib3giPjxpbnB1dCBjbGFzcz0iYWN0aW9uLXNlbGVjdCIgbmFtZT0iX3NlbGVjdGVkX2FjdGlvbiIgdHlwZT0iY2hlY2tib3giIHZhbHVlPSIxIiAvPjwvdGQ+PHRoIGNsYXNzPSJmaWVsZC1fX3N0cl9fIj48YSBocmVmPSIvYWRtaW4vY29yZS9zdHVkZW50LzEvY2hhbmdlLyI+U3R1ZGVudCBvYmplY3Q8L2E+PC90aD48L3RyPgoKPC90Ym9keT4KPC90YWJsZT4KPC9kaXY+CgoKICAgICAgICAgIAogICAgICAKICAgICAgCgo8cCBjbGFzcz0icGFnaW5hdG9yIj4KCjEgc3R1ZGVudAoKCjwvcD4KCiAgICAgIDwvZm9ybT4KICAgIDwvZGl2PgogIDwvZGl2PgoKICAgICAgICAKICAgICAgICA8YnIgY2xhc3M9ImNsZWFyIiAvPgogICAgPC9kaXY+CiAgICA8IS0tIEVORCBDb250ZW50IC0tPgoKICAgIDxkaXYgaWQ9ImZvb3RlciI+PC9kaXY+CjwvZGl2Pgo8IS0tIEVORCBDb250YWluZXIgLS0+Cgo8L2JvZHk+CjwvaHRtbD4K", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 15:21:58 GMT\", \"Expires\": \"Mon, 27 Mar 2017 15:21:58 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "cdb349df-8372-42d2-8052-22215b33801c", - "fields": { - "request": "5f0019ff-44b1-4877-8094-c2b99c0865e4", - "status_code": 404, - "raw_body": "eyJkZXRhaWwiOiJOb3QgZm91bmQuIn0=", - "body": "{\n \"detail\": \"Not found.\"\n}", - "encoded_headers": "{\"Content-Type\": \"application/json\", \"Allow\": \"POST, OPTIONS\", \"Vary\": \"Accept\"}" - } -}, -{ - "model": "silk.response", - "pk": "cff836bf-2e09-48e9-87be-f76307d225c6", - "fields": { - "request": "19a5538e-6553-4304-babb-613e6d7a53ea", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "d045698c-6dc6-4f84-b109-5a50ca82ff4d", - "fields": { - "request": "d729e129-a95f-4239-9d43-253357c52cb0", - "status_code": 500, - "raw_body": "QXR0cmlidXRlRXJyb3IgYXQgL2FwaS9zdHVkZW50cy8xL2Jvb2ttYXJrZWQtdmFjYW5jaWVzLwonZGljdCcgb2JqZWN0IGhhcyBubyBhdHRyaWJ1dGUgJ2lkJwoKUmVxdWVzdCBNZXRob2Q6IFBPU1QKUmVxdWVzdCBVUkw6IGh0dHA6Ly8xMjcuMC4wLjE6ODAwMC9hcGkvc3R1ZGVudHMvMS9ib29rbWFya2VkLXZhY2FuY2llcy8KRGphbmdvIFZlcnNpb246IDEuMTAuNQpQeXRob24gRXhlY3V0YWJsZTogQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXHB5dGhvbi5leGUKUHl0aG9uIFZlcnNpb246IDMuNi4wClB5dGhvbiBQYXRoOiBbJ0Q6XFxQUExBJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXHB5dGhvbjM2LnppcCcsICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyXFxETExzJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXGxpYicsICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXGxpYlxcc2l0ZS1wYWNrYWdlcyddClNlcnZlciB0aW1lOiBNb24sIDI3IE1hciAyMDE3IDE1OjQ2OjU5ICswMDAwCkluc3RhbGxlZCBBcHBsaWNhdGlvbnM6ClsnZGphbmdvLmNvbnRyaWIuYWRtaW4nLAogJ2RqYW5nby5jb250cmliLmF1dGgnLAogJ2RqYW5nby5jb250cmliLmNvbnRlbnR0eXBlcycsCiAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMnLAogJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzJywKICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcycsCiAnd2VicGFja19sb2FkZXInLAogJ2NvcmUnLAogJ3Jlc3RfZnJhbWV3b3JrJywKICdkamFuZ29fbm9zZScsCiAncmVzdF9mcmFtZXdvcmtfc3dhZ2dlcicsCiAnc2lsayddCkluc3RhbGxlZCBNaWRkbGV3YXJlOgpbJ2RqYW5nby5taWRkbGV3YXJlLnNlY3VyaXR5LlNlY3VyaXR5TWlkZGxld2FyZScsCiAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMubWlkZGxld2FyZS5TZXNzaW9uTWlkZGxld2FyZScsCiAnZGphbmdvLm1pZGRsZXdhcmUuY29tbW9uLkNvbW1vbk1pZGRsZXdhcmUnLAogJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5hdXRoLm1pZGRsZXdhcmUuQXV0aGVudGljYXRpb25NaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5tZXNzYWdlcy5taWRkbGV3YXJlLk1lc3NhZ2VNaWRkbGV3YXJlJywKICdkamFuZ28ubWlkZGxld2FyZS5jbGlja2phY2tpbmcuWEZyYW1lT3B0aW9uc01pZGRsZXdhcmUnLAogJ3NpbGsubWlkZGxld2FyZS5TaWxreU1pZGRsZXdhcmUnXQoKClRyYWNlYmFjazogIAoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXGRqYW5nb1xjb3JlXGhhbmRsZXJzXGV4Y2VwdGlvbi5weSIgaW4gaW5uZXIKICAzOS4gICAgICAgICAgICAgcmVzcG9uc2UgPSBnZXRfcmVzcG9uc2UocmVxdWVzdCkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cY29yZVxoYW5kbGVyc1xiYXNlLnB5IiBpbiBfZ2V0X3Jlc3BvbnNlCiAgMTg3LiAgICAgICAgICAgICAgICAgcmVzcG9uc2UgPSBzZWxmLnByb2Nlc3NfZXhjZXB0aW9uX2J5X21pZGRsZXdhcmUoZSwgcmVxdWVzdCkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cY29yZVxoYW5kbGVyc1xiYXNlLnB5IiBpbiBfZ2V0X3Jlc3BvbnNlCiAgMTg1LiAgICAgICAgICAgICAgICAgcmVzcG9uc2UgPSB3cmFwcGVkX2NhbGxiYWNrKHJlcXVlc3QsICpjYWxsYmFja19hcmdzLCAqKmNhbGxiYWNrX2t3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cdmlld3NcZGVjb3JhdG9yc1xjc3JmLnB5IiBpbiB3cmFwcGVkX3ZpZXcKICA1OC4gICAgICAgICByZXR1cm4gdmlld19mdW5jKCphcmdzLCAqKmt3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3c2V0cy5weSIgaW4gdmlldwogIDgzLiAgICAgICAgICAgICByZXR1cm4gc2VsZi5kaXNwYXRjaChyZXF1ZXN0LCAqYXJncywgKiprd2FyZ3MpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNccmVzdF9mcmFtZXdvcmtcdmlld3MucHkiIGluIGRpc3BhdGNoCiAgNDgzLiAgICAgICAgICAgICByZXNwb25zZSA9IHNlbGYuaGFuZGxlX2V4Y2VwdGlvbihleGMpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNccmVzdF9mcmFtZXdvcmtcdmlld3MucHkiIGluIGhhbmRsZV9leGNlcHRpb24KICA0NDMuICAgICAgICAgICAgIHNlbGYucmFpc2VfdW5jYXVnaHRfZXhjZXB0aW9uKGV4YykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3cy5weSIgaW4gZGlzcGF0Y2gKICA0ODAuICAgICAgICAgICAgIHJlc3BvbnNlID0gaGFuZGxlcihyZXF1ZXN0LCAqYXJncywgKiprd2FyZ3MpCgpGaWxlICJEOlxQUExBXGNvcmVcdmlld3NcYWNjb3VudHMucHkiIGluIGJvb2ttYXJrX3ZhY2FuY2llcwogIDMwLiAgICAgICAgIHZhY2FuY3kgPSBnZXRfb2JqZWN0X29yXzQwNChWYWNhbmN5Lm9iamVjdHMuYWxsKCksIHBrPXJlcXVlc3QuZGF0YS5pZCkKCkV4Y2VwdGlvbiBUeXBlOiBBdHRyaWJ1dGVFcnJvciBhdCAvYXBpL3N0dWRlbnRzLzEvYm9va21hcmtlZC12YWNhbmNpZXMvCkV4Y2VwdGlvbiBWYWx1ZTogJ2RpY3QnIG9iamVjdCBoYXMgbm8gYXR0cmlidXRlICdpZCcKUmVxdWVzdCBpbmZvcm1hdGlvbjoKVVNFUjoga2FwZQoKR0VUOiBObyBHRVQgZGF0YQoKUE9TVDogTm8gUE9TVCBkYXRhCgpGSUxFUzogTm8gRklMRVMgZGF0YQoKQ09PS0lFUzoKc2Vzc2lvbmlkID0gJ2JsdDg3N2c1ZmptdWN4eTNkZDV1eGNpemF2YjlvcG92Jwpjc3JmdG9rZW4gPSAnMUVFUDJTd0t0MUs5UWJXbkZQU3lXUElpYnRPN01BYVZxS0xFZW9vRmdZVnlkallQb2duME93cDI5b1VXNkE2SycKCk1FVEE6CkFMTFVTRVJTUFJPRklMRSA9ICdDOlxcUHJvZ3JhbURhdGEnCkFQUERBVEEgPSAnQzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmcnCkNPTU1PTlBST0dSQU1GSUxFUyA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcQ29tbW9uIEZpbGVzJwpDT01NT05QUk9HUkFNRklMRVMoWDg2KSA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcQ29tbW9uIEZpbGVzJwpDT01NT05QUk9HUkFNVzY0MzIgPSAnQzpcXFByb2dyYW0gRmlsZXNcXENvbW1vbiBGaWxlcycKQ09NUFVURVJOQU1FID0gJ0ZBUkhBTicKQ09NU1BFQyA9ICdDOlxcV0lORE9XU1xcc3lzdGVtMzJcXGNtZC5leGUnCkNPTlRFTlRfTEVOR1RIID0gJzEyOCcKQ09OVEVOVF9UWVBFID0gJ2FwcGxpY2F0aW9uL2pzb24nCkNTUkZfQ09PS0lFID0gJzFFRVAyU3dLdDFLOVFiV25GUFN5V1BJaWJ0TzdNQWFWcUtMRWVvb0ZnWVZ5ZGpZUG9nbjBPd3AyOW9VVzZBNksnCkRKQU5HT19TRVRUSU5HU19NT0RVTEUgPSAna2FwZS5zZXR0aW5ncycKRlBTX0JST1dTRVJfQVBQX1BST0ZJTEVfU1RSSU5HID0gJ0ludGVybmV0IEV4cGxvcmVyJwpGUFNfQlJPV1NFUl9VU0VSX1BST0ZJTEVfU1RSSU5HID0gJ0RlZmF1bHQnCkZQX05PX0hPU1RfQ0hFQ0sgPSAnTk8nCkdBVEVXQVlfSU5URVJGQUNFID0gJ0NHSS8xLjEnCkhPTUVEUklWRSA9ICdDOicKSE9NRVBBVEggPSAnXFxVc2Vyc1xcZmFyaGFfMDAwJwpIVFRQX0FDQ0VQVCA9ICdhcHBsaWNhdGlvbi9qc29uJwpIVFRQX0FDQ0VQVF9FTkNPRElORyA9ICdnemlwLCBkZWZsYXRlLCBicicKSFRUUF9BQ0NFUFRfTEFOR1VBR0UgPSAnaWQtSUQsaWQ7cT0wLjgsZW4tVVM7cT0wLjYsZW47cT0wLjQnCkhUVFBfQ09OTkVDVElPTiA9ICdrZWVwLWFsaXZlJwpIVFRQX0NPT0tJRSA9ICdzZXNzaW9uaWQ9Ymx0ODc3ZzVmam11Y3h5M2RkNXV4Y2l6YXZiOW9wb3Y7IGNzcmZ0b2tlbj0xRUVQMlN3S3QxSzlRYlduRlBTeVdQSWlidE83TUFhVnFLTEVlb29GZ1lWeWRqWVBvZ24wT3dwMjlvVVc2QTZLJwpIVFRQX0hPU1QgPSAnMTI3LjAuMC4xOjgwMDAnCkhUVFBfT1JJR0lOID0gJ2h0dHA6Ly8xMjcuMC4wLjE6ODAwMCcKSFRUUF9SRUZFUkVSID0gJ2h0dHA6Ly8xMjcuMC4wLjE6ODAwMC9hcGknCkhUVFBfVVNFUl9BR0VOVCA9ICdNb3ppbGxhLzUuMCAoV2luZG93cyBOVCAxMC4wOyBXT1c2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzU2LjAuMjkyNC44NyBTYWZhcmkvNTM3LjM2JwpIVFRQX1hfQ1NSRlRPS0VOID0gJ2pxOTFCdUY1ZTVSN1NqTUZSYzJUTmZ2V1U4bERPNnd5SXdnUU4weDAxMjJ3ZnJPN0FEeGxGV2NHUzNyczg2c24nCkxPQ0FMQVBQREFUQSA9ICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWwnCkxPR09OU0VSVkVSID0gJ1xcXFxGQVJIQU4nCk5VTUJFUl9PRl9QUk9DRVNTT1JTID0gJzInCk9ORURSSVZFID0gJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxPbmVEcml2ZScKT1MgPSAnV2luZG93c19OVCcKUEFUSCA9ICdDOlxcUHJvZ3JhbURhdGFcXE9yYWNsZVxcSmF2YVxcamF2YXBhdGg7QzpcXFByb2dyYW0gRmlsZXNcXEhhc2tlbGxcXGJpbjtDOlxcUHJvZ3JhbSBGaWxlc1xcSGFza2VsbCBQbGF0Zm9ybVxcNy4xMC4zXFxsaWJcXGV4dHJhbGlic1xcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxIYXNrZWxsIFBsYXRmb3JtXFw3LjEwLjNcXGJpbjtDOlxcV0lORE9XU1xcc3lzdGVtMzI7QzpcXFdJTkRPV1M7QzpcXFdJTkRPV1NcXFN5c3RlbTMyXFxXYmVtO0M6XFxXSU5ET1dTXFxTeXN0ZW0zMlxcV2luZG93c1Bvd2VyU2hlbGxcXHYxLjBcXDtDOlxcUHJvZ3JhbSBGaWxlc1xcSGFza2VsbCBQbGF0Zm9ybVxcNy4xMC4zXFxtaW5nd1xcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxKYXZhXFxqZGsxLjguMF83N1xcYmluO0M6XFxjeWd3aW42NFxcYmluOyVsb2NhbGFwcGRhdGElXFxNaWNyb3NvZnRcXFdpbmRvd3NBcHBzO0Q6XFxYQU1QUFxccGhwO0M6XFxQcm9ncmFtIEZpbGVzXFxHaXRcXGNtZDtDOlxceGFtcHBcXHBocDtDOlxcUHJvZ3JhbURhdGFcXENvbXBvc2VyU2V0dXBcXGJpbjtDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcbm9kZWpzXFw7QzpcXFByb2dyYW0gRmlsZXNcXFBvc3RncmVTUUxcXDkuNlxcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxNQVRMQUJcXFIyMDE3YVxcYmluO0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXFNjcmlwdHNcXDtDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyXFw7QzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmdcXGNhYmFsXFxiaW47RDpcXFhBTVBQXFxwaHA7QzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmdcXENvbXBvc2VyXFx2ZW5kb3JcXGJpbjtDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXE1pY3Jvc29mdFxcV2luZG93c0FwcHM7QzpcXHB5dGhvbi0zLjYuMCcKUEFUSEVYVCA9ICcuQ09NOy5FWEU7LkJBVDsuQ01EOy5WQlM7LlZCRTsuSlM7LkpTRTsuV1NGOy5XU0g7Lk1TQycKUEFUSF9JTkZPID0gJy9hcGkvc3R1ZGVudHMvMS9ib29rbWFya2VkLXZhY2FuY2llcy8nClBST0NFU1NPUl9BUkNISVRFQ1RVUkUgPSAneDg2JwpQUk9DRVNTT1JfQVJDSElURVc2NDMyID0gJ0FNRDY0JwpQUk9DRVNTT1JfSURFTlRJRklFUiA9ICdJbnRlbDY0IEZhbWlseSA2IE1vZGVsIDU4IFN0ZXBwaW5nIDksIEdlbnVpbmVJbnRlbCcKUFJPQ0VTU09SX0xFVkVMID0gJzYnClBST0NFU1NPUl9SRVZJU0lPTiA9ICczYTA5JwpQUk9HUkFNREFUQSA9ICdDOlxcUHJvZ3JhbURhdGEnClBST0dSQU1GSUxFUyA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KScKUFJPR1JBTUZJTEVTKFg4NikgPSAnQzpcXFByb2dyYW0gRmlsZXMgKHg4NiknClBST0dSQU1XNjQzMiA9ICdDOlxcUHJvZ3JhbSBGaWxlcycKUFJPTVBUID0gJyRQJEcnClBTTU9EVUxFUEFUSCA9ICdDOlxcV0lORE9XU1xcc3lzdGVtMzJcXFdpbmRvd3NQb3dlclNoZWxsXFx2MS4wXFxNb2R1bGVzXFwnClBVQkxJQyA9ICdDOlxcVXNlcnNcXFB1YmxpYycKUVVFUllfU1RSSU5HID0gJycKUkVNT1RFX0FERFIgPSAnMTI3LjAuMC4xJwpSRU1PVEVfSE9TVCA9ICcnClJFUVVFU1RfTUVUSE9EID0gJ1BPU1QnClJVTl9NQUlOID0gJ3RydWUnClNDUklQVF9OQU1FID0gJycKU0VSVkVSX05BTUUgPSAnRmFyaGFuJwpTRVJWRVJfUE9SVCA9ICc4MDAwJwpTRVJWRVJfUFJPVE9DT0wgPSAnSFRUUC8xLjEnClNFUlZFUl9TT0ZUV0FSRSA9ICdXU0dJU2VydmVyLzAuMicKU0VTU0lPTk5BTUUgPSAnQ29uc29sZScKU1lTVEVNRFJJVkUgPSAnQzonClNZU1RFTVJPT1QgPSAnQzpcXFdJTkRPV1MnClRFTVAgPSAnQzpcXFVzZXJzXFxGQVJIQV9+MVxcQXBwRGF0YVxcTG9jYWxcXFRlbXAnClRNUCA9ICdDOlxcVXNlcnNcXEZBUkhBX34xXFxBcHBEYXRhXFxMb2NhbFxcVGVtcCcKVVNFUkRPTUFJTiA9ICdGYXJoYW4nClVTRVJET01BSU5fUk9BTUlOR1BST0ZJTEUgPSAnRmFyaGFuJwpVU0VSTkFNRSA9ICdGYXJoYW4gRmFyYXNkYWsnClVTRVJQUk9GSUxFID0gJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwJwpWQk9YX01TSV9JTlNUQUxMX1BBVEggPSAnQzpcXFByb2dyYW0gRmlsZXNcXE9yYWNsZVxcVmlydHVhbEJveFxcJwpXSU5ESVIgPSAnQzpcXFdJTkRPV1MnCndzZ2kuZXJyb3JzID0gPF9pby5UZXh0SU9XcmFwcGVyIG5hbWU9JzxzdGRlcnI+JyBtb2RlPSd3JyBlbmNvZGluZz0ndXRmLTgnPgp3c2dpLmZpbGVfd3JhcHBlciA9ICcnCndzZ2kuaW5wdXQgPSA8X2lvLkJ1ZmZlcmVkUmVhZGVyIG5hbWU9MTIxNj4Kd3NnaS5tdWx0aXByb2Nlc3MgPSBGYWxzZQp3c2dpLm11bHRpdGhyZWFkID0gVHJ1ZQp3c2dpLnJ1bl9vbmNlID0gRmFsc2UKd3NnaS51cmxfc2NoZW1lID0gJ2h0dHAnCndzZ2kudmVyc2lvbiA9IAoKU2V0dGluZ3M6ClVzaW5nIHNldHRpbmdzIG1vZHVsZSBrYXBlLnNldHRpbmdzCkFCU09MVVRFX1VSTF9PVkVSUklERVMgPSB7fQpBRE1JTlMgPSBbXQpBTExPV0VEX0hPU1RTID0gWydib3QucmVjcnVpdC5pZCcsICcxMDQuMjM2Ljc2LjE2MScsICdsb2NhbGhvc3QnLCAnMTI3LjAuMC4xJ10KQVBQRU5EX1NMQVNIID0gVHJ1ZQpBVVRIRU5USUNBVElPTl9CQUNLRU5EUyA9IFsnZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQnXQpBVVRIX1BBU1NXT1JEX1ZBTElEQVRPUlMgPSAnKioqKioqKioqKioqKioqKioqKionCkFVVEhfVVNFUl9NT0RFTCA9ICdhdXRoLlVzZXInCkJBU0VfRElSID0gJ0Q6XFxQUExBJwpDQUNIRVMgPSB7J2RlZmF1bHQnOiB7J0JBQ0tFTkQnOiAnZGphbmdvLmNvcmUuY2FjaGUuYmFja2VuZHMubG9jbWVtLkxvY01lbUNhY2hlJ319CkNBQ0hFX01JRERMRVdBUkVfQUxJQVMgPSAnZGVmYXVsdCcKQ0FDSEVfTUlERExFV0FSRV9LRVlfUFJFRklYID0gJyoqKioqKioqKioqKioqKioqKioqJwpDQUNIRV9NSURETEVXQVJFX1NFQ09ORFMgPSA2MDAKQ1NSRl9DT09LSUVfQUdFID0gMzE0NDk2MDAKQ1NSRl9DT09LSUVfRE9NQUlOID0gTm9uZQpDU1JGX0NPT0tJRV9IVFRQT05MWSA9IEZhbHNlCkNTUkZfQ09PS0lFX05BTUUgPSAnY3NyZnRva2VuJwpDU1JGX0NPT0tJRV9QQVRIID0gJy8nCkNTUkZfQ09PS0lFX1NFQ1VSRSA9IEZhbHNlCkNTUkZfRkFJTFVSRV9WSUVXID0gJ2RqYW5nby52aWV3cy5jc3JmLmNzcmZfZmFpbHVyZScKQ1NSRl9IRUFERVJfTkFNRSA9ICdIVFRQX1hfQ1NSRlRPS0VOJwpDU1JGX1RSVVNURURfT1JJR0lOUyA9IFtdCkRBVEFCQVNFUyA9IHsnZGVmYXVsdCc6IHsnRU5HSU5FJzogJ2RqYW5nby5kYi5iYWNrZW5kcy5wb3N0Z3Jlc3FsX3BzeWNvcGcyJywgJ05BTUUnOiAna2FwZScsICdVU0VSJzogJ2thcGUnLCAnUEFTU1dPUkQnOiAnKioqKioqKioqKioqKioqKioqKionLCAnSE9TVCc6ICdsb2NhbGhvc3QnLCAnUE9SVCc6ICcnLCAnQVRPTUlDX1JFUVVFU1RTJzogRmFsc2UsICdBVVRPQ09NTUlUJzogVHJ1ZSwgJ0NPTk5fTUFYX0FHRSc6IDAsICdPUFRJT05TJzoge30sICdUSU1FX1pPTkUnOiBOb25lLCAnVEVTVCc6IHsnQ0hBUlNFVCc6IE5vbmUsICdDT0xMQVRJT04nOiBOb25lLCAnTkFNRSc6IE5vbmUsICdNSVJST1InOiBOb25lfX19CkRBVEFCQVNFX1JPVVRFUlMgPSBbXQpEQVRBX1VQTE9BRF9NQVhfTUVNT1JZX1NJWkUgPSAyNjIxNDQwCkRBVEFfVVBMT0FEX01BWF9OVU1CRVJfRklFTERTID0gMTAwMApEQVRFVElNRV9GT1JNQVQgPSAnTiBqLCBZLCBQJwpEQVRFVElNRV9JTlBVVF9GT1JNQVRTID0gWyclWS0lbS0lZCAlSDolTTolUycsICclWS0lbS0lZCAlSDolTTolUy4lZicsICclWS0lbS0lZCAlSDolTScsICclWS0lbS0lZCcsICclbS8lZC8lWSAlSDolTTolUycsICclbS8lZC8lWSAlSDolTTolUy4lZicsICclbS8lZC8lWSAlSDolTScsICclbS8lZC8lWScsICclbS8lZC8leSAlSDolTTolUycsICclbS8lZC8leSAlSDolTTolUy4lZicsICclbS8lZC8leSAlSDolTScsICclbS8lZC8leSddCkRBVEVfRk9STUFUID0gJ04gaiwgWScKREFURV9JTlBVVF9GT1JNQVRTID0gWyclWS0lbS0lZCcsICclbS8lZC8lWScsICclbS8lZC8leScsICclYiAlZCAlWScsICclYiAlZCwgJVknLCAnJWQgJWIgJVknLCAnJWQgJWIsICVZJywgJyVCICVkICVZJywgJyVCICVkLCAlWScsICclZCAlQiAlWScsICclZCAlQiwgJVknXQpERUJVRyA9IFRydWUKREVCVUdfUFJPUEFHQVRFX0VYQ0VQVElPTlMgPSBGYWxzZQpERUNJTUFMX1NFUEFSQVRPUiA9ICcuJwpERUZBVUxUX0NIQVJTRVQgPSAndXRmLTgnCkRFRkFVTFRfQ09OVEVOVF9UWVBFID0gJ3RleHQvaHRtbCcKREVGQVVMVF9FWENFUFRJT05fUkVQT1JURVJfRklMVEVSID0gJ2RqYW5nby52aWV3cy5kZWJ1Zy5TYWZlRXhjZXB0aW9uUmVwb3J0ZXJGaWx0ZXInCkRFRkFVTFRfRklMRV9TVE9SQUdFID0gJ2RqYW5nby5jb3JlLmZpbGVzLnN0b3JhZ2UuRmlsZVN5c3RlbVN0b3JhZ2UnCkRFRkFVTFRfRlJPTV9FTUFJTCA9ICd3ZWJtYXN0ZXJAbG9jYWxob3N0JwpERUZBVUxUX0lOREVYX1RBQkxFU1BBQ0UgPSAnJwpERUZBVUxUX1RBQkxFU1BBQ0UgPSAnJwpESVNBTExPV0VEX1VTRVJfQUdFTlRTID0gW10KRU1BSUxfQkFDS0VORCA9ICdkamFuZ28uY29yZS5tYWlsLmJhY2tlbmRzLnNtdHAuRW1haWxCYWNrZW5kJwpFTUFJTF9IT1NUID0gJ2xvY2FsaG9zdCcKRU1BSUxfSE9TVF9QQVNTV09SRCA9ICcqKioqKioqKioqKioqKioqKioqKicKRU1BSUxfSE9TVF9VU0VSID0gJycKRU1BSUxfUE9SVCA9IDI1CkVNQUlMX1NTTF9DRVJURklMRSA9IE5vbmUKRU1BSUxfU1NMX0tFWUZJTEUgPSAnKioqKioqKioqKioqKioqKioqKionCkVNQUlMX1NVQkpFQ1RfUFJFRklYID0gJ1tEamFuZ29dICcKRU1BSUxfVElNRU9VVCA9IE5vbmUKRU1BSUxfVVNFX1NTTCA9IEZhbHNlCkVNQUlMX1VTRV9UTFMgPSBGYWxzZQpGSUxFX0NIQVJTRVQgPSAndXRmLTgnCkZJTEVfVVBMT0FEX0RJUkVDVE9SWV9QRVJNSVNTSU9OUyA9IE5vbmUKRklMRV9VUExPQURfSEFORExFUlMgPSBbJ2RqYW5nby5jb3JlLmZpbGVzLnVwbG9hZGhhbmRsZXIuTWVtb3J5RmlsZVVwbG9hZEhhbmRsZXInLCAnZGphbmdvLmNvcmUuZmlsZXMudXBsb2FkaGFuZGxlci5UZW1wb3JhcnlGaWxlVXBsb2FkSGFuZGxlciddCkZJTEVfVVBMT0FEX01BWF9NRU1PUllfU0laRSA9IDI2MjE0NDAKRklMRV9VUExPQURfUEVSTUlTU0lPTlMgPSBOb25lCkZJTEVfVVBMT0FEX1RFTVBfRElSID0gTm9uZQpGSVJTVF9EQVlfT0ZfV0VFSyA9IDAKRklYVFVSRV9ESVJTID0gW10KRk9SQ0VfU0NSSVBUX05BTUUgPSBOb25lCkZPUk1BVF9NT0RVTEVfUEFUSCA9IE5vbmUKR1pJUF9DT05URU5UX1RZUEVTID0gCklHTk9SQUJMRV80MDRfVVJMUyA9IFtdCklOU1RBTExFRF9BUFBTID0gWydkamFuZ28uY29udHJpYi5hZG1pbicsICdkamFuZ28uY29udHJpYi5hdXRoJywgJ2RqYW5nby5jb250cmliLmNvbnRlbnR0eXBlcycsICdkamFuZ28uY29udHJpYi5zZXNzaW9ucycsICdkamFuZ28uY29udHJpYi5tZXNzYWdlcycsICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcycsICd3ZWJwYWNrX2xvYWRlcicsICdjb3JlJywgJ3Jlc3RfZnJhbWV3b3JrJywgJ2RqYW5nb19ub3NlJywgJ3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXInLCAnc2lsayddCklOVEVSTkFMX0lQUyA9IFtdCkxBTkdVQUdFUyA9IFsoJ2FmJywgJ0FmcmlrYWFucycpLCAoJ2FyJywgJ0FyYWJpYycpLCAoJ2FzdCcsICdBc3R1cmlhbicpLCAoJ2F6JywgJ0F6ZXJiYWlqYW5pJyksICgnYmcnLCAnQnVsZ2FyaWFuJyksICgnYmUnLCAnQmVsYXJ1c2lhbicpLCAoJ2JuJywgJ0JlbmdhbGknKSwgKCdicicsICdCcmV0b24nKSwgKCdicycsICdCb3NuaWFuJyksICgnY2EnLCAnQ2F0YWxhbicpLCAoJ2NzJywgJ0N6ZWNoJyksICgnY3knLCAnV2Vsc2gnKSwgKCdkYScsICdEYW5pc2gnKSwgKCdkZScsICdHZXJtYW4nKSwgKCdkc2InLCAnTG93ZXIgU29yYmlhbicpLCAoJ2VsJywgJ0dyZWVrJyksICgnZW4nLCAnRW5nbGlzaCcpLCAoJ2VuLWF1JywgJ0F1c3RyYWxpYW4gRW5nbGlzaCcpLCAoJ2VuLWdiJywgJ0JyaXRpc2ggRW5nbGlzaCcpLCAoJ2VvJywgJ0VzcGVyYW50bycpLCAoJ2VzJywgJ1NwYW5pc2gnKSwgKCdlcy1hcicsICdBcmdlbnRpbmlhbiBTcGFuaXNoJyksICgnZXMtY28nLCAnQ29sb21iaWFuIFNwYW5pc2gnKSwgKCdlcy1teCcsICdNZXhpY2FuIFNwYW5pc2gnKSwgKCdlcy1uaScsICdOaWNhcmFndWFuIFNwYW5pc2gnKSwgKCdlcy12ZScsICdWZW5lenVlbGFuIFNwYW5pc2gnKSwgKCdldCcsICdFc3RvbmlhbicpLCAoJ2V1JywgJ0Jhc3F1ZScpLCAoJ2ZhJywgJ1BlcnNpYW4nKSwgKCdmaScsICdGaW5uaXNoJyksICgnZnInLCAnRnJlbmNoJyksICgnZnknLCAnRnJpc2lhbicpLCAoJ2dhJywgJ0lyaXNoJyksICgnZ2QnLCAnU2NvdHRpc2ggR2FlbGljJyksICgnZ2wnLCAnR2FsaWNpYW4nKSwgKCdoZScsICdIZWJyZXcnKSwgKCdoaScsICdIaW5kaScpLCAoJ2hyJywgJ0Nyb2F0aWFuJyksICgnaHNiJywgJ1VwcGVyIFNvcmJpYW4nKSwgKCdodScsICdIdW5nYXJpYW4nKSwgKCdpYScsICdJbnRlcmxpbmd1YScpLCAoJ2lkJywgJ0luZG9uZXNpYW4nKSwgKCdpbycsICdJZG8nKSwgKCdpcycsICdJY2VsYW5kaWMnKSwgKCdpdCcsICdJdGFsaWFuJyksICgnamEnLCAnSmFwYW5lc2UnKSwgKCdrYScsICdHZW9yZ2lhbicpLCAoJ2trJywgJ0themFraCcpLCAoJ2ttJywgJ0tobWVyJyksICgna24nLCAnS2FubmFkYScpLCAoJ2tvJywgJ0tvcmVhbicpLCAoJ2xiJywgJ0x1eGVtYm91cmdpc2gnKSwgKCdsdCcsICdMaXRodWFuaWFuJyksICgnbHYnLCAnTGF0dmlhbicpLCAoJ21rJywgJ01hY2Vkb25pYW4nKSwgKCdtbCcsICdNYWxheWFsYW0nKSwgKCdtbicsICdNb25nb2xpYW4nKSwgKCdtcicsICdNYXJhdGhpJyksICgnbXknLCAnQnVybWVzZScpLCAoJ25iJywgJ05vcndlZ2lhbiBCb2ttw6VsJyksICgnbmUnLCAnTmVwYWxpJyksICgnbmwnLCAnRHV0Y2gnKSwgKCdubicsICdOb3J3ZWdpYW4gTnlub3JzaycpLCAoJ29zJywgJ09zc2V0aWMnKSwgKCdwYScsICdQdW5qYWJpJyksICgncGwnLCAnUG9saXNoJyksICgncHQnLCAnUG9ydHVndWVzZScpLCAoJ3B0LWJyJywgJ0JyYXppbGlhbiBQb3J0dWd1ZXNlJyksICgncm8nLCAnUm9tYW5pYW4nKSwgKCdydScsICdSdXNzaWFuJyksICgnc2snLCAnU2xvdmFrJyksICgnc2wnLCAnU2xvdmVuaWFuJyksICgnc3EnLCAnQWxiYW5pYW4nKSwgKCdzcicsICdTZXJiaWFuJyksICgnc3ItbGF0bicsICdTZXJiaWFuIExhdGluJyksICgnc3YnLCAnU3dlZGlzaCcpLCAoJ3N3JywgJ1N3YWhpbGknKSwgKCd0YScsICdUYW1pbCcpLCAoJ3RlJywgJ1RlbHVndScpLCAoJ3RoJywgJ1RoYWknKSwgKCd0cicsICdUdXJraXNoJyksICgndHQnLCAnVGF0YXInKSwgKCd1ZG0nLCAnVWRtdXJ0JyksICgndWsnLCAnVWtyYWluaWFuJyksICgndXInLCAnVXJkdScpLCAoJ3ZpJywgJ1ZpZXRuYW1lc2UnKSwgKCd6aC1oYW5zJywgJ1NpbXBsaWZpZWQgQ2hpbmVzZScpLCAoJ3poLWhhbnQnLCAnVHJhZGl0aW9uYWwgQ2hpbmVzZScpXQpMQU5HVUFHRVNfQklESSA9IFsnaGUnLCAnYXInLCAnZmEnLCAndXInXQpMQU5HVUFHRV9DT0RFID0gJ2VuLXVzJwpMQU5HVUFHRV9DT09LSUVfQUdFID0gTm9uZQpMQU5HVUFHRV9DT09LSUVfRE9NQUlOID0gTm9uZQpMQU5HVUFHRV9DT09LSUVfTkFNRSA9ICdkamFuZ29fbGFuZ3VhZ2UnCkxBTkdVQUdFX0NPT0tJRV9QQVRIID0gJy8nCkxPQ0FMRV9QQVRIUyA9IFtdCkxPR0dJTkcgPSB7fQpMT0dHSU5HX0NPTkZJRyA9ICdsb2dnaW5nLmNvbmZpZy5kaWN0Q29uZmlnJwpMT0dJTl9SRURJUkVDVF9VUkwgPSAnL2FjY291bnRzL3Byb2ZpbGUvJwpMT0dJTl9VUkwgPSAnL2FjY291bnRzL2xvZ2luLycKTE9HT1VUX1JFRElSRUNUX1VSTCA9IE5vbmUKTUFOQUdFUlMgPSBbXQpNRURJQV9ST09UID0gJy9ob21lL2ZpbGVzJwpNRURJQV9VUkwgPSAnL2ZpbGVzLycKTUVTU0FHRV9TVE9SQUdFID0gJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzLnN0b3JhZ2UuZmFsbGJhY2suRmFsbGJhY2tTdG9yYWdlJwpNSURETEVXQVJFID0gWydkamFuZ28ubWlkZGxld2FyZS5zZWN1cml0eS5TZWN1cml0eU1pZGRsZXdhcmUnLCAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMubWlkZGxld2FyZS5TZXNzaW9uTWlkZGxld2FyZScsICdkamFuZ28ubWlkZGxld2FyZS5jb21tb24uQ29tbW9uTWlkZGxld2FyZScsICdkamFuZ28ubWlkZGxld2FyZS5jc3JmLkNzcmZWaWV3TWlkZGxld2FyZScsICdkamFuZ28uY29udHJpYi5hdXRoLm1pZGRsZXdhcmUuQXV0aGVudGljYXRpb25NaWRkbGV3YXJlJywgJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzLm1pZGRsZXdhcmUuTWVzc2FnZU1pZGRsZXdhcmUnLCAnZGphbmdvLm1pZGRsZXdhcmUuY2xpY2tqYWNraW5nLlhGcmFtZU9wdGlvbnNNaWRkbGV3YXJlJywgJ3NpbGsubWlkZGxld2FyZS5TaWxreU1pZGRsZXdhcmUnXQpNSURETEVXQVJFX0NMQVNTRVMgPSBbJ2RqYW5nby5taWRkbGV3YXJlLmNvbW1vbi5Db21tb25NaWRkbGV3YXJlJywgJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJ10KTUlHUkFUSU9OX01PRFVMRVMgPSB7fQpNT05USF9EQVlfRk9STUFUID0gJ0YgaicKTk9TRV9BUkdTID0gWyctLXdpdGgtY292ZXJhZ2UnLCAnLS1jb3Zlci1wYWNrYWdlPWNvcmUudmlld3MnLCAnLS1jb3Zlci1odG1sLWRpcj10ZXN0L2JhY2tlbmQnLCAnLS1jb3Zlci1odG1sJ10KTlVNQkVSX0dST1VQSU5HID0gMApQQVNTV09SRF9IQVNIRVJTID0gJyoqKioqKioqKioqKioqKioqKioqJwpQQVNTV09SRF9SRVNFVF9USU1FT1VUX0RBWVMgPSAnKioqKioqKioqKioqKioqKioqKionClBSRVBFTkRfV1dXID0gRmFsc2UKUkVTVF9GUkFNRVdPUksgPSB7J0RFRkFVTFRfUEVSTUlTU0lPTl9DTEFTU0VTJzogWydyZXN0X2ZyYW1ld29yay5wZXJtaXNzaW9ucy5EamFuZ29Nb2RlbFBlcm1pc3Npb25zT3JBbm9uUmVhZE9ubHknXX0KUk9PVF9VUkxDT05GID0gJ2thcGUudXJscycKUlVOTklOR19ERVZTRVJWRVIgPSBUcnVlClNFQ1JFVF9LRVkgPSAnKioqKioqKioqKioqKioqKioqKionClNFQ1VSRV9CUk9XU0VSX1hTU19GSUxURVIgPSBGYWxzZQpTRUNVUkVfQ09OVEVOVF9UWVBFX05PU05JRkYgPSBGYWxzZQpTRUNVUkVfSFNUU19JTkNMVURFX1NVQkRPTUFJTlMgPSBGYWxzZQpTRUNVUkVfSFNUU19TRUNPTkRTID0gMApTRUNVUkVfUFJPWFlfU1NMX0hFQURFUiA9IE5vbmUKU0VDVVJFX1JFRElSRUNUX0VYRU1QVCA9IFtdClNFQ1VSRV9TU0xfSE9TVCA9IE5vbmUKU0VDVVJFX1NTTF9SRURJUkVDVCA9IEZhbHNlClNFUlZFUl9FTUFJTCA9ICdyb290QGxvY2FsaG9zdCcKU0VTU0lPTl9DQUNIRV9BTElBUyA9ICdkZWZhdWx0JwpTRVNTSU9OX0NPT0tJRV9BR0UgPSAxMjA5NjAwClNFU1NJT05fQ09PS0lFX0RPTUFJTiA9IE5vbmUKU0VTU0lPTl9DT09LSUVfSFRUUE9OTFkgPSBGYWxzZQpTRVNTSU9OX0NPT0tJRV9OQU1FID0gJ3Nlc3Npb25pZCcKU0VTU0lPTl9DT09LSUVfUEFUSCA9ICcvJwpTRVNTSU9OX0NPT0tJRV9TRUNVUkUgPSBGYWxzZQpTRVNTSU9OX0VOR0lORSA9ICdkamFuZ28uY29udHJpYi5zZXNzaW9ucy5iYWNrZW5kcy5kYicKU0VTU0lPTl9FWFBJUkVfQVRfQlJPV1NFUl9DTE9TRSA9IEZhbHNlClNFU1NJT05fRklMRV9QQVRIID0gTm9uZQpTRVNTSU9OX1NBVkVfRVZFUllfUkVRVUVTVCA9IEZhbHNlClNFU1NJT05fU0VSSUFMSVpFUiA9ICdkamFuZ28uY29udHJpYi5zZXNzaW9ucy5zZXJpYWxpemVycy5KU09OU2VyaWFsaXplcicKU0VUVElOR1NfTU9EVUxFID0gJ2thcGUuc2V0dGluZ3MnClNIT1JUX0RBVEVUSU1FX0ZPUk1BVCA9ICdtL2QvWSBQJwpTSE9SVF9EQVRFX0ZPUk1BVCA9ICdtL2QvWScKU0lHTklOR19CQUNLRU5EID0gJ2RqYW5nby5jb3JlLnNpZ25pbmcuVGltZXN0YW1wU2lnbmVyJwpTSUxFTkNFRF9TWVNURU1fQ0hFQ0tTID0gW10KU1RBVElDRklMRVNfRElSUyA9ICdEOlxcUFBMQVxcYXNzZXRzJwpTVEFUSUNGSUxFU19GSU5ERVJTID0gWydkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcy5maW5kZXJzLkZpbGVTeXN0ZW1GaW5kZXInLCAnZGphbmdvLmNvbnRyaWIuc3RhdGljZmlsZXMuZmluZGVycy5BcHBEaXJlY3Rvcmllc0ZpbmRlciddClNUQVRJQ0ZJTEVTX1NUT1JBR0UgPSAnZGphbmdvLmNvbnRyaWIuc3RhdGljZmlsZXMuc3RvcmFnZS5TdGF0aWNGaWxlc1N0b3JhZ2UnClNUQVRJQ19ST09UID0gJy9ob21lL2Fzc2V0cycKU1RBVElDX1VSTCA9ICcvYXNzZXRzLycKVEVNUExBVEVTID0gW3snQkFDS0VORCc6ICdkamFuZ28udGVtcGxhdGUuYmFja2VuZHMuZGphbmdvLkRqYW5nb1RlbXBsYXRlcycsICdESVJTJzogW10sICdBUFBfRElSUyc6IFRydWUsICdPUFRJT05TJzogeydjb250ZXh0X3Byb2Nlc3NvcnMnOiBbJ2RqYW5nby50ZW1wbGF0ZS5jb250ZXh0X3Byb2Nlc3NvcnMuZGVidWcnLCAnZGphbmdvLnRlbXBsYXRlLmNvbnRleHRfcHJvY2Vzc29ycy5yZXF1ZXN0JywgJ2RqYW5nby5jb250cmliLmF1dGguY29udGV4dF9wcm9jZXNzb3JzLmF1dGgnLCAnZGphbmdvLmNvbnRyaWIubWVzc2FnZXMuY29udGV4dF9wcm9jZXNzb3JzLm1lc3NhZ2VzJ119fV0KVEVTVF9OT05fU0VSSUFMSVpFRF9BUFBTID0gW10KVEVTVF9SVU5ORVIgPSAnZGphbmdvX25vc2UuTm9zZVRlc3RTdWl0ZVJ1bm5lcicKVEhPVVNBTkRfU0VQQVJBVE9SID0gJywnClRJTUVfRk9STUFUID0gJ1AnClRJTUVfSU5QVVRfRk9STUFUUyA9IFsnJUg6JU06JVMnLCAnJUg6JU06JVMuJWYnLCAnJUg6JU0nXQpUSU1FX1pPTkUgPSAnVVRDJwpVU0VfRVRBR1MgPSBGYWxzZQpVU0VfSTE4TiA9IFRydWUKVVNFX0wxME4gPSBUcnVlClVTRV9USE9VU0FORF9TRVBBUkFUT1IgPSBGYWxzZQpVU0VfVFogPSBUcnVlClVTRV9YX0ZPUldBUkRFRF9IT1NUID0gRmFsc2UKVVNFX1hfRk9SV0FSREVEX1BPUlQgPSBGYWxzZQpXRUJQQUNLX0xPQURFUiA9IHsnREVGQVVMVCc6IHsnQlVORExFX0RJUl9OQU1FJzogJ2J1bmRsZXMvJywgJ1NUQVRTX0ZJTEUnOiAnRDpcXFBQTEFcXHdlYnBhY2stc3RhdHMuanNvbid9fQpXU0dJX0FQUExJQ0FUSU9OID0gJ2thcGUud3NnaS5hcHBsaWNhdGlvbicKWF9GUkFNRV9PUFRJT05TID0gJ1NBTUVPUklHSU4nCllFQVJfTU9OVEhfRk9STUFUID0gJ0YgWScKCgpZb3UncmUgc2VlaW5nIHRoaXMgZXJyb3IgYmVjYXVzZSB5b3UgaGF2ZSBERUJVRyA9IFRydWUgaW4geW91cgpEamFuZ28gc2V0dGluZ3MgZmlsZS4gQ2hhbmdlIHRoYXQgdG8gRmFsc2UsIGFuZCBEamFuZ28gd2lsbApkaXNwbGF5IGEgc3RhbmRhcmQgcGFnZSBnZW5lcmF0ZWQgYnkgdGhlIGhhbmRsZXIgZm9yIHRoaXMgc3RhdHVzIGNvZGUuCgo=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/plain\"}" - } -}, -{ - "model": "silk.response", - "pk": "d113954a-4f89-4fe3-ba42-26dcd67adb8c", - "fields": { - "request": "caee840e-9791-458c-822f-8324677c7a09", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "d1467d36-14e8-4c22-b9e8-ba2256308fd6", - "fields": { - "request": "3c1b326b-8bb8-49d9-a20e-74391a050945", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "d17992e8-a183-4383-bb8d-395734979607", - "fields": { - "request": "70062575-4e0e-42da-8034-f02434dd3991", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "d1aa90c3-3ffa-47ef-8ff2-3281cb37b543", - "fields": { - "request": "ceab8336-c4a7-4232-be6e-4dc62d2d0c99", - "status_code": 500, - "raw_body": "QXR0cmlidXRlRXJyb3IgYXQgL2FwaS9zdHVkZW50cy80L2Jvb2ttYXJrZWQtdmFjYW5jaWVzLwonZGljdCcgb2JqZWN0IGhhcyBubyBhdHRyaWJ1dGUgJ2lkJwoKUmVxdWVzdCBNZXRob2Q6IFBPU1QKUmVxdWVzdCBVUkw6IGh0dHA6Ly8xMjcuMC4wLjE6ODAwMC9hcGkvc3R1ZGVudHMvNC9ib29rbWFya2VkLXZhY2FuY2llcy8KRGphbmdvIFZlcnNpb246IDEuMTAuNQpQeXRob24gRXhlY3V0YWJsZTogQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXHB5dGhvbi5leGUKUHl0aG9uIFZlcnNpb246IDMuNi4wClB5dGhvbiBQYXRoOiBbJ0Q6XFxQUExBJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXHB5dGhvbjM2LnppcCcsICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyXFxETExzJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXGxpYicsICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXGxpYlxcc2l0ZS1wYWNrYWdlcyddClNlcnZlciB0aW1lOiBNb24sIDI3IE1hciAyMDE3IDE1OjQ4OjUwICswMDAwCkluc3RhbGxlZCBBcHBsaWNhdGlvbnM6ClsnZGphbmdvLmNvbnRyaWIuYWRtaW4nLAogJ2RqYW5nby5jb250cmliLmF1dGgnLAogJ2RqYW5nby5jb250cmliLmNvbnRlbnR0eXBlcycsCiAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMnLAogJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzJywKICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcycsCiAnd2VicGFja19sb2FkZXInLAogJ2NvcmUnLAogJ3Jlc3RfZnJhbWV3b3JrJywKICdkamFuZ29fbm9zZScsCiAncmVzdF9mcmFtZXdvcmtfc3dhZ2dlcicsCiAnc2lsayddCkluc3RhbGxlZCBNaWRkbGV3YXJlOgpbJ2RqYW5nby5taWRkbGV3YXJlLnNlY3VyaXR5LlNlY3VyaXR5TWlkZGxld2FyZScsCiAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMubWlkZGxld2FyZS5TZXNzaW9uTWlkZGxld2FyZScsCiAnZGphbmdvLm1pZGRsZXdhcmUuY29tbW9uLkNvbW1vbk1pZGRsZXdhcmUnLAogJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5hdXRoLm1pZGRsZXdhcmUuQXV0aGVudGljYXRpb25NaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5tZXNzYWdlcy5taWRkbGV3YXJlLk1lc3NhZ2VNaWRkbGV3YXJlJywKICdkamFuZ28ubWlkZGxld2FyZS5jbGlja2phY2tpbmcuWEZyYW1lT3B0aW9uc01pZGRsZXdhcmUnLAogJ3NpbGsubWlkZGxld2FyZS5TaWxreU1pZGRsZXdhcmUnXQoKClRyYWNlYmFjazogIAoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXGRqYW5nb1xjb3JlXGhhbmRsZXJzXGV4Y2VwdGlvbi5weSIgaW4gaW5uZXIKICAzOS4gICAgICAgICAgICAgcmVzcG9uc2UgPSBnZXRfcmVzcG9uc2UocmVxdWVzdCkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cY29yZVxoYW5kbGVyc1xiYXNlLnB5IiBpbiBfZ2V0X3Jlc3BvbnNlCiAgMTg3LiAgICAgICAgICAgICAgICAgcmVzcG9uc2UgPSBzZWxmLnByb2Nlc3NfZXhjZXB0aW9uX2J5X21pZGRsZXdhcmUoZSwgcmVxdWVzdCkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cY29yZVxoYW5kbGVyc1xiYXNlLnB5IiBpbiBfZ2V0X3Jlc3BvbnNlCiAgMTg1LiAgICAgICAgICAgICAgICAgcmVzcG9uc2UgPSB3cmFwcGVkX2NhbGxiYWNrKHJlcXVlc3QsICpjYWxsYmFja19hcmdzLCAqKmNhbGxiYWNrX2t3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cdmlld3NcZGVjb3JhdG9yc1xjc3JmLnB5IiBpbiB3cmFwcGVkX3ZpZXcKICA1OC4gICAgICAgICByZXR1cm4gdmlld19mdW5jKCphcmdzLCAqKmt3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3c2V0cy5weSIgaW4gdmlldwogIDgzLiAgICAgICAgICAgICByZXR1cm4gc2VsZi5kaXNwYXRjaChyZXF1ZXN0LCAqYXJncywgKiprd2FyZ3MpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNccmVzdF9mcmFtZXdvcmtcdmlld3MucHkiIGluIGRpc3BhdGNoCiAgNDgzLiAgICAgICAgICAgICByZXNwb25zZSA9IHNlbGYuaGFuZGxlX2V4Y2VwdGlvbihleGMpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNccmVzdF9mcmFtZXdvcmtcdmlld3MucHkiIGluIGhhbmRsZV9leGNlcHRpb24KICA0NDMuICAgICAgICAgICAgIHNlbGYucmFpc2VfdW5jYXVnaHRfZXhjZXB0aW9uKGV4YykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3cy5weSIgaW4gZGlzcGF0Y2gKICA0ODAuICAgICAgICAgICAgIHJlc3BvbnNlID0gaGFuZGxlcihyZXF1ZXN0LCAqYXJncywgKiprd2FyZ3MpCgpGaWxlICJEOlxQUExBXGNvcmVcdmlld3NcYWNjb3VudHMucHkiIGluIGJvb2ttYXJrX3ZhY2FuY2llcwogIDMwLiAgICAgICAgIHZhY2FuY3kgPSBnZXRfb2JqZWN0X29yXzQwNChWYWNhbmN5Lm9iamVjdHMuYWxsKCksIHBrPXJlcXVlc3QuZGF0YS5pZCkKCkV4Y2VwdGlvbiBUeXBlOiBBdHRyaWJ1dGVFcnJvciBhdCAvYXBpL3N0dWRlbnRzLzQvYm9va21hcmtlZC12YWNhbmNpZXMvCkV4Y2VwdGlvbiBWYWx1ZTogJ2RpY3QnIG9iamVjdCBoYXMgbm8gYXR0cmlidXRlICdpZCcKUmVxdWVzdCBpbmZvcm1hdGlvbjoKVVNFUjoga2FwZQoKR0VUOiBObyBHRVQgZGF0YQoKUE9TVDogTm8gUE9TVCBkYXRhCgpGSUxFUzogTm8gRklMRVMgZGF0YQoKQ09PS0lFUzoKc2Vzc2lvbmlkID0gJ2JsdDg3N2c1ZmptdWN4eTNkZDV1eGNpemF2YjlvcG92Jwpjc3JmdG9rZW4gPSAnMUVFUDJTd0t0MUs5UWJXbkZQU3lXUElpYnRPN01BYVZxS0xFZW9vRmdZVnlkallQb2duME93cDI5b1VXNkE2SycKCk1FVEE6CkFMTFVTRVJTUFJPRklMRSA9ICdDOlxcUHJvZ3JhbURhdGEnCkFQUERBVEEgPSAnQzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmcnCkNPTU1PTlBST0dSQU1GSUxFUyA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcQ29tbW9uIEZpbGVzJwpDT01NT05QUk9HUkFNRklMRVMoWDg2KSA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcQ29tbW9uIEZpbGVzJwpDT01NT05QUk9HUkFNVzY0MzIgPSAnQzpcXFByb2dyYW0gRmlsZXNcXENvbW1vbiBGaWxlcycKQ09NUFVURVJOQU1FID0gJ0ZBUkhBTicKQ09NU1BFQyA9ICdDOlxcV0lORE9XU1xcc3lzdGVtMzJcXGNtZC5leGUnCkNPTlRFTlRfTEVOR1RIID0gJzEyOCcKQ09OVEVOVF9UWVBFID0gJ2FwcGxpY2F0aW9uL2pzb24nCkNTUkZfQ09PS0lFID0gJzFFRVAyU3dLdDFLOVFiV25GUFN5V1BJaWJ0TzdNQWFWcUtMRWVvb0ZnWVZ5ZGpZUG9nbjBPd3AyOW9VVzZBNksnCkRKQU5HT19TRVRUSU5HU19NT0RVTEUgPSAna2FwZS5zZXR0aW5ncycKRlBTX0JST1dTRVJfQVBQX1BST0ZJTEVfU1RSSU5HID0gJ0ludGVybmV0IEV4cGxvcmVyJwpGUFNfQlJPV1NFUl9VU0VSX1BST0ZJTEVfU1RSSU5HID0gJ0RlZmF1bHQnCkZQX05PX0hPU1RfQ0hFQ0sgPSAnTk8nCkdBVEVXQVlfSU5URVJGQUNFID0gJ0NHSS8xLjEnCkhPTUVEUklWRSA9ICdDOicKSE9NRVBBVEggPSAnXFxVc2Vyc1xcZmFyaGFfMDAwJwpIVFRQX0FDQ0VQVCA9ICdhcHBsaWNhdGlvbi9qc29uJwpIVFRQX0FDQ0VQVF9FTkNPRElORyA9ICdnemlwLCBkZWZsYXRlLCBicicKSFRUUF9BQ0NFUFRfTEFOR1VBR0UgPSAnaWQtSUQsaWQ7cT0wLjgsZW4tVVM7cT0wLjYsZW47cT0wLjQnCkhUVFBfQ09OTkVDVElPTiA9ICdrZWVwLWFsaXZlJwpIVFRQX0NPT0tJRSA9ICdzZXNzaW9uaWQ9Ymx0ODc3ZzVmam11Y3h5M2RkNXV4Y2l6YXZiOW9wb3Y7IGNzcmZ0b2tlbj0xRUVQMlN3S3QxSzlRYlduRlBTeVdQSWlidE83TUFhVnFLTEVlb29GZ1lWeWRqWVBvZ24wT3dwMjlvVVc2QTZLJwpIVFRQX0hPU1QgPSAnMTI3LjAuMC4xOjgwMDAnCkhUVFBfT1JJR0lOID0gJ2h0dHA6Ly8xMjcuMC4wLjE6ODAwMCcKSFRUUF9SRUZFUkVSID0gJ2h0dHA6Ly8xMjcuMC4wLjE6ODAwMC9hcGknCkhUVFBfVVNFUl9BR0VOVCA9ICdNb3ppbGxhLzUuMCAoV2luZG93cyBOVCAxMC4wOyBXT1c2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzU2LjAuMjkyNC44NyBTYWZhcmkvNTM3LjM2JwpIVFRQX1hfQ1NSRlRPS0VOID0gJ2pxOTFCdUY1ZTVSN1NqTUZSYzJUTmZ2V1U4bERPNnd5SXdnUU4weDAxMjJ3ZnJPN0FEeGxGV2NHUzNyczg2c24nCkxPQ0FMQVBQREFUQSA9ICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWwnCkxPR09OU0VSVkVSID0gJ1xcXFxGQVJIQU4nCk5VTUJFUl9PRl9QUk9DRVNTT1JTID0gJzInCk9ORURSSVZFID0gJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxPbmVEcml2ZScKT1MgPSAnV2luZG93c19OVCcKUEFUSCA9ICdDOlxcUHJvZ3JhbURhdGFcXE9yYWNsZVxcSmF2YVxcamF2YXBhdGg7QzpcXFByb2dyYW0gRmlsZXNcXEhhc2tlbGxcXGJpbjtDOlxcUHJvZ3JhbSBGaWxlc1xcSGFza2VsbCBQbGF0Zm9ybVxcNy4xMC4zXFxsaWJcXGV4dHJhbGlic1xcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxIYXNrZWxsIFBsYXRmb3JtXFw3LjEwLjNcXGJpbjtDOlxcV0lORE9XU1xcc3lzdGVtMzI7QzpcXFdJTkRPV1M7QzpcXFdJTkRPV1NcXFN5c3RlbTMyXFxXYmVtO0M6XFxXSU5ET1dTXFxTeXN0ZW0zMlxcV2luZG93c1Bvd2VyU2hlbGxcXHYxLjBcXDtDOlxcUHJvZ3JhbSBGaWxlc1xcSGFza2VsbCBQbGF0Zm9ybVxcNy4xMC4zXFxtaW5nd1xcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxKYXZhXFxqZGsxLjguMF83N1xcYmluO0M6XFxjeWd3aW42NFxcYmluOyVsb2NhbGFwcGRhdGElXFxNaWNyb3NvZnRcXFdpbmRvd3NBcHBzO0Q6XFxYQU1QUFxccGhwO0M6XFxQcm9ncmFtIEZpbGVzXFxHaXRcXGNtZDtDOlxceGFtcHBcXHBocDtDOlxcUHJvZ3JhbURhdGFcXENvbXBvc2VyU2V0dXBcXGJpbjtDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcbm9kZWpzXFw7QzpcXFByb2dyYW0gRmlsZXNcXFBvc3RncmVTUUxcXDkuNlxcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxNQVRMQUJcXFIyMDE3YVxcYmluO0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXFNjcmlwdHNcXDtDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyXFw7QzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmdcXGNhYmFsXFxiaW47RDpcXFhBTVBQXFxwaHA7QzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmdcXENvbXBvc2VyXFx2ZW5kb3JcXGJpbjtDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXE1pY3Jvc29mdFxcV2luZG93c0FwcHM7QzpcXHB5dGhvbi0zLjYuMCcKUEFUSEVYVCA9ICcuQ09NOy5FWEU7LkJBVDsuQ01EOy5WQlM7LlZCRTsuSlM7LkpTRTsuV1NGOy5XU0g7Lk1TQycKUEFUSF9JTkZPID0gJy9hcGkvc3R1ZGVudHMvNC9ib29rbWFya2VkLXZhY2FuY2llcy8nClBST0NFU1NPUl9BUkNISVRFQ1RVUkUgPSAneDg2JwpQUk9DRVNTT1JfQVJDSElURVc2NDMyID0gJ0FNRDY0JwpQUk9DRVNTT1JfSURFTlRJRklFUiA9ICdJbnRlbDY0IEZhbWlseSA2IE1vZGVsIDU4IFN0ZXBwaW5nIDksIEdlbnVpbmVJbnRlbCcKUFJPQ0VTU09SX0xFVkVMID0gJzYnClBST0NFU1NPUl9SRVZJU0lPTiA9ICczYTA5JwpQUk9HUkFNREFUQSA9ICdDOlxcUHJvZ3JhbURhdGEnClBST0dSQU1GSUxFUyA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KScKUFJPR1JBTUZJTEVTKFg4NikgPSAnQzpcXFByb2dyYW0gRmlsZXMgKHg4NiknClBST0dSQU1XNjQzMiA9ICdDOlxcUHJvZ3JhbSBGaWxlcycKUFJPTVBUID0gJyRQJEcnClBTTU9EVUxFUEFUSCA9ICdDOlxcV0lORE9XU1xcc3lzdGVtMzJcXFdpbmRvd3NQb3dlclNoZWxsXFx2MS4wXFxNb2R1bGVzXFwnClBVQkxJQyA9ICdDOlxcVXNlcnNcXFB1YmxpYycKUVVFUllfU1RSSU5HID0gJycKUkVNT1RFX0FERFIgPSAnMTI3LjAuMC4xJwpSRU1PVEVfSE9TVCA9ICcnClJFUVVFU1RfTUVUSE9EID0gJ1BPU1QnClJVTl9NQUlOID0gJ3RydWUnClNDUklQVF9OQU1FID0gJycKU0VSVkVSX05BTUUgPSAnRmFyaGFuJwpTRVJWRVJfUE9SVCA9ICc4MDAwJwpTRVJWRVJfUFJPVE9DT0wgPSAnSFRUUC8xLjEnClNFUlZFUl9TT0ZUV0FSRSA9ICdXU0dJU2VydmVyLzAuMicKU0VTU0lPTk5BTUUgPSAnQ29uc29sZScKU1lTVEVNRFJJVkUgPSAnQzonClNZU1RFTVJPT1QgPSAnQzpcXFdJTkRPV1MnClRFTVAgPSAnQzpcXFVzZXJzXFxGQVJIQV9+MVxcQXBwRGF0YVxcTG9jYWxcXFRlbXAnClRNUCA9ICdDOlxcVXNlcnNcXEZBUkhBX34xXFxBcHBEYXRhXFxMb2NhbFxcVGVtcCcKVVNFUkRPTUFJTiA9ICdGYXJoYW4nClVTRVJET01BSU5fUk9BTUlOR1BST0ZJTEUgPSAnRmFyaGFuJwpVU0VSTkFNRSA9ICdGYXJoYW4gRmFyYXNkYWsnClVTRVJQUk9GSUxFID0gJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwJwpWQk9YX01TSV9JTlNUQUxMX1BBVEggPSAnQzpcXFByb2dyYW0gRmlsZXNcXE9yYWNsZVxcVmlydHVhbEJveFxcJwpXSU5ESVIgPSAnQzpcXFdJTkRPV1MnCndzZ2kuZXJyb3JzID0gPF9pby5UZXh0SU9XcmFwcGVyIG5hbWU9JzxzdGRlcnI+JyBtb2RlPSd3JyBlbmNvZGluZz0ndXRmLTgnPgp3c2dpLmZpbGVfd3JhcHBlciA9ICcnCndzZ2kuaW5wdXQgPSA8X2lvLkJ1ZmZlcmVkUmVhZGVyIG5hbWU9MTA3Mj4Kd3NnaS5tdWx0aXByb2Nlc3MgPSBGYWxzZQp3c2dpLm11bHRpdGhyZWFkID0gVHJ1ZQp3c2dpLnJ1bl9vbmNlID0gRmFsc2UKd3NnaS51cmxfc2NoZW1lID0gJ2h0dHAnCndzZ2kudmVyc2lvbiA9IAoKU2V0dGluZ3M6ClVzaW5nIHNldHRpbmdzIG1vZHVsZSBrYXBlLnNldHRpbmdzCkFCU09MVVRFX1VSTF9PVkVSUklERVMgPSB7fQpBRE1JTlMgPSBbXQpBTExPV0VEX0hPU1RTID0gWydib3QucmVjcnVpdC5pZCcsICcxMDQuMjM2Ljc2LjE2MScsICdsb2NhbGhvc3QnLCAnMTI3LjAuMC4xJ10KQVBQRU5EX1NMQVNIID0gVHJ1ZQpBVVRIRU5USUNBVElPTl9CQUNLRU5EUyA9IFsnZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQnXQpBVVRIX1BBU1NXT1JEX1ZBTElEQVRPUlMgPSAnKioqKioqKioqKioqKioqKioqKionCkFVVEhfVVNFUl9NT0RFTCA9ICdhdXRoLlVzZXInCkJBU0VfRElSID0gJ0Q6XFxQUExBJwpDQUNIRVMgPSB7J2RlZmF1bHQnOiB7J0JBQ0tFTkQnOiAnZGphbmdvLmNvcmUuY2FjaGUuYmFja2VuZHMubG9jbWVtLkxvY01lbUNhY2hlJ319CkNBQ0hFX01JRERMRVdBUkVfQUxJQVMgPSAnZGVmYXVsdCcKQ0FDSEVfTUlERExFV0FSRV9LRVlfUFJFRklYID0gJyoqKioqKioqKioqKioqKioqKioqJwpDQUNIRV9NSURETEVXQVJFX1NFQ09ORFMgPSA2MDAKQ1NSRl9DT09LSUVfQUdFID0gMzE0NDk2MDAKQ1NSRl9DT09LSUVfRE9NQUlOID0gTm9uZQpDU1JGX0NPT0tJRV9IVFRQT05MWSA9IEZhbHNlCkNTUkZfQ09PS0lFX05BTUUgPSAnY3NyZnRva2VuJwpDU1JGX0NPT0tJRV9QQVRIID0gJy8nCkNTUkZfQ09PS0lFX1NFQ1VSRSA9IEZhbHNlCkNTUkZfRkFJTFVSRV9WSUVXID0gJ2RqYW5nby52aWV3cy5jc3JmLmNzcmZfZmFpbHVyZScKQ1NSRl9IRUFERVJfTkFNRSA9ICdIVFRQX1hfQ1NSRlRPS0VOJwpDU1JGX1RSVVNURURfT1JJR0lOUyA9IFtdCkRBVEFCQVNFUyA9IHsnZGVmYXVsdCc6IHsnRU5HSU5FJzogJ2RqYW5nby5kYi5iYWNrZW5kcy5wb3N0Z3Jlc3FsX3BzeWNvcGcyJywgJ05BTUUnOiAna2FwZScsICdVU0VSJzogJ2thcGUnLCAnUEFTU1dPUkQnOiAnKioqKioqKioqKioqKioqKioqKionLCAnSE9TVCc6ICdsb2NhbGhvc3QnLCAnUE9SVCc6ICcnLCAnQVRPTUlDX1JFUVVFU1RTJzogRmFsc2UsICdBVVRPQ09NTUlUJzogVHJ1ZSwgJ0NPTk5fTUFYX0FHRSc6IDAsICdPUFRJT05TJzoge30sICdUSU1FX1pPTkUnOiBOb25lLCAnVEVTVCc6IHsnQ0hBUlNFVCc6IE5vbmUsICdDT0xMQVRJT04nOiBOb25lLCAnTkFNRSc6IE5vbmUsICdNSVJST1InOiBOb25lfX19CkRBVEFCQVNFX1JPVVRFUlMgPSBbXQpEQVRBX1VQTE9BRF9NQVhfTUVNT1JZX1NJWkUgPSAyNjIxNDQwCkRBVEFfVVBMT0FEX01BWF9OVU1CRVJfRklFTERTID0gMTAwMApEQVRFVElNRV9GT1JNQVQgPSAnTiBqLCBZLCBQJwpEQVRFVElNRV9JTlBVVF9GT1JNQVRTID0gWyclWS0lbS0lZCAlSDolTTolUycsICclWS0lbS0lZCAlSDolTTolUy4lZicsICclWS0lbS0lZCAlSDolTScsICclWS0lbS0lZCcsICclbS8lZC8lWSAlSDolTTolUycsICclbS8lZC8lWSAlSDolTTolUy4lZicsICclbS8lZC8lWSAlSDolTScsICclbS8lZC8lWScsICclbS8lZC8leSAlSDolTTolUycsICclbS8lZC8leSAlSDolTTolUy4lZicsICclbS8lZC8leSAlSDolTScsICclbS8lZC8leSddCkRBVEVfRk9STUFUID0gJ04gaiwgWScKREFURV9JTlBVVF9GT1JNQVRTID0gWyclWS0lbS0lZCcsICclbS8lZC8lWScsICclbS8lZC8leScsICclYiAlZCAlWScsICclYiAlZCwgJVknLCAnJWQgJWIgJVknLCAnJWQgJWIsICVZJywgJyVCICVkICVZJywgJyVCICVkLCAlWScsICclZCAlQiAlWScsICclZCAlQiwgJVknXQpERUJVRyA9IFRydWUKREVCVUdfUFJPUEFHQVRFX0VYQ0VQVElPTlMgPSBGYWxzZQpERUNJTUFMX1NFUEFSQVRPUiA9ICcuJwpERUZBVUxUX0NIQVJTRVQgPSAndXRmLTgnCkRFRkFVTFRfQ09OVEVOVF9UWVBFID0gJ3RleHQvaHRtbCcKREVGQVVMVF9FWENFUFRJT05fUkVQT1JURVJfRklMVEVSID0gJ2RqYW5nby52aWV3cy5kZWJ1Zy5TYWZlRXhjZXB0aW9uUmVwb3J0ZXJGaWx0ZXInCkRFRkFVTFRfRklMRV9TVE9SQUdFID0gJ2RqYW5nby5jb3JlLmZpbGVzLnN0b3JhZ2UuRmlsZVN5c3RlbVN0b3JhZ2UnCkRFRkFVTFRfRlJPTV9FTUFJTCA9ICd3ZWJtYXN0ZXJAbG9jYWxob3N0JwpERUZBVUxUX0lOREVYX1RBQkxFU1BBQ0UgPSAnJwpERUZBVUxUX1RBQkxFU1BBQ0UgPSAnJwpESVNBTExPV0VEX1VTRVJfQUdFTlRTID0gW10KRU1BSUxfQkFDS0VORCA9ICdkamFuZ28uY29yZS5tYWlsLmJhY2tlbmRzLnNtdHAuRW1haWxCYWNrZW5kJwpFTUFJTF9IT1NUID0gJ2xvY2FsaG9zdCcKRU1BSUxfSE9TVF9QQVNTV09SRCA9ICcqKioqKioqKioqKioqKioqKioqKicKRU1BSUxfSE9TVF9VU0VSID0gJycKRU1BSUxfUE9SVCA9IDI1CkVNQUlMX1NTTF9DRVJURklMRSA9IE5vbmUKRU1BSUxfU1NMX0tFWUZJTEUgPSAnKioqKioqKioqKioqKioqKioqKionCkVNQUlMX1NVQkpFQ1RfUFJFRklYID0gJ1tEamFuZ29dICcKRU1BSUxfVElNRU9VVCA9IE5vbmUKRU1BSUxfVVNFX1NTTCA9IEZhbHNlCkVNQUlMX1VTRV9UTFMgPSBGYWxzZQpGSUxFX0NIQVJTRVQgPSAndXRmLTgnCkZJTEVfVVBMT0FEX0RJUkVDVE9SWV9QRVJNSVNTSU9OUyA9IE5vbmUKRklMRV9VUExPQURfSEFORExFUlMgPSBbJ2RqYW5nby5jb3JlLmZpbGVzLnVwbG9hZGhhbmRsZXIuTWVtb3J5RmlsZVVwbG9hZEhhbmRsZXInLCAnZGphbmdvLmNvcmUuZmlsZXMudXBsb2FkaGFuZGxlci5UZW1wb3JhcnlGaWxlVXBsb2FkSGFuZGxlciddCkZJTEVfVVBMT0FEX01BWF9NRU1PUllfU0laRSA9IDI2MjE0NDAKRklMRV9VUExPQURfUEVSTUlTU0lPTlMgPSBOb25lCkZJTEVfVVBMT0FEX1RFTVBfRElSID0gTm9uZQpGSVJTVF9EQVlfT0ZfV0VFSyA9IDAKRklYVFVSRV9ESVJTID0gW10KRk9SQ0VfU0NSSVBUX05BTUUgPSBOb25lCkZPUk1BVF9NT0RVTEVfUEFUSCA9IE5vbmUKR1pJUF9DT05URU5UX1RZUEVTID0gCklHTk9SQUJMRV80MDRfVVJMUyA9IFtdCklOU1RBTExFRF9BUFBTID0gWydkamFuZ28uY29udHJpYi5hZG1pbicsICdkamFuZ28uY29udHJpYi5hdXRoJywgJ2RqYW5nby5jb250cmliLmNvbnRlbnR0eXBlcycsICdkamFuZ28uY29udHJpYi5zZXNzaW9ucycsICdkamFuZ28uY29udHJpYi5tZXNzYWdlcycsICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcycsICd3ZWJwYWNrX2xvYWRlcicsICdjb3JlJywgJ3Jlc3RfZnJhbWV3b3JrJywgJ2RqYW5nb19ub3NlJywgJ3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXInLCAnc2lsayddCklOVEVSTkFMX0lQUyA9IFtdCkxBTkdVQUdFUyA9IFsoJ2FmJywgJ0FmcmlrYWFucycpLCAoJ2FyJywgJ0FyYWJpYycpLCAoJ2FzdCcsICdBc3R1cmlhbicpLCAoJ2F6JywgJ0F6ZXJiYWlqYW5pJyksICgnYmcnLCAnQnVsZ2FyaWFuJyksICgnYmUnLCAnQmVsYXJ1c2lhbicpLCAoJ2JuJywgJ0JlbmdhbGknKSwgKCdicicsICdCcmV0b24nKSwgKCdicycsICdCb3NuaWFuJyksICgnY2EnLCAnQ2F0YWxhbicpLCAoJ2NzJywgJ0N6ZWNoJyksICgnY3knLCAnV2Vsc2gnKSwgKCdkYScsICdEYW5pc2gnKSwgKCdkZScsICdHZXJtYW4nKSwgKCdkc2InLCAnTG93ZXIgU29yYmlhbicpLCAoJ2VsJywgJ0dyZWVrJyksICgnZW4nLCAnRW5nbGlzaCcpLCAoJ2VuLWF1JywgJ0F1c3RyYWxpYW4gRW5nbGlzaCcpLCAoJ2VuLWdiJywgJ0JyaXRpc2ggRW5nbGlzaCcpLCAoJ2VvJywgJ0VzcGVyYW50bycpLCAoJ2VzJywgJ1NwYW5pc2gnKSwgKCdlcy1hcicsICdBcmdlbnRpbmlhbiBTcGFuaXNoJyksICgnZXMtY28nLCAnQ29sb21iaWFuIFNwYW5pc2gnKSwgKCdlcy1teCcsICdNZXhpY2FuIFNwYW5pc2gnKSwgKCdlcy1uaScsICdOaWNhcmFndWFuIFNwYW5pc2gnKSwgKCdlcy12ZScsICdWZW5lenVlbGFuIFNwYW5pc2gnKSwgKCdldCcsICdFc3RvbmlhbicpLCAoJ2V1JywgJ0Jhc3F1ZScpLCAoJ2ZhJywgJ1BlcnNpYW4nKSwgKCdmaScsICdGaW5uaXNoJyksICgnZnInLCAnRnJlbmNoJyksICgnZnknLCAnRnJpc2lhbicpLCAoJ2dhJywgJ0lyaXNoJyksICgnZ2QnLCAnU2NvdHRpc2ggR2FlbGljJyksICgnZ2wnLCAnR2FsaWNpYW4nKSwgKCdoZScsICdIZWJyZXcnKSwgKCdoaScsICdIaW5kaScpLCAoJ2hyJywgJ0Nyb2F0aWFuJyksICgnaHNiJywgJ1VwcGVyIFNvcmJpYW4nKSwgKCdodScsICdIdW5nYXJpYW4nKSwgKCdpYScsICdJbnRlcmxpbmd1YScpLCAoJ2lkJywgJ0luZG9uZXNpYW4nKSwgKCdpbycsICdJZG8nKSwgKCdpcycsICdJY2VsYW5kaWMnKSwgKCdpdCcsICdJdGFsaWFuJyksICgnamEnLCAnSmFwYW5lc2UnKSwgKCdrYScsICdHZW9yZ2lhbicpLCAoJ2trJywgJ0themFraCcpLCAoJ2ttJywgJ0tobWVyJyksICgna24nLCAnS2FubmFkYScpLCAoJ2tvJywgJ0tvcmVhbicpLCAoJ2xiJywgJ0x1eGVtYm91cmdpc2gnKSwgKCdsdCcsICdMaXRodWFuaWFuJyksICgnbHYnLCAnTGF0dmlhbicpLCAoJ21rJywgJ01hY2Vkb25pYW4nKSwgKCdtbCcsICdNYWxheWFsYW0nKSwgKCdtbicsICdNb25nb2xpYW4nKSwgKCdtcicsICdNYXJhdGhpJyksICgnbXknLCAnQnVybWVzZScpLCAoJ25iJywgJ05vcndlZ2lhbiBCb2ttw6VsJyksICgnbmUnLCAnTmVwYWxpJyksICgnbmwnLCAnRHV0Y2gnKSwgKCdubicsICdOb3J3ZWdpYW4gTnlub3JzaycpLCAoJ29zJywgJ09zc2V0aWMnKSwgKCdwYScsICdQdW5qYWJpJyksICgncGwnLCAnUG9saXNoJyksICgncHQnLCAnUG9ydHVndWVzZScpLCAoJ3B0LWJyJywgJ0JyYXppbGlhbiBQb3J0dWd1ZXNlJyksICgncm8nLCAnUm9tYW5pYW4nKSwgKCdydScsICdSdXNzaWFuJyksICgnc2snLCAnU2xvdmFrJyksICgnc2wnLCAnU2xvdmVuaWFuJyksICgnc3EnLCAnQWxiYW5pYW4nKSwgKCdzcicsICdTZXJiaWFuJyksICgnc3ItbGF0bicsICdTZXJiaWFuIExhdGluJyksICgnc3YnLCAnU3dlZGlzaCcpLCAoJ3N3JywgJ1N3YWhpbGknKSwgKCd0YScsICdUYW1pbCcpLCAoJ3RlJywgJ1RlbHVndScpLCAoJ3RoJywgJ1RoYWknKSwgKCd0cicsICdUdXJraXNoJyksICgndHQnLCAnVGF0YXInKSwgKCd1ZG0nLCAnVWRtdXJ0JyksICgndWsnLCAnVWtyYWluaWFuJyksICgndXInLCAnVXJkdScpLCAoJ3ZpJywgJ1ZpZXRuYW1lc2UnKSwgKCd6aC1oYW5zJywgJ1NpbXBsaWZpZWQgQ2hpbmVzZScpLCAoJ3poLWhhbnQnLCAnVHJhZGl0aW9uYWwgQ2hpbmVzZScpXQpMQU5HVUFHRVNfQklESSA9IFsnaGUnLCAnYXInLCAnZmEnLCAndXInXQpMQU5HVUFHRV9DT0RFID0gJ2VuLXVzJwpMQU5HVUFHRV9DT09LSUVfQUdFID0gTm9uZQpMQU5HVUFHRV9DT09LSUVfRE9NQUlOID0gTm9uZQpMQU5HVUFHRV9DT09LSUVfTkFNRSA9ICdkamFuZ29fbGFuZ3VhZ2UnCkxBTkdVQUdFX0NPT0tJRV9QQVRIID0gJy8nCkxPQ0FMRV9QQVRIUyA9IFtdCkxPR0dJTkcgPSB7fQpMT0dHSU5HX0NPTkZJRyA9ICdsb2dnaW5nLmNvbmZpZy5kaWN0Q29uZmlnJwpMT0dJTl9SRURJUkVDVF9VUkwgPSAnL2FjY291bnRzL3Byb2ZpbGUvJwpMT0dJTl9VUkwgPSAnL2FjY291bnRzL2xvZ2luLycKTE9HT1VUX1JFRElSRUNUX1VSTCA9IE5vbmUKTUFOQUdFUlMgPSBbXQpNRURJQV9ST09UID0gJy9ob21lL2ZpbGVzJwpNRURJQV9VUkwgPSAnL2ZpbGVzLycKTUVTU0FHRV9TVE9SQUdFID0gJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzLnN0b3JhZ2UuZmFsbGJhY2suRmFsbGJhY2tTdG9yYWdlJwpNSURETEVXQVJFID0gWydkamFuZ28ubWlkZGxld2FyZS5zZWN1cml0eS5TZWN1cml0eU1pZGRsZXdhcmUnLCAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMubWlkZGxld2FyZS5TZXNzaW9uTWlkZGxld2FyZScsICdkamFuZ28ubWlkZGxld2FyZS5jb21tb24uQ29tbW9uTWlkZGxld2FyZScsICdkamFuZ28ubWlkZGxld2FyZS5jc3JmLkNzcmZWaWV3TWlkZGxld2FyZScsICdkamFuZ28uY29udHJpYi5hdXRoLm1pZGRsZXdhcmUuQXV0aGVudGljYXRpb25NaWRkbGV3YXJlJywgJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzLm1pZGRsZXdhcmUuTWVzc2FnZU1pZGRsZXdhcmUnLCAnZGphbmdvLm1pZGRsZXdhcmUuY2xpY2tqYWNraW5nLlhGcmFtZU9wdGlvbnNNaWRkbGV3YXJlJywgJ3NpbGsubWlkZGxld2FyZS5TaWxreU1pZGRsZXdhcmUnXQpNSURETEVXQVJFX0NMQVNTRVMgPSBbJ2RqYW5nby5taWRkbGV3YXJlLmNvbW1vbi5Db21tb25NaWRkbGV3YXJlJywgJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJ10KTUlHUkFUSU9OX01PRFVMRVMgPSB7fQpNT05USF9EQVlfRk9STUFUID0gJ0YgaicKTk9TRV9BUkdTID0gWyctLXdpdGgtY292ZXJhZ2UnLCAnLS1jb3Zlci1wYWNrYWdlPWNvcmUudmlld3MnLCAnLS1jb3Zlci1odG1sLWRpcj10ZXN0L2JhY2tlbmQnLCAnLS1jb3Zlci1odG1sJ10KTlVNQkVSX0dST1VQSU5HID0gMApQQVNTV09SRF9IQVNIRVJTID0gJyoqKioqKioqKioqKioqKioqKioqJwpQQVNTV09SRF9SRVNFVF9USU1FT1VUX0RBWVMgPSAnKioqKioqKioqKioqKioqKioqKionClBSRVBFTkRfV1dXID0gRmFsc2UKUkVTVF9GUkFNRVdPUksgPSB7J0RFRkFVTFRfUEVSTUlTU0lPTl9DTEFTU0VTJzogWydyZXN0X2ZyYW1ld29yay5wZXJtaXNzaW9ucy5EamFuZ29Nb2RlbFBlcm1pc3Npb25zT3JBbm9uUmVhZE9ubHknXX0KUk9PVF9VUkxDT05GID0gJ2thcGUudXJscycKUlVOTklOR19ERVZTRVJWRVIgPSBUcnVlClNFQ1JFVF9LRVkgPSAnKioqKioqKioqKioqKioqKioqKionClNFQ1VSRV9CUk9XU0VSX1hTU19GSUxURVIgPSBGYWxzZQpTRUNVUkVfQ09OVEVOVF9UWVBFX05PU05JRkYgPSBGYWxzZQpTRUNVUkVfSFNUU19JTkNMVURFX1NVQkRPTUFJTlMgPSBGYWxzZQpTRUNVUkVfSFNUU19TRUNPTkRTID0gMApTRUNVUkVfUFJPWFlfU1NMX0hFQURFUiA9IE5vbmUKU0VDVVJFX1JFRElSRUNUX0VYRU1QVCA9IFtdClNFQ1VSRV9TU0xfSE9TVCA9IE5vbmUKU0VDVVJFX1NTTF9SRURJUkVDVCA9IEZhbHNlClNFUlZFUl9FTUFJTCA9ICdyb290QGxvY2FsaG9zdCcKU0VTU0lPTl9DQUNIRV9BTElBUyA9ICdkZWZhdWx0JwpTRVNTSU9OX0NPT0tJRV9BR0UgPSAxMjA5NjAwClNFU1NJT05fQ09PS0lFX0RPTUFJTiA9IE5vbmUKU0VTU0lPTl9DT09LSUVfSFRUUE9OTFkgPSBGYWxzZQpTRVNTSU9OX0NPT0tJRV9OQU1FID0gJ3Nlc3Npb25pZCcKU0VTU0lPTl9DT09LSUVfUEFUSCA9ICcvJwpTRVNTSU9OX0NPT0tJRV9TRUNVUkUgPSBGYWxzZQpTRVNTSU9OX0VOR0lORSA9ICdkamFuZ28uY29udHJpYi5zZXNzaW9ucy5iYWNrZW5kcy5kYicKU0VTU0lPTl9FWFBJUkVfQVRfQlJPV1NFUl9DTE9TRSA9IEZhbHNlClNFU1NJT05fRklMRV9QQVRIID0gTm9uZQpTRVNTSU9OX1NBVkVfRVZFUllfUkVRVUVTVCA9IEZhbHNlClNFU1NJT05fU0VSSUFMSVpFUiA9ICdkamFuZ28uY29udHJpYi5zZXNzaW9ucy5zZXJpYWxpemVycy5KU09OU2VyaWFsaXplcicKU0VUVElOR1NfTU9EVUxFID0gJ2thcGUuc2V0dGluZ3MnClNIT1JUX0RBVEVUSU1FX0ZPUk1BVCA9ICdtL2QvWSBQJwpTSE9SVF9EQVRFX0ZPUk1BVCA9ICdtL2QvWScKU0lHTklOR19CQUNLRU5EID0gJ2RqYW5nby5jb3JlLnNpZ25pbmcuVGltZXN0YW1wU2lnbmVyJwpTSUxFTkNFRF9TWVNURU1fQ0hFQ0tTID0gW10KU1RBVElDRklMRVNfRElSUyA9ICdEOlxcUFBMQVxcYXNzZXRzJwpTVEFUSUNGSUxFU19GSU5ERVJTID0gWydkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcy5maW5kZXJzLkZpbGVTeXN0ZW1GaW5kZXInLCAnZGphbmdvLmNvbnRyaWIuc3RhdGljZmlsZXMuZmluZGVycy5BcHBEaXJlY3Rvcmllc0ZpbmRlciddClNUQVRJQ0ZJTEVTX1NUT1JBR0UgPSAnZGphbmdvLmNvbnRyaWIuc3RhdGljZmlsZXMuc3RvcmFnZS5TdGF0aWNGaWxlc1N0b3JhZ2UnClNUQVRJQ19ST09UID0gJy9ob21lL2Fzc2V0cycKU1RBVElDX1VSTCA9ICcvYXNzZXRzLycKVEVNUExBVEVTID0gW3snQkFDS0VORCc6ICdkamFuZ28udGVtcGxhdGUuYmFja2VuZHMuZGphbmdvLkRqYW5nb1RlbXBsYXRlcycsICdESVJTJzogW10sICdBUFBfRElSUyc6IFRydWUsICdPUFRJT05TJzogeydjb250ZXh0X3Byb2Nlc3NvcnMnOiBbJ2RqYW5nby50ZW1wbGF0ZS5jb250ZXh0X3Byb2Nlc3NvcnMuZGVidWcnLCAnZGphbmdvLnRlbXBsYXRlLmNvbnRleHRfcHJvY2Vzc29ycy5yZXF1ZXN0JywgJ2RqYW5nby5jb250cmliLmF1dGguY29udGV4dF9wcm9jZXNzb3JzLmF1dGgnLCAnZGphbmdvLmNvbnRyaWIubWVzc2FnZXMuY29udGV4dF9wcm9jZXNzb3JzLm1lc3NhZ2VzJ119fV0KVEVTVF9OT05fU0VSSUFMSVpFRF9BUFBTID0gW10KVEVTVF9SVU5ORVIgPSAnZGphbmdvX25vc2UuTm9zZVRlc3RTdWl0ZVJ1bm5lcicKVEhPVVNBTkRfU0VQQVJBVE9SID0gJywnClRJTUVfRk9STUFUID0gJ1AnClRJTUVfSU5QVVRfRk9STUFUUyA9IFsnJUg6JU06JVMnLCAnJUg6JU06JVMuJWYnLCAnJUg6JU0nXQpUSU1FX1pPTkUgPSAnVVRDJwpVU0VfRVRBR1MgPSBGYWxzZQpVU0VfSTE4TiA9IFRydWUKVVNFX0wxME4gPSBUcnVlClVTRV9USE9VU0FORF9TRVBBUkFUT1IgPSBGYWxzZQpVU0VfVFogPSBUcnVlClVTRV9YX0ZPUldBUkRFRF9IT1NUID0gRmFsc2UKVVNFX1hfRk9SV0FSREVEX1BPUlQgPSBGYWxzZQpXRUJQQUNLX0xPQURFUiA9IHsnREVGQVVMVCc6IHsnQlVORExFX0RJUl9OQU1FJzogJ2J1bmRsZXMvJywgJ1NUQVRTX0ZJTEUnOiAnRDpcXFBQTEFcXHdlYnBhY2stc3RhdHMuanNvbid9fQpXU0dJX0FQUExJQ0FUSU9OID0gJ2thcGUud3NnaS5hcHBsaWNhdGlvbicKWF9GUkFNRV9PUFRJT05TID0gJ1NBTUVPUklHSU4nCllFQVJfTU9OVEhfRk9STUFUID0gJ0YgWScKCgpZb3UncmUgc2VlaW5nIHRoaXMgZXJyb3IgYmVjYXVzZSB5b3UgaGF2ZSBERUJVRyA9IFRydWUgaW4geW91cgpEamFuZ28gc2V0dGluZ3MgZmlsZS4gQ2hhbmdlIHRoYXQgdG8gRmFsc2UsIGFuZCBEamFuZ28gd2lsbApkaXNwbGF5IGEgc3RhbmRhcmQgcGFnZSBnZW5lcmF0ZWQgYnkgdGhlIGhhbmRsZXIgZm9yIHRoaXMgc3RhdHVzIGNvZGUuCgo=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/plain\"}" - } -}, -{ - "model": "silk.response", - "pk": "d23411b5-0284-4838-8feb-9209141be7f2", - "fields": { - "request": "51cae9ae-4ec3-4855-a89d-f4c888f9df04", - "status_code": 500, - "raw_body": "QXR0cmlidXRlRXJyb3IgYXQgL2FwaS9zdHVkZW50cy80L2Jvb2ttYXJrZWQtdmFjYW5jaWVzLwonZGljdCcgb2JqZWN0IGhhcyBubyBhdHRyaWJ1dGUgJ2lkJwoKUmVxdWVzdCBNZXRob2Q6IFBPU1QKUmVxdWVzdCBVUkw6IGh0dHA6Ly8xMjcuMC4wLjE6ODAwMC9hcGkvc3R1ZGVudHMvNC9ib29rbWFya2VkLXZhY2FuY2llcy8KRGphbmdvIFZlcnNpb246IDEuMTAuNQpQeXRob24gRXhlY3V0YWJsZTogQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXHB5dGhvbi5leGUKUHl0aG9uIFZlcnNpb246IDMuNi4wClB5dGhvbiBQYXRoOiBbJ0Q6XFxQUExBJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXHB5dGhvbjM2LnppcCcsICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyXFxETExzJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXGxpYicsICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXGxpYlxcc2l0ZS1wYWNrYWdlcyddClNlcnZlciB0aW1lOiBNb24sIDI3IE1hciAyMDE3IDE1OjU3OjQ3ICswMDAwCkluc3RhbGxlZCBBcHBsaWNhdGlvbnM6ClsnZGphbmdvLmNvbnRyaWIuYWRtaW4nLAogJ2RqYW5nby5jb250cmliLmF1dGgnLAogJ2RqYW5nby5jb250cmliLmNvbnRlbnR0eXBlcycsCiAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMnLAogJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzJywKICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcycsCiAnd2VicGFja19sb2FkZXInLAogJ2NvcmUnLAogJ3Jlc3RfZnJhbWV3b3JrJywKICdkamFuZ29fbm9zZScsCiAncmVzdF9mcmFtZXdvcmtfc3dhZ2dlcicsCiAnc2lsayddCkluc3RhbGxlZCBNaWRkbGV3YXJlOgpbJ2RqYW5nby5taWRkbGV3YXJlLnNlY3VyaXR5LlNlY3VyaXR5TWlkZGxld2FyZScsCiAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMubWlkZGxld2FyZS5TZXNzaW9uTWlkZGxld2FyZScsCiAnZGphbmdvLm1pZGRsZXdhcmUuY29tbW9uLkNvbW1vbk1pZGRsZXdhcmUnLAogJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5hdXRoLm1pZGRsZXdhcmUuQXV0aGVudGljYXRpb25NaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5tZXNzYWdlcy5taWRkbGV3YXJlLk1lc3NhZ2VNaWRkbGV3YXJlJywKICdkamFuZ28ubWlkZGxld2FyZS5jbGlja2phY2tpbmcuWEZyYW1lT3B0aW9uc01pZGRsZXdhcmUnLAogJ3NpbGsubWlkZGxld2FyZS5TaWxreU1pZGRsZXdhcmUnXQoKClRyYWNlYmFjazogIAoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXGRqYW5nb1xjb3JlXGhhbmRsZXJzXGV4Y2VwdGlvbi5weSIgaW4gaW5uZXIKICAzOS4gICAgICAgICAgICAgcmVzcG9uc2UgPSBnZXRfcmVzcG9uc2UocmVxdWVzdCkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cY29yZVxoYW5kbGVyc1xiYXNlLnB5IiBpbiBfZ2V0X3Jlc3BvbnNlCiAgMTg3LiAgICAgICAgICAgICAgICAgcmVzcG9uc2UgPSBzZWxmLnByb2Nlc3NfZXhjZXB0aW9uX2J5X21pZGRsZXdhcmUoZSwgcmVxdWVzdCkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cY29yZVxoYW5kbGVyc1xiYXNlLnB5IiBpbiBfZ2V0X3Jlc3BvbnNlCiAgMTg1LiAgICAgICAgICAgICAgICAgcmVzcG9uc2UgPSB3cmFwcGVkX2NhbGxiYWNrKHJlcXVlc3QsICpjYWxsYmFja19hcmdzLCAqKmNhbGxiYWNrX2t3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cdmlld3NcZGVjb3JhdG9yc1xjc3JmLnB5IiBpbiB3cmFwcGVkX3ZpZXcKICA1OC4gICAgICAgICByZXR1cm4gdmlld19mdW5jKCphcmdzLCAqKmt3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3c2V0cy5weSIgaW4gdmlldwogIDgzLiAgICAgICAgICAgICByZXR1cm4gc2VsZi5kaXNwYXRjaChyZXF1ZXN0LCAqYXJncywgKiprd2FyZ3MpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNccmVzdF9mcmFtZXdvcmtcdmlld3MucHkiIGluIGRpc3BhdGNoCiAgNDgzLiAgICAgICAgICAgICByZXNwb25zZSA9IHNlbGYuaGFuZGxlX2V4Y2VwdGlvbihleGMpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNccmVzdF9mcmFtZXdvcmtcdmlld3MucHkiIGluIGhhbmRsZV9leGNlcHRpb24KICA0NDMuICAgICAgICAgICAgIHNlbGYucmFpc2VfdW5jYXVnaHRfZXhjZXB0aW9uKGV4YykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3cy5weSIgaW4gZGlzcGF0Y2gKICA0ODAuICAgICAgICAgICAgIHJlc3BvbnNlID0gaGFuZGxlcihyZXF1ZXN0LCAqYXJncywgKiprd2FyZ3MpCgpGaWxlICJEOlxQUExBXGNvcmVcdmlld3NcYWNjb3VudHMucHkiIGluIGJvb2ttYXJrX3ZhY2FuY2llcwogIDMwLiAgICAgICAgIHZhY2FuY3kgPSBnZXRfb2JqZWN0X29yXzQwNChWYWNhbmN5Lm9iamVjdHMuYWxsKCksIHBrPXJlcXVlc3QuZGF0YS5pZCkKCkV4Y2VwdGlvbiBUeXBlOiBBdHRyaWJ1dGVFcnJvciBhdCAvYXBpL3N0dWRlbnRzLzQvYm9va21hcmtlZC12YWNhbmNpZXMvCkV4Y2VwdGlvbiBWYWx1ZTogJ2RpY3QnIG9iamVjdCBoYXMgbm8gYXR0cmlidXRlICdpZCcKUmVxdWVzdCBpbmZvcm1hdGlvbjoKVVNFUjoga2FwZQoKR0VUOiBObyBHRVQgZGF0YQoKUE9TVDogTm8gUE9TVCBkYXRhCgpGSUxFUzogTm8gRklMRVMgZGF0YQoKQ09PS0lFUzoKc2Vzc2lvbmlkID0gJ2JsdDg3N2c1ZmptdWN4eTNkZDV1eGNpemF2YjlvcG92Jwpjc3JmdG9rZW4gPSAnMUVFUDJTd0t0MUs5UWJXbkZQU3lXUElpYnRPN01BYVZxS0xFZW9vRmdZVnlkallQb2duME93cDI5b1VXNkE2SycKCk1FVEE6CkFMTFVTRVJTUFJPRklMRSA9ICdDOlxcUHJvZ3JhbURhdGEnCkFQUERBVEEgPSAnQzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmcnCkNPTU1PTlBST0dSQU1GSUxFUyA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcQ29tbW9uIEZpbGVzJwpDT01NT05QUk9HUkFNRklMRVMoWDg2KSA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcQ29tbW9uIEZpbGVzJwpDT01NT05QUk9HUkFNVzY0MzIgPSAnQzpcXFByb2dyYW0gRmlsZXNcXENvbW1vbiBGaWxlcycKQ09NUFVURVJOQU1FID0gJ0ZBUkhBTicKQ09NU1BFQyA9ICdDOlxcV0lORE9XU1xcc3lzdGVtMzJcXGNtZC5leGUnCkNPTlRFTlRfTEVOR1RIID0gJzEzOScKQ09OVEVOVF9UWVBFID0gJ2FwcGxpY2F0aW9uL2pzb24nCkNTUkZfQ09PS0lFID0gJzFFRVAyU3dLdDFLOVFiV25GUFN5V1BJaWJ0TzdNQWFWcUtMRWVvb0ZnWVZ5ZGpZUG9nbjBPd3AyOW9VVzZBNksnCkRKQU5HT19TRVRUSU5HU19NT0RVTEUgPSAna2FwZS5zZXR0aW5ncycKRlBTX0JST1dTRVJfQVBQX1BST0ZJTEVfU1RSSU5HID0gJ0ludGVybmV0IEV4cGxvcmVyJwpGUFNfQlJPV1NFUl9VU0VSX1BST0ZJTEVfU1RSSU5HID0gJ0RlZmF1bHQnCkZQX05PX0hPU1RfQ0hFQ0sgPSAnTk8nCkdBVEVXQVlfSU5URVJGQUNFID0gJ0NHSS8xLjEnCkhPTUVEUklWRSA9ICdDOicKSE9NRVBBVEggPSAnXFxVc2Vyc1xcZmFyaGFfMDAwJwpIVFRQX0FDQ0VQVCA9ICdhcHBsaWNhdGlvbi9qc29uJwpIVFRQX0FDQ0VQVF9FTkNPRElORyA9ICdnemlwLCBkZWZsYXRlLCBicicKSFRUUF9BQ0NFUFRfTEFOR1VBR0UgPSAnaWQtSUQsaWQ7cT0wLjgsZW4tVVM7cT0wLjYsZW47cT0wLjQnCkhUVFBfQ09OTkVDVElPTiA9ICdrZWVwLWFsaXZlJwpIVFRQX0NPT0tJRSA9ICdzZXNzaW9uaWQ9Ymx0ODc3ZzVmam11Y3h5M2RkNXV4Y2l6YXZiOW9wb3Y7IGNzcmZ0b2tlbj0xRUVQMlN3S3QxSzlRYlduRlBTeVdQSWlidE83TUFhVnFLTEVlb29GZ1lWeWRqWVBvZ24wT3dwMjlvVVc2QTZLJwpIVFRQX0hPU1QgPSAnMTI3LjAuMC4xOjgwMDAnCkhUVFBfT1JJR0lOID0gJ2h0dHA6Ly8xMjcuMC4wLjE6ODAwMCcKSFRUUF9SRUZFUkVSID0gJ2h0dHA6Ly8xMjcuMC4wLjE6ODAwMC9hcGknCkhUVFBfVVNFUl9BR0VOVCA9ICdNb3ppbGxhLzUuMCAoV2luZG93cyBOVCAxMC4wOyBXT1c2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzU2LjAuMjkyNC44NyBTYWZhcmkvNTM3LjM2JwpIVFRQX1hfQ1NSRlRPS0VOID0gJ2pxOTFCdUY1ZTVSN1NqTUZSYzJUTmZ2V1U4bERPNnd5SXdnUU4weDAxMjJ3ZnJPN0FEeGxGV2NHUzNyczg2c24nCkxPQ0FMQVBQREFUQSA9ICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWwnCkxPR09OU0VSVkVSID0gJ1xcXFxGQVJIQU4nCk5VTUJFUl9PRl9QUk9DRVNTT1JTID0gJzInCk9ORURSSVZFID0gJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxPbmVEcml2ZScKT1MgPSAnV2luZG93c19OVCcKUEFUSCA9ICdDOlxcUHJvZ3JhbURhdGFcXE9yYWNsZVxcSmF2YVxcamF2YXBhdGg7QzpcXFByb2dyYW0gRmlsZXNcXEhhc2tlbGxcXGJpbjtDOlxcUHJvZ3JhbSBGaWxlc1xcSGFza2VsbCBQbGF0Zm9ybVxcNy4xMC4zXFxsaWJcXGV4dHJhbGlic1xcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxIYXNrZWxsIFBsYXRmb3JtXFw3LjEwLjNcXGJpbjtDOlxcV0lORE9XU1xcc3lzdGVtMzI7QzpcXFdJTkRPV1M7QzpcXFdJTkRPV1NcXFN5c3RlbTMyXFxXYmVtO0M6XFxXSU5ET1dTXFxTeXN0ZW0zMlxcV2luZG93c1Bvd2VyU2hlbGxcXHYxLjBcXDtDOlxcUHJvZ3JhbSBGaWxlc1xcSGFza2VsbCBQbGF0Zm9ybVxcNy4xMC4zXFxtaW5nd1xcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxKYXZhXFxqZGsxLjguMF83N1xcYmluO0M6XFxjeWd3aW42NFxcYmluOyVsb2NhbGFwcGRhdGElXFxNaWNyb3NvZnRcXFdpbmRvd3NBcHBzO0Q6XFxYQU1QUFxccGhwO0M6XFxQcm9ncmFtIEZpbGVzXFxHaXRcXGNtZDtDOlxceGFtcHBcXHBocDtDOlxcUHJvZ3JhbURhdGFcXENvbXBvc2VyU2V0dXBcXGJpbjtDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcbm9kZWpzXFw7QzpcXFByb2dyYW0gRmlsZXNcXFBvc3RncmVTUUxcXDkuNlxcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxNQVRMQUJcXFIyMDE3YVxcYmluO0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXFNjcmlwdHNcXDtDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyXFw7QzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmdcXGNhYmFsXFxiaW47RDpcXFhBTVBQXFxwaHA7QzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmdcXENvbXBvc2VyXFx2ZW5kb3JcXGJpbjtDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXE1pY3Jvc29mdFxcV2luZG93c0FwcHM7QzpcXHB5dGhvbi0zLjYuMCcKUEFUSEVYVCA9ICcuQ09NOy5FWEU7LkJBVDsuQ01EOy5WQlM7LlZCRTsuSlM7LkpTRTsuV1NGOy5XU0g7Lk1TQycKUEFUSF9JTkZPID0gJy9hcGkvc3R1ZGVudHMvNC9ib29rbWFya2VkLXZhY2FuY2llcy8nClBST0NFU1NPUl9BUkNISVRFQ1RVUkUgPSAneDg2JwpQUk9DRVNTT1JfQVJDSElURVc2NDMyID0gJ0FNRDY0JwpQUk9DRVNTT1JfSURFTlRJRklFUiA9ICdJbnRlbDY0IEZhbWlseSA2IE1vZGVsIDU4IFN0ZXBwaW5nIDksIEdlbnVpbmVJbnRlbCcKUFJPQ0VTU09SX0xFVkVMID0gJzYnClBST0NFU1NPUl9SRVZJU0lPTiA9ICczYTA5JwpQUk9HUkFNREFUQSA9ICdDOlxcUHJvZ3JhbURhdGEnClBST0dSQU1GSUxFUyA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KScKUFJPR1JBTUZJTEVTKFg4NikgPSAnQzpcXFByb2dyYW0gRmlsZXMgKHg4NiknClBST0dSQU1XNjQzMiA9ICdDOlxcUHJvZ3JhbSBGaWxlcycKUFJPTVBUID0gJyRQJEcnClBTTU9EVUxFUEFUSCA9ICdDOlxcV0lORE9XU1xcc3lzdGVtMzJcXFdpbmRvd3NQb3dlclNoZWxsXFx2MS4wXFxNb2R1bGVzXFwnClBVQkxJQyA9ICdDOlxcVXNlcnNcXFB1YmxpYycKUVVFUllfU1RSSU5HID0gJycKUkVNT1RFX0FERFIgPSAnMTI3LjAuMC4xJwpSRU1PVEVfSE9TVCA9ICcnClJFUVVFU1RfTUVUSE9EID0gJ1BPU1QnClJVTl9NQUlOID0gJ3RydWUnClNDUklQVF9OQU1FID0gJycKU0VSVkVSX05BTUUgPSAnRmFyaGFuJwpTRVJWRVJfUE9SVCA9ICc4MDAwJwpTRVJWRVJfUFJPVE9DT0wgPSAnSFRUUC8xLjEnClNFUlZFUl9TT0ZUV0FSRSA9ICdXU0dJU2VydmVyLzAuMicKU0VTU0lPTk5BTUUgPSAnQ29uc29sZScKU1lTVEVNRFJJVkUgPSAnQzonClNZU1RFTVJPT1QgPSAnQzpcXFdJTkRPV1MnClRFTVAgPSAnQzpcXFVzZXJzXFxGQVJIQV9+MVxcQXBwRGF0YVxcTG9jYWxcXFRlbXAnClRNUCA9ICdDOlxcVXNlcnNcXEZBUkhBX34xXFxBcHBEYXRhXFxMb2NhbFxcVGVtcCcKVVNFUkRPTUFJTiA9ICdGYXJoYW4nClVTRVJET01BSU5fUk9BTUlOR1BST0ZJTEUgPSAnRmFyaGFuJwpVU0VSTkFNRSA9ICdGYXJoYW4gRmFyYXNkYWsnClVTRVJQUk9GSUxFID0gJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwJwpWQk9YX01TSV9JTlNUQUxMX1BBVEggPSAnQzpcXFByb2dyYW0gRmlsZXNcXE9yYWNsZVxcVmlydHVhbEJveFxcJwpXSU5ESVIgPSAnQzpcXFdJTkRPV1MnCndzZ2kuZXJyb3JzID0gPF9pby5UZXh0SU9XcmFwcGVyIG5hbWU9JzxzdGRlcnI+JyBtb2RlPSd3JyBlbmNvZGluZz0ndXRmLTgnPgp3c2dpLmZpbGVfd3JhcHBlciA9ICcnCndzZ2kuaW5wdXQgPSA8X2lvLkJ1ZmZlcmVkUmVhZGVyIG5hbWU9MTg2ND4Kd3NnaS5tdWx0aXByb2Nlc3MgPSBGYWxzZQp3c2dpLm11bHRpdGhyZWFkID0gVHJ1ZQp3c2dpLnJ1bl9vbmNlID0gRmFsc2UKd3NnaS51cmxfc2NoZW1lID0gJ2h0dHAnCndzZ2kudmVyc2lvbiA9IAoKU2V0dGluZ3M6ClVzaW5nIHNldHRpbmdzIG1vZHVsZSBrYXBlLnNldHRpbmdzCkFCU09MVVRFX1VSTF9PVkVSUklERVMgPSB7fQpBRE1JTlMgPSBbXQpBTExPV0VEX0hPU1RTID0gWydib3QucmVjcnVpdC5pZCcsICcxMDQuMjM2Ljc2LjE2MScsICdsb2NhbGhvc3QnLCAnMTI3LjAuMC4xJ10KQVBQRU5EX1NMQVNIID0gVHJ1ZQpBVVRIRU5USUNBVElPTl9CQUNLRU5EUyA9IFsnZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQnXQpBVVRIX1BBU1NXT1JEX1ZBTElEQVRPUlMgPSAnKioqKioqKioqKioqKioqKioqKionCkFVVEhfVVNFUl9NT0RFTCA9ICdhdXRoLlVzZXInCkJBU0VfRElSID0gJ0Q6XFxQUExBJwpDQUNIRVMgPSB7J2RlZmF1bHQnOiB7J0JBQ0tFTkQnOiAnZGphbmdvLmNvcmUuY2FjaGUuYmFja2VuZHMubG9jbWVtLkxvY01lbUNhY2hlJ319CkNBQ0hFX01JRERMRVdBUkVfQUxJQVMgPSAnZGVmYXVsdCcKQ0FDSEVfTUlERExFV0FSRV9LRVlfUFJFRklYID0gJyoqKioqKioqKioqKioqKioqKioqJwpDQUNIRV9NSURETEVXQVJFX1NFQ09ORFMgPSA2MDAKQ1NSRl9DT09LSUVfQUdFID0gMzE0NDk2MDAKQ1NSRl9DT09LSUVfRE9NQUlOID0gTm9uZQpDU1JGX0NPT0tJRV9IVFRQT05MWSA9IEZhbHNlCkNTUkZfQ09PS0lFX05BTUUgPSAnY3NyZnRva2VuJwpDU1JGX0NPT0tJRV9QQVRIID0gJy8nCkNTUkZfQ09PS0lFX1NFQ1VSRSA9IEZhbHNlCkNTUkZfRkFJTFVSRV9WSUVXID0gJ2RqYW5nby52aWV3cy5jc3JmLmNzcmZfZmFpbHVyZScKQ1NSRl9IRUFERVJfTkFNRSA9ICdIVFRQX1hfQ1NSRlRPS0VOJwpDU1JGX1RSVVNURURfT1JJR0lOUyA9IFtdCkRBVEFCQVNFUyA9IHsnZGVmYXVsdCc6IHsnRU5HSU5FJzogJ2RqYW5nby5kYi5iYWNrZW5kcy5wb3N0Z3Jlc3FsX3BzeWNvcGcyJywgJ05BTUUnOiAna2FwZScsICdVU0VSJzogJ2thcGUnLCAnUEFTU1dPUkQnOiAnKioqKioqKioqKioqKioqKioqKionLCAnSE9TVCc6ICdsb2NhbGhvc3QnLCAnUE9SVCc6ICcnLCAnQVRPTUlDX1JFUVVFU1RTJzogRmFsc2UsICdBVVRPQ09NTUlUJzogVHJ1ZSwgJ0NPTk5fTUFYX0FHRSc6IDAsICdPUFRJT05TJzoge30sICdUSU1FX1pPTkUnOiBOb25lLCAnVEVTVCc6IHsnQ0hBUlNFVCc6IE5vbmUsICdDT0xMQVRJT04nOiBOb25lLCAnTkFNRSc6IE5vbmUsICdNSVJST1InOiBOb25lfX19CkRBVEFCQVNFX1JPVVRFUlMgPSBbXQpEQVRBX1VQTE9BRF9NQVhfTUVNT1JZX1NJWkUgPSAyNjIxNDQwCkRBVEFfVVBMT0FEX01BWF9OVU1CRVJfRklFTERTID0gMTAwMApEQVRFVElNRV9GT1JNQVQgPSAnTiBqLCBZLCBQJwpEQVRFVElNRV9JTlBVVF9GT1JNQVRTID0gWyclWS0lbS0lZCAlSDolTTolUycsICclWS0lbS0lZCAlSDolTTolUy4lZicsICclWS0lbS0lZCAlSDolTScsICclWS0lbS0lZCcsICclbS8lZC8lWSAlSDolTTolUycsICclbS8lZC8lWSAlSDolTTolUy4lZicsICclbS8lZC8lWSAlSDolTScsICclbS8lZC8lWScsICclbS8lZC8leSAlSDolTTolUycsICclbS8lZC8leSAlSDolTTolUy4lZicsICclbS8lZC8leSAlSDolTScsICclbS8lZC8leSddCkRBVEVfRk9STUFUID0gJ04gaiwgWScKREFURV9JTlBVVF9GT1JNQVRTID0gWyclWS0lbS0lZCcsICclbS8lZC8lWScsICclbS8lZC8leScsICclYiAlZCAlWScsICclYiAlZCwgJVknLCAnJWQgJWIgJVknLCAnJWQgJWIsICVZJywgJyVCICVkICVZJywgJyVCICVkLCAlWScsICclZCAlQiAlWScsICclZCAlQiwgJVknXQpERUJVRyA9IFRydWUKREVCVUdfUFJPUEFHQVRFX0VYQ0VQVElPTlMgPSBGYWxzZQpERUNJTUFMX1NFUEFSQVRPUiA9ICcuJwpERUZBVUxUX0NIQVJTRVQgPSAndXRmLTgnCkRFRkFVTFRfQ09OVEVOVF9UWVBFID0gJ3RleHQvaHRtbCcKREVGQVVMVF9FWENFUFRJT05fUkVQT1JURVJfRklMVEVSID0gJ2RqYW5nby52aWV3cy5kZWJ1Zy5TYWZlRXhjZXB0aW9uUmVwb3J0ZXJGaWx0ZXInCkRFRkFVTFRfRklMRV9TVE9SQUdFID0gJ2RqYW5nby5jb3JlLmZpbGVzLnN0b3JhZ2UuRmlsZVN5c3RlbVN0b3JhZ2UnCkRFRkFVTFRfRlJPTV9FTUFJTCA9ICd3ZWJtYXN0ZXJAbG9jYWxob3N0JwpERUZBVUxUX0lOREVYX1RBQkxFU1BBQ0UgPSAnJwpERUZBVUxUX1RBQkxFU1BBQ0UgPSAnJwpESVNBTExPV0VEX1VTRVJfQUdFTlRTID0gW10KRU1BSUxfQkFDS0VORCA9ICdkamFuZ28uY29yZS5tYWlsLmJhY2tlbmRzLnNtdHAuRW1haWxCYWNrZW5kJwpFTUFJTF9IT1NUID0gJ2xvY2FsaG9zdCcKRU1BSUxfSE9TVF9QQVNTV09SRCA9ICcqKioqKioqKioqKioqKioqKioqKicKRU1BSUxfSE9TVF9VU0VSID0gJycKRU1BSUxfUE9SVCA9IDI1CkVNQUlMX1NTTF9DRVJURklMRSA9IE5vbmUKRU1BSUxfU1NMX0tFWUZJTEUgPSAnKioqKioqKioqKioqKioqKioqKionCkVNQUlMX1NVQkpFQ1RfUFJFRklYID0gJ1tEamFuZ29dICcKRU1BSUxfVElNRU9VVCA9IE5vbmUKRU1BSUxfVVNFX1NTTCA9IEZhbHNlCkVNQUlMX1VTRV9UTFMgPSBGYWxzZQpGSUxFX0NIQVJTRVQgPSAndXRmLTgnCkZJTEVfVVBMT0FEX0RJUkVDVE9SWV9QRVJNSVNTSU9OUyA9IE5vbmUKRklMRV9VUExPQURfSEFORExFUlMgPSBbJ2RqYW5nby5jb3JlLmZpbGVzLnVwbG9hZGhhbmRsZXIuTWVtb3J5RmlsZVVwbG9hZEhhbmRsZXInLCAnZGphbmdvLmNvcmUuZmlsZXMudXBsb2FkaGFuZGxlci5UZW1wb3JhcnlGaWxlVXBsb2FkSGFuZGxlciddCkZJTEVfVVBMT0FEX01BWF9NRU1PUllfU0laRSA9IDI2MjE0NDAKRklMRV9VUExPQURfUEVSTUlTU0lPTlMgPSBOb25lCkZJTEVfVVBMT0FEX1RFTVBfRElSID0gTm9uZQpGSVJTVF9EQVlfT0ZfV0VFSyA9IDAKRklYVFVSRV9ESVJTID0gW10KRk9SQ0VfU0NSSVBUX05BTUUgPSBOb25lCkZPUk1BVF9NT0RVTEVfUEFUSCA9IE5vbmUKR1pJUF9DT05URU5UX1RZUEVTID0gCklHTk9SQUJMRV80MDRfVVJMUyA9IFtdCklOU1RBTExFRF9BUFBTID0gWydkamFuZ28uY29udHJpYi5hZG1pbicsICdkamFuZ28uY29udHJpYi5hdXRoJywgJ2RqYW5nby5jb250cmliLmNvbnRlbnR0eXBlcycsICdkamFuZ28uY29udHJpYi5zZXNzaW9ucycsICdkamFuZ28uY29udHJpYi5tZXNzYWdlcycsICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcycsICd3ZWJwYWNrX2xvYWRlcicsICdjb3JlJywgJ3Jlc3RfZnJhbWV3b3JrJywgJ2RqYW5nb19ub3NlJywgJ3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXInLCAnc2lsayddCklOVEVSTkFMX0lQUyA9IFtdCkxBTkdVQUdFUyA9IFsoJ2FmJywgJ0FmcmlrYWFucycpLCAoJ2FyJywgJ0FyYWJpYycpLCAoJ2FzdCcsICdBc3R1cmlhbicpLCAoJ2F6JywgJ0F6ZXJiYWlqYW5pJyksICgnYmcnLCAnQnVsZ2FyaWFuJyksICgnYmUnLCAnQmVsYXJ1c2lhbicpLCAoJ2JuJywgJ0JlbmdhbGknKSwgKCdicicsICdCcmV0b24nKSwgKCdicycsICdCb3NuaWFuJyksICgnY2EnLCAnQ2F0YWxhbicpLCAoJ2NzJywgJ0N6ZWNoJyksICgnY3knLCAnV2Vsc2gnKSwgKCdkYScsICdEYW5pc2gnKSwgKCdkZScsICdHZXJtYW4nKSwgKCdkc2InLCAnTG93ZXIgU29yYmlhbicpLCAoJ2VsJywgJ0dyZWVrJyksICgnZW4nLCAnRW5nbGlzaCcpLCAoJ2VuLWF1JywgJ0F1c3RyYWxpYW4gRW5nbGlzaCcpLCAoJ2VuLWdiJywgJ0JyaXRpc2ggRW5nbGlzaCcpLCAoJ2VvJywgJ0VzcGVyYW50bycpLCAoJ2VzJywgJ1NwYW5pc2gnKSwgKCdlcy1hcicsICdBcmdlbnRpbmlhbiBTcGFuaXNoJyksICgnZXMtY28nLCAnQ29sb21iaWFuIFNwYW5pc2gnKSwgKCdlcy1teCcsICdNZXhpY2FuIFNwYW5pc2gnKSwgKCdlcy1uaScsICdOaWNhcmFndWFuIFNwYW5pc2gnKSwgKCdlcy12ZScsICdWZW5lenVlbGFuIFNwYW5pc2gnKSwgKCdldCcsICdFc3RvbmlhbicpLCAoJ2V1JywgJ0Jhc3F1ZScpLCAoJ2ZhJywgJ1BlcnNpYW4nKSwgKCdmaScsICdGaW5uaXNoJyksICgnZnInLCAnRnJlbmNoJyksICgnZnknLCAnRnJpc2lhbicpLCAoJ2dhJywgJ0lyaXNoJyksICgnZ2QnLCAnU2NvdHRpc2ggR2FlbGljJyksICgnZ2wnLCAnR2FsaWNpYW4nKSwgKCdoZScsICdIZWJyZXcnKSwgKCdoaScsICdIaW5kaScpLCAoJ2hyJywgJ0Nyb2F0aWFuJyksICgnaHNiJywgJ1VwcGVyIFNvcmJpYW4nKSwgKCdodScsICdIdW5nYXJpYW4nKSwgKCdpYScsICdJbnRlcmxpbmd1YScpLCAoJ2lkJywgJ0luZG9uZXNpYW4nKSwgKCdpbycsICdJZG8nKSwgKCdpcycsICdJY2VsYW5kaWMnKSwgKCdpdCcsICdJdGFsaWFuJyksICgnamEnLCAnSmFwYW5lc2UnKSwgKCdrYScsICdHZW9yZ2lhbicpLCAoJ2trJywgJ0themFraCcpLCAoJ2ttJywgJ0tobWVyJyksICgna24nLCAnS2FubmFkYScpLCAoJ2tvJywgJ0tvcmVhbicpLCAoJ2xiJywgJ0x1eGVtYm91cmdpc2gnKSwgKCdsdCcsICdMaXRodWFuaWFuJyksICgnbHYnLCAnTGF0dmlhbicpLCAoJ21rJywgJ01hY2Vkb25pYW4nKSwgKCdtbCcsICdNYWxheWFsYW0nKSwgKCdtbicsICdNb25nb2xpYW4nKSwgKCdtcicsICdNYXJhdGhpJyksICgnbXknLCAnQnVybWVzZScpLCAoJ25iJywgJ05vcndlZ2lhbiBCb2ttw6VsJyksICgnbmUnLCAnTmVwYWxpJyksICgnbmwnLCAnRHV0Y2gnKSwgKCdubicsICdOb3J3ZWdpYW4gTnlub3JzaycpLCAoJ29zJywgJ09zc2V0aWMnKSwgKCdwYScsICdQdW5qYWJpJyksICgncGwnLCAnUG9saXNoJyksICgncHQnLCAnUG9ydHVndWVzZScpLCAoJ3B0LWJyJywgJ0JyYXppbGlhbiBQb3J0dWd1ZXNlJyksICgncm8nLCAnUm9tYW5pYW4nKSwgKCdydScsICdSdXNzaWFuJyksICgnc2snLCAnU2xvdmFrJyksICgnc2wnLCAnU2xvdmVuaWFuJyksICgnc3EnLCAnQWxiYW5pYW4nKSwgKCdzcicsICdTZXJiaWFuJyksICgnc3ItbGF0bicsICdTZXJiaWFuIExhdGluJyksICgnc3YnLCAnU3dlZGlzaCcpLCAoJ3N3JywgJ1N3YWhpbGknKSwgKCd0YScsICdUYW1pbCcpLCAoJ3RlJywgJ1RlbHVndScpLCAoJ3RoJywgJ1RoYWknKSwgKCd0cicsICdUdXJraXNoJyksICgndHQnLCAnVGF0YXInKSwgKCd1ZG0nLCAnVWRtdXJ0JyksICgndWsnLCAnVWtyYWluaWFuJyksICgndXInLCAnVXJkdScpLCAoJ3ZpJywgJ1ZpZXRuYW1lc2UnKSwgKCd6aC1oYW5zJywgJ1NpbXBsaWZpZWQgQ2hpbmVzZScpLCAoJ3poLWhhbnQnLCAnVHJhZGl0aW9uYWwgQ2hpbmVzZScpXQpMQU5HVUFHRVNfQklESSA9IFsnaGUnLCAnYXInLCAnZmEnLCAndXInXQpMQU5HVUFHRV9DT0RFID0gJ2VuLXVzJwpMQU5HVUFHRV9DT09LSUVfQUdFID0gTm9uZQpMQU5HVUFHRV9DT09LSUVfRE9NQUlOID0gTm9uZQpMQU5HVUFHRV9DT09LSUVfTkFNRSA9ICdkamFuZ29fbGFuZ3VhZ2UnCkxBTkdVQUdFX0NPT0tJRV9QQVRIID0gJy8nCkxPQ0FMRV9QQVRIUyA9IFtdCkxPR0dJTkcgPSB7fQpMT0dHSU5HX0NPTkZJRyA9ICdsb2dnaW5nLmNvbmZpZy5kaWN0Q29uZmlnJwpMT0dJTl9SRURJUkVDVF9VUkwgPSAnL2FjY291bnRzL3Byb2ZpbGUvJwpMT0dJTl9VUkwgPSAnL2FjY291bnRzL2xvZ2luLycKTE9HT1VUX1JFRElSRUNUX1VSTCA9IE5vbmUKTUFOQUdFUlMgPSBbXQpNRURJQV9ST09UID0gJy9ob21lL2ZpbGVzJwpNRURJQV9VUkwgPSAnL2ZpbGVzLycKTUVTU0FHRV9TVE9SQUdFID0gJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzLnN0b3JhZ2UuZmFsbGJhY2suRmFsbGJhY2tTdG9yYWdlJwpNSURETEVXQVJFID0gWydkamFuZ28ubWlkZGxld2FyZS5zZWN1cml0eS5TZWN1cml0eU1pZGRsZXdhcmUnLCAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMubWlkZGxld2FyZS5TZXNzaW9uTWlkZGxld2FyZScsICdkamFuZ28ubWlkZGxld2FyZS5jb21tb24uQ29tbW9uTWlkZGxld2FyZScsICdkamFuZ28ubWlkZGxld2FyZS5jc3JmLkNzcmZWaWV3TWlkZGxld2FyZScsICdkamFuZ28uY29udHJpYi5hdXRoLm1pZGRsZXdhcmUuQXV0aGVudGljYXRpb25NaWRkbGV3YXJlJywgJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzLm1pZGRsZXdhcmUuTWVzc2FnZU1pZGRsZXdhcmUnLCAnZGphbmdvLm1pZGRsZXdhcmUuY2xpY2tqYWNraW5nLlhGcmFtZU9wdGlvbnNNaWRkbGV3YXJlJywgJ3NpbGsubWlkZGxld2FyZS5TaWxreU1pZGRsZXdhcmUnXQpNSURETEVXQVJFX0NMQVNTRVMgPSBbJ2RqYW5nby5taWRkbGV3YXJlLmNvbW1vbi5Db21tb25NaWRkbGV3YXJlJywgJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJ10KTUlHUkFUSU9OX01PRFVMRVMgPSB7fQpNT05USF9EQVlfRk9STUFUID0gJ0YgaicKTk9TRV9BUkdTID0gWyctLXdpdGgtY292ZXJhZ2UnLCAnLS1jb3Zlci1wYWNrYWdlPWNvcmUudmlld3MnLCAnLS1jb3Zlci1odG1sLWRpcj10ZXN0L2JhY2tlbmQnLCAnLS1jb3Zlci1odG1sJ10KTlVNQkVSX0dST1VQSU5HID0gMApQQVNTV09SRF9IQVNIRVJTID0gJyoqKioqKioqKioqKioqKioqKioqJwpQQVNTV09SRF9SRVNFVF9USU1FT1VUX0RBWVMgPSAnKioqKioqKioqKioqKioqKioqKionClBSRVBFTkRfV1dXID0gRmFsc2UKUkVTVF9GUkFNRVdPUksgPSB7J0RFRkFVTFRfUEVSTUlTU0lPTl9DTEFTU0VTJzogWydyZXN0X2ZyYW1ld29yay5wZXJtaXNzaW9ucy5EamFuZ29Nb2RlbFBlcm1pc3Npb25zT3JBbm9uUmVhZE9ubHknXX0KUk9PVF9VUkxDT05GID0gJ2thcGUudXJscycKUlVOTklOR19ERVZTRVJWRVIgPSBUcnVlClNFQ1JFVF9LRVkgPSAnKioqKioqKioqKioqKioqKioqKionClNFQ1VSRV9CUk9XU0VSX1hTU19GSUxURVIgPSBGYWxzZQpTRUNVUkVfQ09OVEVOVF9UWVBFX05PU05JRkYgPSBGYWxzZQpTRUNVUkVfSFNUU19JTkNMVURFX1NVQkRPTUFJTlMgPSBGYWxzZQpTRUNVUkVfSFNUU19TRUNPTkRTID0gMApTRUNVUkVfUFJPWFlfU1NMX0hFQURFUiA9IE5vbmUKU0VDVVJFX1JFRElSRUNUX0VYRU1QVCA9IFtdClNFQ1VSRV9TU0xfSE9TVCA9IE5vbmUKU0VDVVJFX1NTTF9SRURJUkVDVCA9IEZhbHNlClNFUlZFUl9FTUFJTCA9ICdyb290QGxvY2FsaG9zdCcKU0VTU0lPTl9DQUNIRV9BTElBUyA9ICdkZWZhdWx0JwpTRVNTSU9OX0NPT0tJRV9BR0UgPSAxMjA5NjAwClNFU1NJT05fQ09PS0lFX0RPTUFJTiA9IE5vbmUKU0VTU0lPTl9DT09LSUVfSFRUUE9OTFkgPSBGYWxzZQpTRVNTSU9OX0NPT0tJRV9OQU1FID0gJ3Nlc3Npb25pZCcKU0VTU0lPTl9DT09LSUVfUEFUSCA9ICcvJwpTRVNTSU9OX0NPT0tJRV9TRUNVUkUgPSBGYWxzZQpTRVNTSU9OX0VOR0lORSA9ICdkamFuZ28uY29udHJpYi5zZXNzaW9ucy5iYWNrZW5kcy5kYicKU0VTU0lPTl9FWFBJUkVfQVRfQlJPV1NFUl9DTE9TRSA9IEZhbHNlClNFU1NJT05fRklMRV9QQVRIID0gTm9uZQpTRVNTSU9OX1NBVkVfRVZFUllfUkVRVUVTVCA9IEZhbHNlClNFU1NJT05fU0VSSUFMSVpFUiA9ICdkamFuZ28uY29udHJpYi5zZXNzaW9ucy5zZXJpYWxpemVycy5KU09OU2VyaWFsaXplcicKU0VUVElOR1NfTU9EVUxFID0gJ2thcGUuc2V0dGluZ3MnClNIT1JUX0RBVEVUSU1FX0ZPUk1BVCA9ICdtL2QvWSBQJwpTSE9SVF9EQVRFX0ZPUk1BVCA9ICdtL2QvWScKU0lHTklOR19CQUNLRU5EID0gJ2RqYW5nby5jb3JlLnNpZ25pbmcuVGltZXN0YW1wU2lnbmVyJwpTSUxFTkNFRF9TWVNURU1fQ0hFQ0tTID0gW10KU1RBVElDRklMRVNfRElSUyA9ICdEOlxcUFBMQVxcYXNzZXRzJwpTVEFUSUNGSUxFU19GSU5ERVJTID0gWydkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcy5maW5kZXJzLkZpbGVTeXN0ZW1GaW5kZXInLCAnZGphbmdvLmNvbnRyaWIuc3RhdGljZmlsZXMuZmluZGVycy5BcHBEaXJlY3Rvcmllc0ZpbmRlciddClNUQVRJQ0ZJTEVTX1NUT1JBR0UgPSAnZGphbmdvLmNvbnRyaWIuc3RhdGljZmlsZXMuc3RvcmFnZS5TdGF0aWNGaWxlc1N0b3JhZ2UnClNUQVRJQ19ST09UID0gJy9ob21lL2Fzc2V0cycKU1RBVElDX1VSTCA9ICcvYXNzZXRzLycKVEVNUExBVEVTID0gW3snQkFDS0VORCc6ICdkamFuZ28udGVtcGxhdGUuYmFja2VuZHMuZGphbmdvLkRqYW5nb1RlbXBsYXRlcycsICdESVJTJzogW10sICdBUFBfRElSUyc6IFRydWUsICdPUFRJT05TJzogeydjb250ZXh0X3Byb2Nlc3NvcnMnOiBbJ2RqYW5nby50ZW1wbGF0ZS5jb250ZXh0X3Byb2Nlc3NvcnMuZGVidWcnLCAnZGphbmdvLnRlbXBsYXRlLmNvbnRleHRfcHJvY2Vzc29ycy5yZXF1ZXN0JywgJ2RqYW5nby5jb250cmliLmF1dGguY29udGV4dF9wcm9jZXNzb3JzLmF1dGgnLCAnZGphbmdvLmNvbnRyaWIubWVzc2FnZXMuY29udGV4dF9wcm9jZXNzb3JzLm1lc3NhZ2VzJ119fV0KVEVTVF9OT05fU0VSSUFMSVpFRF9BUFBTID0gW10KVEVTVF9SVU5ORVIgPSAnZGphbmdvX25vc2UuTm9zZVRlc3RTdWl0ZVJ1bm5lcicKVEhPVVNBTkRfU0VQQVJBVE9SID0gJywnClRJTUVfRk9STUFUID0gJ1AnClRJTUVfSU5QVVRfRk9STUFUUyA9IFsnJUg6JU06JVMnLCAnJUg6JU06JVMuJWYnLCAnJUg6JU0nXQpUSU1FX1pPTkUgPSAnVVRDJwpVU0VfRVRBR1MgPSBGYWxzZQpVU0VfSTE4TiA9IFRydWUKVVNFX0wxME4gPSBUcnVlClVTRV9USE9VU0FORF9TRVBBUkFUT1IgPSBGYWxzZQpVU0VfVFogPSBUcnVlClVTRV9YX0ZPUldBUkRFRF9IT1NUID0gRmFsc2UKVVNFX1hfRk9SV0FSREVEX1BPUlQgPSBGYWxzZQpXRUJQQUNLX0xPQURFUiA9IHsnREVGQVVMVCc6IHsnQlVORExFX0RJUl9OQU1FJzogJ2J1bmRsZXMvJywgJ1NUQVRTX0ZJTEUnOiAnRDpcXFBQTEFcXHdlYnBhY2stc3RhdHMuanNvbid9fQpXU0dJX0FQUExJQ0FUSU9OID0gJ2thcGUud3NnaS5hcHBsaWNhdGlvbicKWF9GUkFNRV9PUFRJT05TID0gJ1NBTUVPUklHSU4nCllFQVJfTU9OVEhfRk9STUFUID0gJ0YgWScKCgpZb3UncmUgc2VlaW5nIHRoaXMgZXJyb3IgYmVjYXVzZSB5b3UgaGF2ZSBERUJVRyA9IFRydWUgaW4geW91cgpEamFuZ28gc2V0dGluZ3MgZmlsZS4gQ2hhbmdlIHRoYXQgdG8gRmFsc2UsIGFuZCBEamFuZ28gd2lsbApkaXNwbGF5IGEgc3RhbmRhcmQgcGFnZSBnZW5lcmF0ZWQgYnkgdGhlIGhhbmRsZXIgZm9yIHRoaXMgc3RhdHVzIGNvZGUuCgo=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/plain\"}" - } -}, -{ - "model": "silk.response", - "pk": "d2408731-1032-4469-b015-08f8b0b1d272", - "fields": { - "request": "1c6c07ac-9b30-4cfb-ba35-ac77fafaf59b", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "d4554ad5-b054-4ec8-915c-c51046a11d61", - "fields": { - "request": "129fb7ed-3688-449c-b959-7203d469086b", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPlNlbGVjdCB1c2VyIHRvIGNoYW5nZSB8IERqYW5nbyBzaXRlIGFkbWluPC90aXRsZT4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvYmFzZS5jc3MiIC8+CgogIAogIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvYWRtaW4vY3NzL2NoYW5nZWxpc3RzLmNzcyIgLz4KICAKICAKICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KICAKICAKICAKCgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvY29yZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL2pxdWVyeS9qcXVlcnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2pxdWVyeS5pbml0LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hZG1pbi9SZWxhdGVkT2JqZWN0TG9va3Vwcy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvYWN0aW9ucy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdXJsaWZ5LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9wcmVwb3B1bGF0ZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL3hyZWdleHAveHJlZ2V4cC5qcyI+PC9zY3JpcHQ+Cgo8bWV0YSBuYW1lPSJyb2JvdHMiIGNvbnRlbnQ9Ik5PTkUsTk9BUkNISVZFIiAvPgo8L2hlYWQ+CgoKPGJvZHkgY2xhc3M9IiBhcHAtYXV0aCBtb2RlbC11c2VyIGNoYW5nZS1saXN0IgogIGRhdGEtYWRtaW4tdXRjLW9mZnNldD0iMCI+Cgo8IS0tIENvbnRhaW5lciAtLT4KPGRpdiBpZD0iY29udGFpbmVyIj4KCiAgICAKICAgIDwhLS0gSGVhZGVyIC0tPgogICAgPGRpdiBpZD0iaGVhZGVyIj4KICAgICAgICA8ZGl2IGlkPSJicmFuZGluZyI+CiAgICAgICAgCjxoMSBpZD0ic2l0ZS1uYW1lIj48YSBocmVmPSIvYWRtaW4vIj5EamFuZ28gYWRtaW5pc3RyYXRpb248L2E+PC9oMT4KCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgPGRpdiBpZD0idXNlci10b29scyI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgV2VsY29tZSwKICAgICAgICAgICAgICAgIDxzdHJvbmc+a2FwZTwvc3Ryb25nPi4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iLyI+VmlldyBzaXRlPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9wYXNzd29yZF9jaGFuZ2UvIj5DaGFuZ2UgcGFzc3dvcmQ8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2xvZ291dC8iPkxvZyBvdXQ8L2E+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIAogICAgPC9kaXY+CiAgICA8IS0tIEVORCBIZWFkZXIgLS0+CiAgICAKPGRpdiBjbGFzcz0iYnJlYWRjcnVtYnMiPgo8YSBocmVmPSIvYWRtaW4vIj5Ib21lPC9hPgomcnNhcXVvOyA8YSBocmVmPSIvYWRtaW4vYXV0aC8iPkF1dGhlbnRpY2F0aW9uIGFuZCBBdXRob3JpemF0aW9uPC9hPgomcnNhcXVvOyBVc2Vycwo8L2Rpdj4KCiAgICAKCiAgICAKICAgICAgICAKICAgIAoKICAgIDwhLS0gQ29udGVudCAtLT4KICAgIDxkaXYgaWQ9ImNvbnRlbnQiIGNsYXNzPSJmbGV4Ij4KICAgICAgICAKICAgICAgICA8aDE+U2VsZWN0IHVzZXIgdG8gY2hhbmdlPC9oMT4KICAgICAgICAKICA8ZGl2IGlkPSJjb250ZW50LW1haW4iPgogICAgCiAgICAgICAgPHVsIGNsYXNzPSJvYmplY3QtdG9vbHMiPgogICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICA8bGk+CiAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci9hZGQvIiBjbGFzcz0iYWRkbGluayI+CiAgICAgICAgICAgICAgICBBZGQgdXNlcgogICAgICAgICAgICAgIDwvYT4KICAgICAgICAgICAgPC9saT4KICAgICAgICAgICAgCiAgICAgICAgICAKICAgICAgICA8L3VsPgogICAgCiAgICAKICAgIDxkaXYgY2xhc3M9Im1vZHVsZSBmaWx0ZXJlZCIgaWQ9ImNoYW5nZWxpc3QiPgogICAgICAKCjxkaXYgaWQ9InRvb2xiYXIiPjxmb3JtIGlkPSJjaGFuZ2VsaXN0LXNlYXJjaCIgbWV0aG9kPSJnZXQiPgo8ZGl2PjwhLS0gRElWIG5lZWRlZCBmb3IgdmFsaWQgSFRNTCAtLT4KPGxhYmVsIGZvcj0ic2VhcmNoYmFyIj48aW1nIHNyYz0iL2Fzc2V0cy9hZG1pbi9pbWcvc2VhcmNoLnN2ZyIgYWx0PSJTZWFyY2giIC8+PC9sYWJlbD4KPGlucHV0IHR5cGU9InRleHQiIHNpemU9IjQwIiBuYW1lPSJxIiB2YWx1ZT0iIiBpZD0ic2VhcmNoYmFyIiBhdXRvZm9jdXMgLz4KPGlucHV0IHR5cGU9InN1Ym1pdCIgdmFsdWU9IlNlYXJjaCIgLz4KCgo8L2Rpdj4KPC9mb3JtPjwvZGl2PgoKCiAgICAgIAoKCiAgICAgIAogICAgICAgIAogICAgICAgICAgPGRpdiBpZD0iY2hhbmdlbGlzdC1maWx0ZXIiPgogICAgICAgICAgICA8aDI+RmlsdGVyPC9oMj4KICAgICAgICAgICAgCjxoMz4gQnkgc3RhZmYgc3RhdHVzIDwvaDM+Cjx1bD4KCiAgICA8bGkgY2xhc3M9InNlbGVjdGVkIj4KICAgIDxhIGhyZWY9Ij8iPkFsbDwvYT48L2xpPgoKICAgIDxsaT4KICAgIDxhIGhyZWY9Ij9pc19zdGFmZl9fZXhhY3Q9MSI+WWVzPC9hPjwvbGk+CgogICAgPGxpPgogICAgPGEgaHJlZj0iP2lzX3N0YWZmX19leGFjdD0wIj5ObzwvYT48L2xpPgoKPC91bD4KCjxoMz4gQnkgc3VwZXJ1c2VyIHN0YXR1cyA8L2gzPgo8dWw+CgogICAgPGxpIGNsYXNzPSJzZWxlY3RlZCI+CiAgICA8YSBocmVmPSI/Ij5BbGw8L2E+PC9saT4KCiAgICA8bGk+CiAgICA8YSBocmVmPSI/aXNfc3VwZXJ1c2VyX19leGFjdD0xIj5ZZXM8L2E+PC9saT4KCiAgICA8bGk+CiAgICA8YSBocmVmPSI/aXNfc3VwZXJ1c2VyX19leGFjdD0wIj5ObzwvYT48L2xpPgoKPC91bD4KCjxoMz4gQnkgYWN0aXZlIDwvaDM+Cjx1bD4KCiAgICA8bGkgY2xhc3M9InNlbGVjdGVkIj4KICAgIDxhIGhyZWY9Ij8iPkFsbDwvYT48L2xpPgoKICAgIDxsaT4KICAgIDxhIGhyZWY9Ij9pc19hY3RpdmVfX2V4YWN0PTEiPlllczwvYT48L2xpPgoKICAgIDxsaT4KICAgIDxhIGhyZWY9Ij9pc19hY3RpdmVfX2V4YWN0PTAiPk5vPC9hPjwvbGk+Cgo8L3VsPgoKICAgICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAKCiAgICAgIDxmb3JtIGlkPSJjaGFuZ2VsaXN0LWZvcm0iIG1ldGhvZD0icG9zdCIgbm92YWxpZGF0ZT48aW5wdXQgdHlwZT0naGlkZGVuJyBuYW1lPSdjc3JmbWlkZGxld2FyZXRva2VuJyB2YWx1ZT0nd2hoeGdXS0pBZ3ZUb0lQQW1jU2F6NWIzSFFBUEplU1ZWbm9tc3NDRW5kR2lMUVIyNURuQ3JNU05GTEdFM2VPSycgLz4KICAgICAgCgogICAgICAKICAgICAgICAgIAo8ZGl2IGNsYXNzPSJhY3Rpb25zIj4KICAgIDxsYWJlbD5BY3Rpb246IDxzZWxlY3QgbmFtZT0iYWN0aW9uIiByZXF1aXJlZD4KPG9wdGlvbiB2YWx1ZT0iIiBzZWxlY3RlZD0ic2VsZWN0ZWQiPi0tLS0tLS0tLTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSJkZWxldGVfc2VsZWN0ZWQiPkRlbGV0ZSBzZWxlY3RlZCB1c2Vyczwvb3B0aW9uPgo8L3NlbGVjdD48L2xhYmVsPjxpbnB1dCBjbGFzcz0ic2VsZWN0LWFjcm9zcyIgbmFtZT0ic2VsZWN0X2Fjcm9zcyIgdHlwZT0iaGlkZGVuIiB2YWx1ZT0iMCIgLz4KICAgIDxidXR0b24gdHlwZT0ic3VibWl0IiBjbGFzcz0iYnV0dG9uIiB0aXRsZT0iUnVuIHRoZSBzZWxlY3RlZCBhY3Rpb24iIG5hbWU9ImluZGV4IiB2YWx1ZT0iMCI+R288L2J1dHRvbj4KICAgIAogICAgICAgIDxzcGFuIGNsYXNzPSJhY3Rpb24tY291bnRlciIgZGF0YS1hY3Rpb25zLWljbnQ9IjEiPjAgb2YgMSBzZWxlY3RlZDwvc3Bhbj4KICAgICAgICAKICAgIAo8L2Rpdj4KCiAgICAgICAgICAKCgo8ZGl2IGNsYXNzPSJyZXN1bHRzIj4KPHRhYmxlIGlkPSJyZXN1bHRfbGlzdCI+Cjx0aGVhZD4KPHRyPgoKPHRoIHNjb3BlPSJjb2wiICBjbGFzcz0iYWN0aW9uLWNoZWNrYm94LWNvbHVtbiI+CiAgIAogICA8ZGl2IGNsYXNzPSJ0ZXh0Ij48c3Bhbj48aW5wdXQgdHlwZT0iY2hlY2tib3giIGlkPSJhY3Rpb24tdG9nZ2xlIiAvPjwvc3Bhbj48L2Rpdj4KICAgPGRpdiBjbGFzcz0iY2xlYXIiPjwvZGl2Pgo8L3RoPgo8dGggc2NvcGU9ImNvbCIgIGNsYXNzPSJzb3J0YWJsZSBjb2x1bW4tdXNlcm5hbWUgc29ydGVkIGFzY2VuZGluZyI+CiAgIAogICAgIAogICAgICAgPGRpdiBjbGFzcz0ic29ydG9wdGlvbnMiPgogICAgICAgICA8YSBjbGFzcz0ic29ydHJlbW92ZSIgaHJlZj0iP289IiB0aXRsZT0iUmVtb3ZlIGZyb20gc29ydGluZyI+PC9hPgogICAgICAgICAKICAgICAgICAgPGEgaHJlZj0iP289LTEiIGNsYXNzPSJ0b2dnbGUgYXNjZW5kaW5nIiB0aXRsZT0iVG9nZ2xlIHNvcnRpbmciPjwvYT4KICAgICAgIDwvZGl2PgogICAgIAogICAKICAgPGRpdiBjbGFzcz0idGV4dCI+PGEgaHJlZj0iP289LTEiPlVzZXJuYW1lPC9hPjwvZGl2PgogICA8ZGl2IGNsYXNzPSJjbGVhciI+PC9kaXY+CjwvdGg+Cjx0aCBzY29wZT0iY29sIiAgY2xhc3M9InNvcnRhYmxlIGNvbHVtbi1lbWFpbCI+CiAgIAogICAgIAogICAKICAgPGRpdiBjbGFzcz0idGV4dCI+PGEgaHJlZj0iP289Mi4xIj5FbWFpbCBhZGRyZXNzPC9hPjwvZGl2PgogICA8ZGl2IGNsYXNzPSJjbGVhciI+PC9kaXY+CjwvdGg+Cjx0aCBzY29wZT0iY29sIiAgY2xhc3M9InNvcnRhYmxlIGNvbHVtbi1maXJzdF9uYW1lIj4KICAgCiAgICAgCiAgIAogICA8ZGl2IGNsYXNzPSJ0ZXh0Ij48YSBocmVmPSI/bz0zLjEiPkZpcnN0IG5hbWU8L2E+PC9kaXY+CiAgIDxkaXYgY2xhc3M9ImNsZWFyIj48L2Rpdj4KPC90aD4KPHRoIHNjb3BlPSJjb2wiICBjbGFzcz0ic29ydGFibGUgY29sdW1uLWxhc3RfbmFtZSI+CiAgIAogICAgIAogICAKICAgPGRpdiBjbGFzcz0idGV4dCI+PGEgaHJlZj0iP289NC4xIj5MYXN0IG5hbWU8L2E+PC9kaXY+CiAgIDxkaXYgY2xhc3M9ImNsZWFyIj48L2Rpdj4KPC90aD4KPHRoIHNjb3BlPSJjb2wiICBjbGFzcz0ic29ydGFibGUgY29sdW1uLWlzX3N0YWZmIj4KICAgCiAgICAgCiAgIAogICA8ZGl2IGNsYXNzPSJ0ZXh0Ij48YSBocmVmPSI/bz01LjEiPlN0YWZmIHN0YXR1czwvYT48L2Rpdj4KICAgPGRpdiBjbGFzcz0iY2xlYXIiPjwvZGl2Pgo8L3RoPgo8L3RyPgo8L3RoZWFkPgo8dGJvZHk+CgoKPHRyIGNsYXNzPSJyb3cxIj48dGQgY2xhc3M9ImFjdGlvbi1jaGVja2JveCI+PGlucHV0IGNsYXNzPSJhY3Rpb24tc2VsZWN0IiBuYW1lPSJfc2VsZWN0ZWRfYWN0aW9uIiB0eXBlPSJjaGVja2JveCIgdmFsdWU9IjEiIC8+PC90ZD48dGggY2xhc3M9ImZpZWxkLXVzZXJuYW1lIj48YSBocmVmPSIvYWRtaW4vYXV0aC91c2VyLzEvY2hhbmdlLyI+a2FwZTwvYT48L3RoPjx0ZCBjbGFzcz0iZmllbGQtZW1haWwiPmthcGVAa2FwZS5jb208L3RkPjx0ZCBjbGFzcz0iZmllbGQtZmlyc3RfbmFtZSI+Jm5ic3A7PC90ZD48dGQgY2xhc3M9ImZpZWxkLWxhc3RfbmFtZSI+Jm5ic3A7PC90ZD48dGQgY2xhc3M9ImZpZWxkLWlzX3N0YWZmIj48aW1nIHNyYz0iL2Fzc2V0cy9hZG1pbi9pbWcvaWNvbi15ZXMuc3ZnIiBhbHQ9IlRydWUiIC8+PC90ZD48L3RyPgoKPC90Ym9keT4KPC90YWJsZT4KPC9kaXY+CgoKICAgICAgICAgIAogICAgICAKICAgICAgCgo8cCBjbGFzcz0icGFnaW5hdG9yIj4KCjEgdXNlcgoKCjwvcD4KCiAgICAgIDwvZm9ybT4KICAgIDwvZGl2PgogIDwvZGl2PgoKICAgICAgICAKICAgICAgICA8YnIgY2xhc3M9ImNsZWFyIiAvPgogICAgPC9kaXY+CiAgICA8IS0tIEVORCBDb250ZW50IC0tPgoKICAgIDxkaXYgaWQ9ImZvb3RlciI+PC9kaXY+CjwvZGl2Pgo8IS0tIEVORCBDb250YWluZXIgLS0+Cgo8L2JvZHk+CjwvaHRtbD4K", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 14:52:11 GMT\", \"Expires\": \"Mon, 27 Mar 2017 14:52:11 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "d4bbd9ee-ad2b-403d-bf05-0bc323ec3c83", - "fields": { - "request": "625261fb-6804-4015-921a-8bb0939d0bb9", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "d546b4d3-1cfd-488a-b0aa-792847e0c83c", - "fields": { - "request": "11e7ad7f-c557-4fe0-9a0a-a7a34df52992", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "d717723b-4896-418a-bba3-554a1e1e3d07", - "fields": { - "request": "ee6bc742-b098-4527-b8c0-23afb7406905", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPkFkZCBjb21wYW55IHwgRGphbmdvIHNpdGUgYWRtaW48L3RpdGxlPgo8bGluayByZWw9InN0eWxlc2hlZXQiIHR5cGU9InRleHQvY3NzIiBocmVmPSIvYXNzZXRzL2FkbWluL2Nzcy9iYXNlLmNzcyIgLz4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvZm9ybXMuY3NzIiAvPgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9jb3JlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IvanF1ZXJ5L2pxdWVyeS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvanF1ZXJ5LmluaXQuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2FkbWluL1JlbGF0ZWRPYmplY3RMb29rdXBzLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hY3Rpb25zLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy91cmxpZnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL3ByZXBvcHVsYXRlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IveHJlZ2V4cC94cmVnZXhwLmpzIj48L3NjcmlwdD4KCjxtZXRhIG5hbWU9InJvYm90cyIgY29udGVudD0iTk9ORSxOT0FSQ0hJVkUiIC8+CjwvaGVhZD4KCgo8Ym9keSBjbGFzcz0iIGFwcC1jb3JlIG1vZGVsLWNvbXBhbnkgY2hhbmdlLWZvcm0iCiAgZGF0YS1hZG1pbi11dGMtb2Zmc2V0PSIwIj4KCjwhLS0gQ29udGFpbmVyIC0tPgo8ZGl2IGlkPSJjb250YWluZXIiPgoKICAgIAogICAgPCEtLSBIZWFkZXIgLS0+CiAgICA8ZGl2IGlkPSJoZWFkZXIiPgogICAgICAgIDxkaXYgaWQ9ImJyYW5kaW5nIj4KICAgICAgICAKPGgxIGlkPSJzaXRlLW5hbWUiPjxhIGhyZWY9Ii9hZG1pbi8iPkRqYW5nbyBhZG1pbmlzdHJhdGlvbjwvYT48L2gxPgoKICAgICAgICA8L2Rpdj4KICAgICAgICAKICAgICAgICAKICAgICAgICA8ZGl2IGlkPSJ1c2VyLXRvb2xzIj4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICBXZWxjb21lLAogICAgICAgICAgICAgICAgPHN0cm9uZz5rYXBlPC9zdHJvbmc+LgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvIj5WaWV3IHNpdGU8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL3Bhc3N3b3JkX2NoYW5nZS8iPkNoYW5nZSBwYXNzd29yZDwvYT4gLwogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vbG9nb3V0LyI+TG9nIG91dDwvYT4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgCiAgICA8L2Rpdj4KICAgIDwhLS0gRU5EIEhlYWRlciAtLT4KICAgIAo8ZGl2IGNsYXNzPSJicmVhZGNydW1icyI+CjxhIGhyZWY9Ii9hZG1pbi8iPkhvbWU8L2E+CiZyc2FxdW87IDxhIGhyZWY9Ii9hZG1pbi9jb3JlLyI+Q29yZTwvYT4KJnJzYXF1bzsgPGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8iPkNvbXBhbnlzPC9hPgomcnNhcXVvOyBBZGQgY29tcGFueQo8L2Rpdj4KCiAgICAKCiAgICAKICAgICAgICAKICAgIAoKICAgIDwhLS0gQ29udGVudCAtLT4KICAgIDxkaXYgaWQ9ImNvbnRlbnQiIGNsYXNzPSJjb2xNIj4KICAgICAgICAKICAgICAgICA8aDE+QWRkIGNvbXBhbnk8L2gxPgogICAgICAgIDxkaXYgaWQ9ImNvbnRlbnQtbWFpbiI+CgoKCjxmb3JtIGVuY3R5cGU9Im11bHRpcGFydC9mb3JtLWRhdGEiIGFjdGlvbj0iIiBtZXRob2Q9InBvc3QiIGlkPSJjb21wYW55X2Zvcm0iIG5vdmFsaWRhdGU+PGlucHV0IHR5cGU9J2hpZGRlbicgbmFtZT0nY3NyZm1pZGRsZXdhcmV0b2tlbicgdmFsdWU9J2J4b3lZTzZzY2M2UGVQdFR4STZxUjhmdm0xb0I1MWkxQUR2bmFrWW5aOWhlQlh2bGc5QlNKUFdma1d1cXAxZVEnIC8+CjxkaXY+CgoKCgoKCgogIDxmaWVsZHNldCBjbGFzcz0ibW9kdWxlIGFsaWduZWQgIj4KICAgIAogICAgCiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC11c2VyIj4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGRpdj4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPGxhYmVsIGNsYXNzPSJyZXF1aXJlZCIgZm9yPSJpZF91c2VyIj5Vc2VyOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgCjxkaXYgY2xhc3M9InJlbGF0ZWQtd2lkZ2V0LXdyYXBwZXIiPgogICAgPHNlbGVjdCBpZD0iaWRfdXNlciIgbmFtZT0idXNlciIgcmVxdWlyZWQ+CjxvcHRpb24gdmFsdWU9IiIgc2VsZWN0ZWQ9InNlbGVjdGVkIj4tLS0tLS0tLS08L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMiI+ZmFyaGFuPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjMiPmZhcmhhbmNvcnA8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iNCI+ZmFyaGFuc3VwZXI8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMSI+a2FwZTwvb3B0aW9uPgo8L3NlbGVjdD4KICAgIAogICAgICAgIAogICAgICAgIDxhIGNsYXNzPSJyZWxhdGVkLXdpZGdldC13cmFwcGVyLWxpbmsgY2hhbmdlLXJlbGF0ZWQiIGlkPSJjaGFuZ2VfaWRfdXNlciIKICAgICAgICAgICAgZGF0YS1ocmVmLXRlbXBsYXRlPSIvYWRtaW4vYXV0aC91c2VyL19fZmtfXy9jaGFuZ2UvP190b19maWVsZD1pZCZhbXA7X3BvcHVwPTEiCiAgICAgICAgICAgIHRpdGxlPSJDaGFuZ2Ugc2VsZWN0ZWQgdXNlciI+CiAgICAgICAgICAgIDxpbWcgc3JjPSIvYXNzZXRzL2FkbWluL2ltZy9pY29uLWNoYW5nZWxpbmsuc3ZnIiBhbHQ9IkNoYW5nZSIvPgogICAgICAgIDwvYT4KICAgICAgICAKICAgICAgICAKICAgICAgICA8YSBjbGFzcz0icmVsYXRlZC13aWRnZXQtd3JhcHBlci1saW5rIGFkZC1yZWxhdGVkIiBpZD0iYWRkX2lkX3VzZXIiCiAgICAgICAgICAgIGhyZWY9Ii9hZG1pbi9hdXRoL3VzZXIvYWRkLz9fdG9fZmllbGQ9aWQmYW1wO19wb3B1cD0xIgogICAgICAgICAgICB0aXRsZT0iQWRkIGFub3RoZXIgdXNlciI+CiAgICAgICAgICAgIDxpbWcgc3JjPSIvYXNzZXRzL2FkbWluL2ltZy9pY29uLWFkZGxpbmsuc3ZnIiBhbHQ9IkFkZCIvPgogICAgICAgIDwvYT4KICAgICAgICAKICAgICAgICAKICAgIAo8L2Rpdj4KCiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPC9kaXY+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgCiAgICAgICAgPGRpdiBjbGFzcz0iZm9ybS1yb3cgZmllbGQtZGVzY3JpcHRpb24iPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgY2xhc3M9InJlcXVpcmVkIiBmb3I9ImlkX2Rlc2NyaXB0aW9uIj5EZXNjcmlwdGlvbjo8L2xhYmVsPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0ZXh0YXJlYSBjbGFzcz0idkxhcmdlVGV4dEZpZWxkIiBjb2xzPSI0MCIgaWQ9ImlkX2Rlc2NyaXB0aW9uIiBuYW1lPSJkZXNjcmlwdGlvbiIgcm93cz0iMTAiIHJlcXVpcmVkPg0KPC90ZXh0YXJlYT4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC12ZXJpZmllZCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9ImNoZWNrYm94LXJvdyI+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxpbnB1dCBpZD0iaWRfdmVyaWZpZWQiIG5hbWU9InZlcmlmaWVkIiB0eXBlPSJjaGVja2JveCIgLz48bGFiZWwgY2xhc3M9InZDaGVja2JveExhYmVsIiBmb3I9ImlkX3ZlcmlmaWVkIj5WZXJpZmllZDwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKPC9maWVsZHNldD4KCgoKCgoKCgoKCgoKCjxkaXYgY2xhc3M9InN1Ym1pdC1yb3ciPgo8aW5wdXQgdHlwZT0ic3VibWl0IiB2YWx1ZT0iU2F2ZSIgY2xhc3M9ImRlZmF1bHQiIG5hbWU9Il9zYXZlIiAvPgoKCjxpbnB1dCB0eXBlPSJzdWJtaXQiIHZhbHVlPSJTYXZlIGFuZCBhZGQgYW5vdGhlciIgbmFtZT0iX2FkZGFub3RoZXIiIC8+CjxpbnB1dCB0eXBlPSJzdWJtaXQiIHZhbHVlPSJTYXZlIGFuZCBjb250aW51ZSBlZGl0aW5nIiBuYW1lPSJfY29udGludWUiIC8+CjwvZGl2PgoKCgogICAgPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiCiAgICAgICAgICAgIGlkPSJkamFuZ28tYWRtaW4tZm9ybS1hZGQtY29uc3RhbnRzIgogICAgICAgICAgICBzcmM9Ii9hc3NldHMvYWRtaW4vanMvY2hhbmdlX2Zvcm0uanMiCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgZGF0YS1tb2RlbC1uYW1lPSJjb21wYW55IgogICAgICAgICAgICA+CiAgICA8L3NjcmlwdD4KCgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IgogICAgICAgIGlkPSJkamFuZ28tYWRtaW4tcHJlcG9wdWxhdGVkLWZpZWxkcy1jb25zdGFudHMiCiAgICAgICAgc3JjPSIvYXNzZXRzL2FkbWluL2pzL3ByZXBvcHVsYXRlX2luaXQuanMiCiAgICAgICAgZGF0YS1wcmVwb3B1bGF0ZWQtZmllbGRzPSJbXSI+Cjwvc2NyaXB0PgoKCjwvZGl2Pgo8L2Zvcm0+PC9kaXY+CgogICAgICAgIAogICAgICAgIDxiciBjbGFzcz0iY2xlYXIiIC8+CiAgICA8L2Rpdj4KICAgIDwhLS0gRU5EIENvbnRlbnQgLS0+CgogICAgPGRpdiBpZD0iZm9vdGVyIj48L2Rpdj4KPC9kaXY+CjwhLS0gRU5EIENvbnRhaW5lciAtLT4KCjwvYm9keT4KPC9odG1sPgo=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 14:55:29 GMT\", \"Expires\": \"Mon, 27 Mar 2017 14:55:29 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "d8659a58-ba23-41db-970f-e7df3597ca3b", - "fields": { - "request": "b4fd231c-1a2c-462a-a913-40ea6dc5b632", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPlNlbGVjdCB1c2VyIHRvIGNoYW5nZSB8IERqYW5nbyBzaXRlIGFkbWluPC90aXRsZT4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvYmFzZS5jc3MiIC8+CgogIAogIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvYWRtaW4vY3NzL2NoYW5nZWxpc3RzLmNzcyIgLz4KICAKICAKICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KICAKICAKICAKCgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvY29yZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL2pxdWVyeS9qcXVlcnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2pxdWVyeS5pbml0LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hZG1pbi9SZWxhdGVkT2JqZWN0TG9va3Vwcy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvYWN0aW9ucy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdXJsaWZ5LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9wcmVwb3B1bGF0ZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL3hyZWdleHAveHJlZ2V4cC5qcyI+PC9zY3JpcHQ+Cgo8bWV0YSBuYW1lPSJyb2JvdHMiIGNvbnRlbnQ9Ik5PTkUsTk9BUkNISVZFIiAvPgo8L2hlYWQ+CgoKPGJvZHkgY2xhc3M9IiBhcHAtYXV0aCBtb2RlbC11c2VyIGNoYW5nZS1saXN0IgogIGRhdGEtYWRtaW4tdXRjLW9mZnNldD0iMCI+Cgo8IS0tIENvbnRhaW5lciAtLT4KPGRpdiBpZD0iY29udGFpbmVyIj4KCiAgICAKICAgIDwhLS0gSGVhZGVyIC0tPgogICAgPGRpdiBpZD0iaGVhZGVyIj4KICAgICAgICA8ZGl2IGlkPSJicmFuZGluZyI+CiAgICAgICAgCjxoMSBpZD0ic2l0ZS1uYW1lIj48YSBocmVmPSIvYWRtaW4vIj5EamFuZ28gYWRtaW5pc3RyYXRpb248L2E+PC9oMT4KCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgPGRpdiBpZD0idXNlci10b29scyI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgV2VsY29tZSwKICAgICAgICAgICAgICAgIDxzdHJvbmc+a2FwZTwvc3Ryb25nPi4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iLyI+VmlldyBzaXRlPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9wYXNzd29yZF9jaGFuZ2UvIj5DaGFuZ2UgcGFzc3dvcmQ8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2xvZ291dC8iPkxvZyBvdXQ8L2E+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIAogICAgPC9kaXY+CiAgICA8IS0tIEVORCBIZWFkZXIgLS0+CiAgICAKPGRpdiBjbGFzcz0iYnJlYWRjcnVtYnMiPgo8YSBocmVmPSIvYWRtaW4vIj5Ib21lPC9hPgomcnNhcXVvOyA8YSBocmVmPSIvYWRtaW4vYXV0aC8iPkF1dGhlbnRpY2F0aW9uIGFuZCBBdXRob3JpemF0aW9uPC9hPgomcnNhcXVvOyBVc2Vycwo8L2Rpdj4KCiAgICAKCiAgICAKICAgICAgICAKICAgIAoKICAgIDwhLS0gQ29udGVudCAtLT4KICAgIDxkaXYgaWQ9ImNvbnRlbnQiIGNsYXNzPSJmbGV4Ij4KICAgICAgICAKICAgICAgICA8aDE+U2VsZWN0IHVzZXIgdG8gY2hhbmdlPC9oMT4KICAgICAgICAKICA8ZGl2IGlkPSJjb250ZW50LW1haW4iPgogICAgCiAgICAgICAgPHVsIGNsYXNzPSJvYmplY3QtdG9vbHMiPgogICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICA8bGk+CiAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci9hZGQvIiBjbGFzcz0iYWRkbGluayI+CiAgICAgICAgICAgICAgICBBZGQgdXNlcgogICAgICAgICAgICAgIDwvYT4KICAgICAgICAgICAgPC9saT4KICAgICAgICAgICAgCiAgICAgICAgICAKICAgICAgICA8L3VsPgogICAgCiAgICAKICAgIDxkaXYgY2xhc3M9Im1vZHVsZSBmaWx0ZXJlZCIgaWQ9ImNoYW5nZWxpc3QiPgogICAgICAKCjxkaXYgaWQ9InRvb2xiYXIiPjxmb3JtIGlkPSJjaGFuZ2VsaXN0LXNlYXJjaCIgbWV0aG9kPSJnZXQiPgo8ZGl2PjwhLS0gRElWIG5lZWRlZCBmb3IgdmFsaWQgSFRNTCAtLT4KPGxhYmVsIGZvcj0ic2VhcmNoYmFyIj48aW1nIHNyYz0iL2Fzc2V0cy9hZG1pbi9pbWcvc2VhcmNoLnN2ZyIgYWx0PSJTZWFyY2giIC8+PC9sYWJlbD4KPGlucHV0IHR5cGU9InRleHQiIHNpemU9IjQwIiBuYW1lPSJxIiB2YWx1ZT0iIiBpZD0ic2VhcmNoYmFyIiBhdXRvZm9jdXMgLz4KPGlucHV0IHR5cGU9InN1Ym1pdCIgdmFsdWU9IlNlYXJjaCIgLz4KCgo8L2Rpdj4KPC9mb3JtPjwvZGl2PgoKCiAgICAgIAoKCiAgICAgIAogICAgICAgIAogICAgICAgICAgPGRpdiBpZD0iY2hhbmdlbGlzdC1maWx0ZXIiPgogICAgICAgICAgICA8aDI+RmlsdGVyPC9oMj4KICAgICAgICAgICAgCjxoMz4gQnkgc3RhZmYgc3RhdHVzIDwvaDM+Cjx1bD4KCiAgICA8bGkgY2xhc3M9InNlbGVjdGVkIj4KICAgIDxhIGhyZWY9Ij8iPkFsbDwvYT48L2xpPgoKICAgIDxsaT4KICAgIDxhIGhyZWY9Ij9pc19zdGFmZl9fZXhhY3Q9MSI+WWVzPC9hPjwvbGk+CgogICAgPGxpPgogICAgPGEgaHJlZj0iP2lzX3N0YWZmX19leGFjdD0wIj5ObzwvYT48L2xpPgoKPC91bD4KCjxoMz4gQnkgc3VwZXJ1c2VyIHN0YXR1cyA8L2gzPgo8dWw+CgogICAgPGxpIGNsYXNzPSJzZWxlY3RlZCI+CiAgICA8YSBocmVmPSI/Ij5BbGw8L2E+PC9saT4KCiAgICA8bGk+CiAgICA8YSBocmVmPSI/aXNfc3VwZXJ1c2VyX19leGFjdD0xIj5ZZXM8L2E+PC9saT4KCiAgICA8bGk+CiAgICA8YSBocmVmPSI/aXNfc3VwZXJ1c2VyX19leGFjdD0wIj5ObzwvYT48L2xpPgoKPC91bD4KCjxoMz4gQnkgYWN0aXZlIDwvaDM+Cjx1bD4KCiAgICA8bGkgY2xhc3M9InNlbGVjdGVkIj4KICAgIDxhIGhyZWY9Ij8iPkFsbDwvYT48L2xpPgoKICAgIDxsaT4KICAgIDxhIGhyZWY9Ij9pc19hY3RpdmVfX2V4YWN0PTEiPlllczwvYT48L2xpPgoKICAgIDxsaT4KICAgIDxhIGhyZWY9Ij9pc19hY3RpdmVfX2V4YWN0PTAiPk5vPC9hPjwvbGk+Cgo8L3VsPgoKICAgICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAKCiAgICAgIDxmb3JtIGlkPSJjaGFuZ2VsaXN0LWZvcm0iIG1ldGhvZD0icG9zdCIgbm92YWxpZGF0ZT48aW5wdXQgdHlwZT0naGlkZGVuJyBuYW1lPSdjc3JmbWlkZGxld2FyZXRva2VuJyB2YWx1ZT0ndWlzSjVxeFI2d0g5RnEzaVBBeFdEWkk3RmVoMjFkVzJUb3p5aFdwTVR0U3kyeTVLeTEyb3ZHcFJEOW5SbGRTUicgLz4KICAgICAgCgogICAgICAKICAgICAgICAgIAo8ZGl2IGNsYXNzPSJhY3Rpb25zIj4KICAgIDxsYWJlbD5BY3Rpb246IDxzZWxlY3QgbmFtZT0iYWN0aW9uIiByZXF1aXJlZD4KPG9wdGlvbiB2YWx1ZT0iIiBzZWxlY3RlZD0ic2VsZWN0ZWQiPi0tLS0tLS0tLTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSJkZWxldGVfc2VsZWN0ZWQiPkRlbGV0ZSBzZWxlY3RlZCB1c2Vyczwvb3B0aW9uPgo8L3NlbGVjdD48L2xhYmVsPjxpbnB1dCBjbGFzcz0ic2VsZWN0LWFjcm9zcyIgbmFtZT0ic2VsZWN0X2Fjcm9zcyIgdHlwZT0iaGlkZGVuIiB2YWx1ZT0iMCIgLz4KICAgIDxidXR0b24gdHlwZT0ic3VibWl0IiBjbGFzcz0iYnV0dG9uIiB0aXRsZT0iUnVuIHRoZSBzZWxlY3RlZCBhY3Rpb24iIG5hbWU9ImluZGV4IiB2YWx1ZT0iMCI+R288L2J1dHRvbj4KICAgIAogICAgICAgIDxzcGFuIGNsYXNzPSJhY3Rpb24tY291bnRlciIgZGF0YS1hY3Rpb25zLWljbnQ9IjQiPjAgb2YgNCBzZWxlY3RlZDwvc3Bhbj4KICAgICAgICAKICAgIAo8L2Rpdj4KCiAgICAgICAgICAKCgo8ZGl2IGNsYXNzPSJyZXN1bHRzIj4KPHRhYmxlIGlkPSJyZXN1bHRfbGlzdCI+Cjx0aGVhZD4KPHRyPgoKPHRoIHNjb3BlPSJjb2wiICBjbGFzcz0iYWN0aW9uLWNoZWNrYm94LWNvbHVtbiI+CiAgIAogICA8ZGl2IGNsYXNzPSJ0ZXh0Ij48c3Bhbj48aW5wdXQgdHlwZT0iY2hlY2tib3giIGlkPSJhY3Rpb24tdG9nZ2xlIiAvPjwvc3Bhbj48L2Rpdj4KICAgPGRpdiBjbGFzcz0iY2xlYXIiPjwvZGl2Pgo8L3RoPgo8dGggc2NvcGU9ImNvbCIgIGNsYXNzPSJzb3J0YWJsZSBjb2x1bW4tdXNlcm5hbWUgc29ydGVkIGFzY2VuZGluZyI+CiAgIAogICAgIAogICAgICAgPGRpdiBjbGFzcz0ic29ydG9wdGlvbnMiPgogICAgICAgICA8YSBjbGFzcz0ic29ydHJlbW92ZSIgaHJlZj0iP289IiB0aXRsZT0iUmVtb3ZlIGZyb20gc29ydGluZyI+PC9hPgogICAgICAgICAKICAgICAgICAgPGEgaHJlZj0iP289LTEiIGNsYXNzPSJ0b2dnbGUgYXNjZW5kaW5nIiB0aXRsZT0iVG9nZ2xlIHNvcnRpbmciPjwvYT4KICAgICAgIDwvZGl2PgogICAgIAogICAKICAgPGRpdiBjbGFzcz0idGV4dCI+PGEgaHJlZj0iP289LTEiPlVzZXJuYW1lPC9hPjwvZGl2PgogICA8ZGl2IGNsYXNzPSJjbGVhciI+PC9kaXY+CjwvdGg+Cjx0aCBzY29wZT0iY29sIiAgY2xhc3M9InNvcnRhYmxlIGNvbHVtbi1lbWFpbCI+CiAgIAogICAgIAogICAKICAgPGRpdiBjbGFzcz0idGV4dCI+PGEgaHJlZj0iP289Mi4xIj5FbWFpbCBhZGRyZXNzPC9hPjwvZGl2PgogICA8ZGl2IGNsYXNzPSJjbGVhciI+PC9kaXY+CjwvdGg+Cjx0aCBzY29wZT0iY29sIiAgY2xhc3M9InNvcnRhYmxlIGNvbHVtbi1maXJzdF9uYW1lIj4KICAgCiAgICAgCiAgIAogICA8ZGl2IGNsYXNzPSJ0ZXh0Ij48YSBocmVmPSI/bz0zLjEiPkZpcnN0IG5hbWU8L2E+PC9kaXY+CiAgIDxkaXYgY2xhc3M9ImNsZWFyIj48L2Rpdj4KPC90aD4KPHRoIHNjb3BlPSJjb2wiICBjbGFzcz0ic29ydGFibGUgY29sdW1uLWxhc3RfbmFtZSI+CiAgIAogICAgIAogICAKICAgPGRpdiBjbGFzcz0idGV4dCI+PGEgaHJlZj0iP289NC4xIj5MYXN0IG5hbWU8L2E+PC9kaXY+CiAgIDxkaXYgY2xhc3M9ImNsZWFyIj48L2Rpdj4KPC90aD4KPHRoIHNjb3BlPSJjb2wiICBjbGFzcz0ic29ydGFibGUgY29sdW1uLWlzX3N0YWZmIj4KICAgCiAgICAgCiAgIAogICA8ZGl2IGNsYXNzPSJ0ZXh0Ij48YSBocmVmPSI/bz01LjEiPlN0YWZmIHN0YXR1czwvYT48L2Rpdj4KICAgPGRpdiBjbGFzcz0iY2xlYXIiPjwvZGl2Pgo8L3RoPgo8L3RyPgo8L3RoZWFkPgo8dGJvZHk+CgoKPHRyIGNsYXNzPSJyb3cxIj48dGQgY2xhc3M9ImFjdGlvbi1jaGVja2JveCI+PGlucHV0IGNsYXNzPSJhY3Rpb24tc2VsZWN0IiBuYW1lPSJfc2VsZWN0ZWRfYWN0aW9uIiB0eXBlPSJjaGVja2JveCIgdmFsdWU9IjIiIC8+PC90ZD48dGggY2xhc3M9ImZpZWxkLXVzZXJuYW1lIj48YSBocmVmPSIvYWRtaW4vYXV0aC91c2VyLzIvY2hhbmdlLyI+ZmFyaGFuPC9hPjwvdGg+PHRkIGNsYXNzPSJmaWVsZC1lbWFpbCI+Jm5ic3A7PC90ZD48dGQgY2xhc3M9ImZpZWxkLWZpcnN0X25hbWUiPiZuYnNwOzwvdGQ+PHRkIGNsYXNzPSJmaWVsZC1sYXN0X25hbWUiPiZuYnNwOzwvdGQ+PHRkIGNsYXNzPSJmaWVsZC1pc19zdGFmZiI+PGltZyBzcmM9Ii9hc3NldHMvYWRtaW4vaW1nL2ljb24tbm8uc3ZnIiBhbHQ9IkZhbHNlIiAvPjwvdGQ+PC90cj4KCgo8dHIgY2xhc3M9InJvdzIiPjx0ZCBjbGFzcz0iYWN0aW9uLWNoZWNrYm94Ij48aW5wdXQgY2xhc3M9ImFjdGlvbi1zZWxlY3QiIG5hbWU9Il9zZWxlY3RlZF9hY3Rpb24iIHR5cGU9ImNoZWNrYm94IiB2YWx1ZT0iMyIgLz48L3RkPjx0aCBjbGFzcz0iZmllbGQtdXNlcm5hbWUiPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL3VzZXIvMy9jaGFuZ2UvIj5mYXJoYW5jb3JwPC9hPjwvdGg+PHRkIGNsYXNzPSJmaWVsZC1lbWFpbCI+Jm5ic3A7PC90ZD48dGQgY2xhc3M9ImZpZWxkLWZpcnN0X25hbWUiPiZuYnNwOzwvdGQ+PHRkIGNsYXNzPSJmaWVsZC1sYXN0X25hbWUiPiZuYnNwOzwvdGQ+PHRkIGNsYXNzPSJmaWVsZC1pc19zdGFmZiI+PGltZyBzcmM9Ii9hc3NldHMvYWRtaW4vaW1nL2ljb24tbm8uc3ZnIiBhbHQ9IkZhbHNlIiAvPjwvdGQ+PC90cj4KCgo8dHIgY2xhc3M9InJvdzEiPjx0ZCBjbGFzcz0iYWN0aW9uLWNoZWNrYm94Ij48aW5wdXQgY2xhc3M9ImFjdGlvbi1zZWxlY3QiIG5hbWU9Il9zZWxlY3RlZF9hY3Rpb24iIHR5cGU9ImNoZWNrYm94IiB2YWx1ZT0iNCIgLz48L3RkPjx0aCBjbGFzcz0iZmllbGQtdXNlcm5hbWUiPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL3VzZXIvNC9jaGFuZ2UvIj5mYXJoYW5zdXBlcjwvYT48L3RoPjx0ZCBjbGFzcz0iZmllbGQtZW1haWwiPiZuYnNwOzwvdGQ+PHRkIGNsYXNzPSJmaWVsZC1maXJzdF9uYW1lIj4mbmJzcDs8L3RkPjx0ZCBjbGFzcz0iZmllbGQtbGFzdF9uYW1lIj4mbmJzcDs8L3RkPjx0ZCBjbGFzcz0iZmllbGQtaXNfc3RhZmYiPjxpbWcgc3JjPSIvYXNzZXRzL2FkbWluL2ltZy9pY29uLW5vLnN2ZyIgYWx0PSJGYWxzZSIgLz48L3RkPjwvdHI+CgoKPHRyIGNsYXNzPSJyb3cyIj48dGQgY2xhc3M9ImFjdGlvbi1jaGVja2JveCI+PGlucHV0IGNsYXNzPSJhY3Rpb24tc2VsZWN0IiBuYW1lPSJfc2VsZWN0ZWRfYWN0aW9uIiB0eXBlPSJjaGVja2JveCIgdmFsdWU9IjEiIC8+PC90ZD48dGggY2xhc3M9ImZpZWxkLXVzZXJuYW1lIj48YSBocmVmPSIvYWRtaW4vYXV0aC91c2VyLzEvY2hhbmdlLyI+a2FwZTwvYT48L3RoPjx0ZCBjbGFzcz0iZmllbGQtZW1haWwiPmthcGVAa2FwZS5jb208L3RkPjx0ZCBjbGFzcz0iZmllbGQtZmlyc3RfbmFtZSI+Jm5ic3A7PC90ZD48dGQgY2xhc3M9ImZpZWxkLWxhc3RfbmFtZSI+Jm5ic3A7PC90ZD48dGQgY2xhc3M9ImZpZWxkLWlzX3N0YWZmIj48aW1nIHNyYz0iL2Fzc2V0cy9hZG1pbi9pbWcvaWNvbi15ZXMuc3ZnIiBhbHQ9IlRydWUiIC8+PC90ZD48L3RyPgoKPC90Ym9keT4KPC90YWJsZT4KPC9kaXY+CgoKICAgICAgICAgIAogICAgICAKICAgICAgCgo8cCBjbGFzcz0icGFnaW5hdG9yIj4KCjQgdXNlcnMKCgo8L3A+CgogICAgICA8L2Zvcm0+CiAgICA8L2Rpdj4KICA8L2Rpdj4KCiAgICAgICAgCiAgICAgICAgPGJyIGNsYXNzPSJjbGVhciIgLz4KICAgIDwvZGl2PgogICAgPCEtLSBFTkQgQ29udGVudCAtLT4KCiAgICA8ZGl2IGlkPSJmb290ZXIiPjwvZGl2Pgo8L2Rpdj4KPCEtLSBFTkQgQ29udGFpbmVyIC0tPgoKPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 15:56:58 GMT\", \"Expires\": \"Mon, 27 Mar 2017 15:56:58 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "d9880577-283e-4e54-927c-738661095c05", - "fields": { - "request": "0449f26e-17b8-441a-b83f-65020ce67c9c", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "dcce0965-0681-492b-acdb-e598bb16a4ec", - "fields": { - "request": "23f41d67-a675-4ec1-8065-b6efed7133e7", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "dd155fbd-3142-4c1d-a9d8-571ece29dbb4", - "fields": { - "request": "e6b4aee5-58fc-4a26-9a04-49a066759e8c", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPlNlbGVjdCBjb21wYW55IHRvIGNoYW5nZSB8IERqYW5nbyBzaXRlIGFkbWluPC90aXRsZT4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvYmFzZS5jc3MiIC8+CgogIAogIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvYWRtaW4vY3NzL2NoYW5nZWxpc3RzLmNzcyIgLz4KICAKICAKICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KICAKICAKICAKCgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvY29yZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL2pxdWVyeS9qcXVlcnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2pxdWVyeS5pbml0LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hZG1pbi9SZWxhdGVkT2JqZWN0TG9va3Vwcy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvYWN0aW9ucy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdXJsaWZ5LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9wcmVwb3B1bGF0ZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL3hyZWdleHAveHJlZ2V4cC5qcyI+PC9zY3JpcHQ+Cgo8bWV0YSBuYW1lPSJyb2JvdHMiIGNvbnRlbnQ9Ik5PTkUsTk9BUkNISVZFIiAvPgo8L2hlYWQ+CgoKPGJvZHkgY2xhc3M9IiBhcHAtY29yZSBtb2RlbC1jb21wYW55IGNoYW5nZS1saXN0IgogIGRhdGEtYWRtaW4tdXRjLW9mZnNldD0iMCI+Cgo8IS0tIENvbnRhaW5lciAtLT4KPGRpdiBpZD0iY29udGFpbmVyIj4KCiAgICAKICAgIDwhLS0gSGVhZGVyIC0tPgogICAgPGRpdiBpZD0iaGVhZGVyIj4KICAgICAgICA8ZGl2IGlkPSJicmFuZGluZyI+CiAgICAgICAgCjxoMSBpZD0ic2l0ZS1uYW1lIj48YSBocmVmPSIvYWRtaW4vIj5EamFuZ28gYWRtaW5pc3RyYXRpb248L2E+PC9oMT4KCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgPGRpdiBpZD0idXNlci10b29scyI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgV2VsY29tZSwKICAgICAgICAgICAgICAgIDxzdHJvbmc+a2FwZTwvc3Ryb25nPi4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iLyI+VmlldyBzaXRlPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9wYXNzd29yZF9jaGFuZ2UvIj5DaGFuZ2UgcGFzc3dvcmQ8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2xvZ291dC8iPkxvZyBvdXQ8L2E+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIAogICAgPC9kaXY+CiAgICA8IS0tIEVORCBIZWFkZXIgLS0+CiAgICAKPGRpdiBjbGFzcz0iYnJlYWRjcnVtYnMiPgo8YSBocmVmPSIvYWRtaW4vIj5Ib21lPC9hPgomcnNhcXVvOyA8YSBocmVmPSIvYWRtaW4vY29yZS8iPkNvcmU8L2E+CiZyc2FxdW87IENvbXBhbnlzCjwvZGl2PgoKICAgIAoKICAgIAogICAgICAgIAogICAgICAgIDx1bCBjbGFzcz0ibWVzc2FnZWxpc3QiPgogICAgICAgICAgPGxpIGNsYXNzPSJzdWNjZXNzIj5UaGUgY29tcGFueSAiPGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8yL2NoYW5nZS8iPkNvbXBhbnkgb2JqZWN0PC9hPiIgd2FzIGFkZGVkIHN1Y2Nlc3NmdWxseS48L2xpPgogICAgICAgIDwvdWw+CiAgICAgICAgCiAgICAKCiAgICA8IS0tIENvbnRlbnQgLS0+CiAgICA8ZGl2IGlkPSJjb250ZW50IiBjbGFzcz0iZmxleCI+CiAgICAgICAgCiAgICAgICAgPGgxPlNlbGVjdCBjb21wYW55IHRvIGNoYW5nZTwvaDE+CiAgICAgICAgCiAgPGRpdiBpZD0iY29udGVudC1tYWluIj4KICAgIAogICAgICAgIDx1bCBjbGFzcz0ib2JqZWN0LXRvb2xzIj4KICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgPGxpPgogICAgICAgICAgICAgIAogICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9jb3JlL2NvbXBhbnkvYWRkLyIgY2xhc3M9ImFkZGxpbmsiPgogICAgICAgICAgICAgICAgQWRkIGNvbXBhbnkKICAgICAgICAgICAgICA8L2E+CiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgCiAgICAgICAgPC91bD4KICAgIAogICAgCiAgICA8ZGl2IGNsYXNzPSJtb2R1bGUiIGlkPSJjaGFuZ2VsaXN0Ij4KICAgICAgCgoKICAgICAgCgoKICAgICAgCiAgICAgICAgCiAgICAgIAoKICAgICAgPGZvcm0gaWQ9ImNoYW5nZWxpc3QtZm9ybSIgbWV0aG9kPSJwb3N0IiBub3ZhbGlkYXRlPjxpbnB1dCB0eXBlPSdoaWRkZW4nIG5hbWU9J2NzcmZtaWRkbGV3YXJldG9rZW4nIHZhbHVlPSdqc3dBNWp6dkVCcmlFaTJJaldNZUZsSDN3TEdzT2tpT0l5RHBoUHJxcnlDSDFxNGEybmhHeDJvTnVHTWg4a2VEJyAvPgogICAgICAKCiAgICAgIAogICAgICAgICAgCjxkaXYgY2xhc3M9ImFjdGlvbnMiPgogICAgPGxhYmVsPkFjdGlvbjogPHNlbGVjdCBuYW1lPSJhY3Rpb24iIHJlcXVpcmVkPgo8b3B0aW9uIHZhbHVlPSIiIHNlbGVjdGVkPSJzZWxlY3RlZCI+LS0tLS0tLS0tPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9ImRlbGV0ZV9zZWxlY3RlZCI+RGVsZXRlIHNlbGVjdGVkIGNvbXBhbnlzPC9vcHRpb24+Cjwvc2VsZWN0PjwvbGFiZWw+PGlucHV0IGNsYXNzPSJzZWxlY3QtYWNyb3NzIiBuYW1lPSJzZWxlY3RfYWNyb3NzIiB0eXBlPSJoaWRkZW4iIHZhbHVlPSIwIiAvPgogICAgPGJ1dHRvbiB0eXBlPSJzdWJtaXQiIGNsYXNzPSJidXR0b24iIHRpdGxlPSJSdW4gdGhlIHNlbGVjdGVkIGFjdGlvbiIgbmFtZT0iaW5kZXgiIHZhbHVlPSIwIj5HbzwvYnV0dG9uPgogICAgCiAgICAgICAgPHNwYW4gY2xhc3M9ImFjdGlvbi1jb3VudGVyIiBkYXRhLWFjdGlvbnMtaWNudD0iMSI+MCBvZiAxIHNlbGVjdGVkPC9zcGFuPgogICAgICAgIAogICAgCjwvZGl2PgoKICAgICAgICAgIAoKCjxkaXYgY2xhc3M9InJlc3VsdHMiPgo8dGFibGUgaWQ9InJlc3VsdF9saXN0Ij4KPHRoZWFkPgo8dHI+Cgo8dGggc2NvcGU9ImNvbCIgIGNsYXNzPSJhY3Rpb24tY2hlY2tib3gtY29sdW1uIj4KICAgCiAgIDxkaXYgY2xhc3M9InRleHQiPjxzcGFuPjxpbnB1dCB0eXBlPSJjaGVja2JveCIgaWQ9ImFjdGlvbi10b2dnbGUiIC8+PC9zcGFuPjwvZGl2PgogICA8ZGl2IGNsYXNzPSJjbGVhciI+PC9kaXY+CjwvdGg+Cjx0aCBzY29wZT0iY29sIiAgY2xhc3M9ImNvbHVtbi1fX3N0cl9fIj4KICAgCiAgIDxkaXYgY2xhc3M9InRleHQiPjxzcGFuPkNvbXBhbnk8L3NwYW4+PC9kaXY+CiAgIDxkaXYgY2xhc3M9ImNsZWFyIj48L2Rpdj4KPC90aD4KPC90cj4KPC90aGVhZD4KPHRib2R5PgoKCjx0ciBjbGFzcz0icm93MSI+PHRkIGNsYXNzPSJhY3Rpb24tY2hlY2tib3giPjxpbnB1dCBjbGFzcz0iYWN0aW9uLXNlbGVjdCIgbmFtZT0iX3NlbGVjdGVkX2FjdGlvbiIgdHlwZT0iY2hlY2tib3giIHZhbHVlPSIyIiAvPjwvdGQ+PHRoIGNsYXNzPSJmaWVsZC1fX3N0cl9fIj48YSBocmVmPSIvYWRtaW4vY29yZS9jb21wYW55LzIvY2hhbmdlLyI+Q29tcGFueSBvYmplY3Q8L2E+PC90aD48L3RyPgoKPC90Ym9keT4KPC90YWJsZT4KPC9kaXY+CgoKICAgICAgICAgIAogICAgICAKICAgICAgCgo8cCBjbGFzcz0icGFnaW5hdG9yIj4KCjEgY29tcGFueQoKCjwvcD4KCiAgICAgIDwvZm9ybT4KICAgIDwvZGl2PgogIDwvZGl2PgoKICAgICAgICAKICAgICAgICA8YnIgY2xhc3M9ImNsZWFyIiAvPgogICAgPC9kaXY+CiAgICA8IS0tIEVORCBDb250ZW50IC0tPgoKICAgIDxkaXYgaWQ9ImZvb3RlciI+PC9kaXY+CjwvZGl2Pgo8IS0tIEVORCBDb250YWluZXIgLS0+Cgo8L2JvZHk+CjwvaHRtbD4K", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 14:55:44 GMT\", \"Expires\": \"Mon, 27 Mar 2017 14:55:44 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "ddc1331f-9d27-4ddc-8042-ffa566b64d36", - "fields": { - "request": "7fa3a2c8-bd0d-4866-be8b-aa4b79790b01", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "ddcc0737-a4d9-4286-bb80-e47c7bbba362", - "fields": { - "request": "8c37db3f-80a3-4bb0-9bce-3d0f4948dc98", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPlNpdGUgYWRtaW5pc3RyYXRpb24gfCBEamFuZ28gc2l0ZSBhZG1pbjwvdGl0bGU+CjxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvYWRtaW4vY3NzL2Jhc2UuY3NzIiAvPgo8bGluayByZWw9InN0eWxlc2hlZXQiIHR5cGU9InRleHQvY3NzIiBocmVmPSIvYXNzZXRzL2FkbWluL2Nzcy9kYXNoYm9hcmQuY3NzIiAvPgoKCjxtZXRhIG5hbWU9InJvYm90cyIgY29udGVudD0iTk9ORSxOT0FSQ0hJVkUiIC8+CjwvaGVhZD4KCgo8Ym9keSBjbGFzcz0iIGRhc2hib2FyZCIKICBkYXRhLWFkbWluLXV0Yy1vZmZzZXQ9IjAiPgoKPCEtLSBDb250YWluZXIgLS0+CjxkaXYgaWQ9ImNvbnRhaW5lciI+CgogICAgCiAgICA8IS0tIEhlYWRlciAtLT4KICAgIDxkaXYgaWQ9ImhlYWRlciI+CiAgICAgICAgPGRpdiBpZD0iYnJhbmRpbmciPgogICAgICAgIAo8aDEgaWQ9InNpdGUtbmFtZSI+PGEgaHJlZj0iL2FkbWluLyI+RGphbmdvIGFkbWluaXN0cmF0aW9uPC9hPjwvaDE+CgogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIDxkaXYgaWQ9InVzZXItdG9vbHMiPgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIFdlbGNvbWUsCiAgICAgICAgICAgICAgICA8c3Ryb25nPmthcGU8L3N0cm9uZz4uCiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii8iPlZpZXcgc2l0ZTwvYT4gLwogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vcGFzc3dvcmRfY2hhbmdlLyI+Q2hhbmdlIHBhc3N3b3JkPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9sb2dvdXQvIj5Mb2cgb3V0PC9hPgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgICAgICAKICAgICAgICAKICAgICAgICAKICAgIDwvZGl2PgogICAgPCEtLSBFTkQgSGVhZGVyIC0tPgogICAgCiAgICAKCiAgICAKICAgICAgICAKICAgIAoKICAgIDwhLS0gQ29udGVudCAtLT4KICAgIDxkaXYgaWQ9ImNvbnRlbnQiIGNsYXNzPSJjb2xNUyI+CiAgICAgICAgCiAgICAgICAgPGgxPlNpdGUgYWRtaW5pc3RyYXRpb248L2gxPgogICAgICAgIAo8ZGl2IGlkPSJjb250ZW50LW1haW4iPgoKCiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJhcHAtYXV0aCBtb2R1bGUiPgogICAgICAgIDx0YWJsZT4KICAgICAgICA8Y2FwdGlvbj4KICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2F1dGgvIiBjbGFzcz0ic2VjdGlvbiIgdGl0bGU9Ik1vZGVscyBpbiB0aGUgQXV0aGVudGljYXRpb24gYW5kIEF1dGhvcml6YXRpb24gYXBwbGljYXRpb24iPkF1dGhlbnRpY2F0aW9uIGFuZCBBdXRob3JpemF0aW9uPC9hPgogICAgICAgIDwvY2FwdGlvbj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1ncm91cCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL2dyb3VwLyI+R3JvdXBzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvZ3JvdXAvYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9hdXRoL2dyb3VwLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC11c2VyIj4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8iPlVzZXJzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgPC90YWJsZT4KICAgICAgICA8L2Rpdj4KICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImFwcC1jb3JlIG1vZHVsZSI+CiAgICAgICAgPHRhYmxlPgogICAgICAgIDxjYXB0aW9uPgogICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS8iIGNsYXNzPSJzZWN0aW9uIiB0aXRsZT0iTW9kZWxzIGluIHRoZSBDb3JlIGFwcGxpY2F0aW9uIj5Db3JlPC9hPgogICAgICAgIDwvY2FwdGlvbj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1hcHBsaWNhdGlvbiI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL2FwcGxpY2F0aW9uLyI+QXBwbGljYXRpb25zPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvYXBwbGljYXRpb24vYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL2FwcGxpY2F0aW9uLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC1jb21wYW55Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8iPkNvbXBhbnlzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgICAgIDx0ciBjbGFzcz0ibW9kZWwtc3R1ZGVudCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRoIHNjb3BlPSJyb3ciPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvIj5TdHVkZW50czwvYT48L3RoPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvYWRkLyIgY2xhc3M9ImFkZGxpbmsiPkFkZDwvYT48L3RkPgogICAgICAgICAgICAKCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPHRkPjxhIGhyZWY9Ii9hZG1pbi9jb3JlL3N0dWRlbnQvIiBjbGFzcz0iY2hhbmdlbGluayI+Q2hhbmdlPC9hPjwvdGQ+CiAgICAgICAgICAgIAogICAgICAgICAgICA8L3RyPgogICAgICAgIAogICAgICAgICAgICA8dHIgY2xhc3M9Im1vZGVsLXN1cGVydmlzb3IiPgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0aCBzY29wZT0icm93Ij48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yLyI+U3VwZXJ2aXNvcnM8L2E+PC90aD4KICAgICAgICAgICAgCgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0ZD48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yL2FkZC8iIGNsYXNzPSJhZGRsaW5rIj5BZGQ8L2E+PC90ZD4KICAgICAgICAgICAgCgogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDx0ZD48YSBocmVmPSIvYWRtaW4vY29yZS9zdXBlcnZpc29yLyIgY2xhc3M9ImNoYW5nZWxpbmsiPkNoYW5nZTwvYT48L3RkPgogICAgICAgICAgICAKICAgICAgICAgICAgPC90cj4KICAgICAgICAKICAgICAgICAgICAgPHRyIGNsYXNzPSJtb2RlbC12YWNhbmN5Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGggc2NvcGU9InJvdyI+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS8iPlZhY2FuY3lzPC9hPjwvdGg+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS9hZGQvIiBjbGFzcz0iYWRkbGluayI+QWRkPC9hPjwvdGQ+CiAgICAgICAgICAgIAoKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8dGQ+PGEgaHJlZj0iL2FkbWluL2NvcmUvdmFjYW5jeS8iIGNsYXNzPSJjaGFuZ2VsaW5rIj5DaGFuZ2U8L2E+PC90ZD4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgCiAgICAgICAgPC90YWJsZT4KICAgICAgICA8L2Rpdj4KICAgIAoKPC9kaXY+CgogICAgICAgIAo8ZGl2IGlkPSJjb250ZW50LXJlbGF0ZWQiPgogICAgPGRpdiBjbGFzcz0ibW9kdWxlIiBpZD0icmVjZW50LWFjdGlvbnMtbW9kdWxlIj4KICAgICAgICA8aDI+UmVjZW50IGFjdGlvbnM8L2gyPgogICAgICAgIDxoMz5NeSBhY3Rpb25zPC9oMz4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgPHVsIGNsYXNzPSJhY3Rpb25saXN0Ij4KICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaSBjbGFzcz0iYWRkbGluayI+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS9hcHBsaWNhdGlvbi8xL2NoYW5nZS8iPkFwcGxpY2F0aW9uIG9iamVjdDwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5BcHBsaWNhdGlvbjwvc3Bhbj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgICAgPGxpIGNsYXNzPSJhZGRsaW5rIj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9jb3JlL3ZhY2FuY3kvMS9jaGFuZ2UvIj5WYWNhbmN5IG9iamVjdDwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5WYWNhbmN5PC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8bGkgY2xhc3M9ImFkZGxpbmsiPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2NvcmUvc3VwZXJ2aXNvci8xL2NoYW5nZS8iPlN1cGVydmlzb3Igb2JqZWN0PC9hPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YnIvPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9Im1pbmkgcXVpZXQiPlN1cGVydmlzb3I8L3NwYW4+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgPC9saT4KICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaSBjbGFzcz0iYWRkbGluayI+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS9zdHVkZW50LzEvY2hhbmdlLyI+U3R1ZGVudCBvYmplY3Q8L2E+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxici8+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz0ibWluaSBxdWlldCI+U3R1ZGVudDwvc3Bhbj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgICAgPGxpIGNsYXNzPSJhZGRsaW5rIj4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9jb3JlL2NvbXBhbnkvMi9jaGFuZ2UvIj5Db21wYW55IG9iamVjdDwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5Db21wYW55PC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8bGkgY2xhc3M9ImRlbGV0ZWxpbmsiPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgQ29tcGFueSBvYmplY3QKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5Db21wYW55PC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8bGkgY2xhc3M9ImFkZGxpbmsiPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci80L2NoYW5nZS8iPmZhcmhhbnN1cGVyPC9hPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YnIvPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9Im1pbmkgcXVpZXQiPlVzZXI8L3NwYW4+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgPC9saT4KICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaSBjbGFzcz0iYWRkbGluayI+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vYXV0aC91c2VyLzMvY2hhbmdlLyI+ZmFyaGFuY29ycDwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5Vc2VyPC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8bGkgY2xhc3M9ImFkZGxpbmsiPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8yL2NoYW5nZS8iPmZhcmhhbjwvYT4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGJyLz4KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPSJtaW5pIHF1aWV0Ij5Vc2VyPC9zcGFuPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgIDwvbGk+CiAgICAgICAgICAgIAogICAgICAgICAgICA8bGkgY2xhc3M9ImFkZGxpbmsiPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8xL2NoYW5nZS8iPkNvbXBhbnkgb2JqZWN0PC9hPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YnIvPgogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9Im1pbmkgcXVpZXQiPkNvbXBhbnk8L3NwYW4+CiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgPC9saT4KICAgICAgICAgICAgCiAgICAgICAgICAgIDwvdWw+CiAgICAgICAgICAgIAogICAgPC9kaXY+CjwvZGl2PgoKICAgICAgICA8YnIgY2xhc3M9ImNsZWFyIiAvPgogICAgPC9kaXY+CiAgICA8IS0tIEVORCBDb250ZW50IC0tPgoKICAgIDxkaXYgaWQ9ImZvb3RlciI+PC9kaXY+CjwvZGl2Pgo8IS0tIEVORCBDb250YWluZXIgLS0+Cgo8L2JvZHk+CjwvaHRtbD4K", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 17:15:37 GMT\", \"Expires\": \"Mon, 27 Mar 2017 17:15:37 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\"}" - } -}, -{ - "model": "silk.response", - "pk": "e142f6d0-2ab1-4398-86ff-9d87259f9da3", - "fields": { - "request": "9a6efcbd-1e2b-4e0e-b95f-3f8742d83a10", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "e2dfab21-44a4-4988-93e6-cae75f6f7521", - "fields": { - "request": "dcbec714-4d8a-47f0-b0e1-447518100cf3", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "e634114d-42d6-4a23-96e9-fdc92decf996", - "fields": { - "request": "41fac1fb-3e23-401d-a698-9714b1630c86", - "status_code": 302, - "raw_body": "", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Location\": \"/admin/login/?next=/admin/\", \"Last-Modified\": \"Mon, 27 Mar 2017 14:51:56 GMT\", \"Expires\": \"Mon, 27 Mar 2017 14:51:56 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\"}" - } -}, -{ - "model": "silk.response", - "pk": "e68b355b-9734-4475-a848-73525deb78c7", - "fields": { - "request": "b91925da-e9de-45bc-ad2e-253858671417", - "status_code": 400, - "raw_body": "eyJkZXRhaWwiOiJKU09OIHBhcnNlIGVycm9yIC0gRXhwZWN0aW5nIHZhbHVlOiBsaW5lIDEgY29sdW1uIDEgKGNoYXIgMCkifQ==", - "body": "{\n \"detail\": \"JSON parse error - Expecting value: line 1 column 1 (char 0)\"\n}", - "encoded_headers": "{\"Content-Type\": \"application/json\", \"Allow\": \"POST, OPTIONS\", \"Vary\": \"Accept\"}" - } -}, -{ - "model": "silk.response", - "pk": "e71759d3-b3a4-4e44-a026-df505664a677", - "fields": { - "request": "f16af82e-15db-44f3-a6cd-0a8aae16ab9d", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "e74158bd-72fb-41ae-8774-19ce9a98c667", - "fields": { - "request": "7e61ba48-2d26-4dcb-8dbc-ef1cdd6a5bd7", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "e8f2eea6-0633-4acd-8095-e5efa2cb9c66", - "fields": { - "request": "043cea54-e9cd-4bc2-a0a5-20eb845eaf90", - "status_code": 200, - "raw_body": "CjwhRE9DVFlQRSBodG1sPgo8aHRtbD4KPGhlYWQ+CiAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogIDx0aXRsZT5Td2FnZ2VyIFVJPC90aXRsZT4KICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2ltYWdlcy9mYXZpY29uLTMyeDMyLnBuZyIgc2l6ZXM9IjMyeDMyIiAvPgogIDxsaW5rIHJlbD0iaWNvbiIgdHlwZT0iaW1hZ2UvcG5nIiBocmVmPSIvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvaW1hZ2VzL2Zhdmljb24tMTZ4MTYucG5nIiBzaXplcz0iMTZ4MTYiIC8+CiAgPGxpbmsgaHJlZj0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2Nzcy90eXBvZ3JhcGh5LmNzcycgbWVkaWE9J3NjcmVlbicgcmVsPSdzdHlsZXNoZWV0JyB0eXBlPSd0ZXh0L2NzcycvPgogIDxsaW5rIGhyZWY9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9jc3MvcmVzZXQuY3NzJyBtZWRpYT0nc2NyZWVuJyByZWw9J3N0eWxlc2hlZXQnIHR5cGU9J3RleHQvY3NzJy8+CiAgPGxpbmsgaHJlZj0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2Nzcy9zY3JlZW4uY3NzJyBtZWRpYT0nc2NyZWVuJyByZWw9J3N0eWxlc2hlZXQnIHR5cGU9J3RleHQvY3NzJy8+CiAgPGxpbmsgaHJlZj0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2Nzcy9yZXNldC5jc3MnIG1lZGlhPSdwcmludCcgcmVsPSdzdHlsZXNoZWV0JyB0eXBlPSd0ZXh0L2NzcycvPgogIDxsaW5rIGhyZWY9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9jc3MvcHJpbnQuY3NzJyBtZWRpYT0ncHJpbnQnIHJlbD0nc3R5bGVzaGVldCcgdHlwZT0ndGV4dC9jc3MnLz4KICAKICAKICAKCiAgPHNjcmlwdCBzcmM9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9saWIvb2JqZWN0LWFzc2lnbi1wb2xseWZpbGwuanMnIHR5cGU9J3RleHQvamF2YXNjcmlwdCc+PC9zY3JpcHQ+CiAgPHNjcmlwdCBzcmM9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9saWIvanF1ZXJ5LTEuOC4wLm1pbi5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4KICA8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2xpYi9qcXVlcnkuc2xpZGV0by5taW4uanMnIHR5cGU9J3RleHQvamF2YXNjcmlwdCc+PC9zY3JpcHQ+CiAgPHNjcmlwdCBzcmM9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9saWIvanF1ZXJ5LndpZ2dsZS5taW4uanMnIHR5cGU9J3RleHQvamF2YXNjcmlwdCc+PC9zY3JpcHQ+CiAgPHNjcmlwdCBzcmM9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9saWIvanF1ZXJ5LmJhLWJicS5taW4uanMnIHR5cGU9J3RleHQvamF2YXNjcmlwdCc+PC9zY3JpcHQ+CiAgPHNjcmlwdCBzcmM9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9saWIvaGFuZGxlYmFycy0yLjAuMC5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4KICA8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2xpYi9qcy15YW1sLm1pbi5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4KICA8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2xpYi9sb2Rhc2gubWluLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgogIDxzY3JpcHQgc3JjPScvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvbGliL2JhY2tib25lLW1pbi5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4KICA8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL3N3YWdnZXItdWkubWluLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgogIDxzY3JpcHQgc3JjPScvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvbGliL2hpZ2hsaWdodC45LjEuMC5wYWNrLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgogIDxzY3JpcHQgc3JjPScvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvbGliL2hpZ2hsaWdodC45LjEuMC5wYWNrX2V4dGVuZGVkLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgogIDxzY3JpcHQgc3JjPScvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvbGliL2pzb25lZGl0b3IubWluLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgogIDxzY3JpcHQgc3JjPScvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvbGliL21hcmtlZC5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4KICA8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2xpYi9zd2FnZ2VyLW9hdXRoLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgoKICA8IS0tIFNvbWUgYmFzaWMgdHJhbnNsYXRpb25zIC0tPgogIDwhLS0gPHNjcmlwdCBzcmM9J2xhbmcvdHJhbnNsYXRvci5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4gLS0+CiAgPCEtLSA8c2NyaXB0IHNyYz0nbGFuZy9ydS5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4gLS0+CiAgPCEtLSA8c2NyaXB0IHNyYz0nbGFuZy9lbi5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4gLS0+Cgo8L2hlYWQ+Cgo8Ym9keSBjbGFzcz0ic3dhZ2dlci1zZWN0aW9uIj4KCjxkaXYgaWQ9J2hlYWRlcic+CiAgPGRpdiBjbGFzcz0ic3dhZ2dlci11aS13cmFwIj4KICAgIAogICAgICA8YSBpZD0ibG9nbyIgaHJlZj0iaHR0cDovL3N3YWdnZXIuaW8iPjxpbWcgY2xhc3M9ImxvZ29fX2ltZyIgYWx0PSJzd2FnZ2VyIiBoZWlnaHQ9IjMwIiB3aWR0aD0iMzAiIHNyYz0iL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2ltYWdlcy9sb2dvX3NtYWxsLnBuZyIgLz48c3BhbiBjbGFzcz0ibG9nb19fdGl0bGUiPnN3YWdnZXI8L3NwYW4+PC9hPgogICAgCiAgICA8Zm9ybSBpZD0nYXBpX3NlbGVjdG9yJz4KICAgICAgPGlucHV0IGlkPSJpbnB1dF9iYXNlVXJsIiBuYW1lPSJiYXNlVXJsIiB0eXBlPSJoaWRkZW4iLz4KICAgICAgCiAgICAgICAgPGlucHV0IHR5cGU9J2hpZGRlbicgbmFtZT0nY3NyZm1pZGRsZXdhcmV0b2tlbicgdmFsdWU9JzNDYzdtRlF3Sk9kSkFOMGd2VnlzbnFybTg2elJJRDBTc0lqV3liSXJ3TG84WFYySWVtM1VmNzg2NjFGRzJEV0gnIC8+CiAgICAgICAgCiAgICAgICAgICA8ZGl2IGNsYXNzPSJpbnB1dCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgIAogICAgICAgICAgICAgIEhlbGxvLCBrYXBlCiAgICAgICAgICAgIAogICAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgICAKICAgICAgICAKICAgICAgCgogICAgICAKICAgICAgICAKICAgICAgICAgIDxkaXYgY2xhc3M9J2lucHV0Jz48YSBpZD0iYXV0aCIgY2xhc3M9ImhlYWRlcl9fYnRuIiBocmVmPSI/bmV4dD0vYXBpIiBkYXRhLXN3LXRyYW5zbGF0ZT5EamFuZ28gTG9nb3V0PC9hPjwvZGl2PgogICAgICAgIAogICAgICAKICAgICAgPGRpdiBpZD0nYXV0aF9jb250YWluZXInPjwvZGl2PgogICAgPC9mb3JtPgogIDwvZGl2Pgo8L2Rpdj4KCgo8ZGl2IGlkPSJtZXNzYWdlLWJhciIgY2xhc3M9InN3YWdnZXItdWktd3JhcCIgZGF0YS1zdy10cmFuc2xhdGU+Jm5ic3A7PC9kaXY+CjxkaXYgaWQ9InN3YWdnZXItdWktY29udGFpbmVyIiBjbGFzcz0ic3dhZ2dlci11aS13cmFwIj48L2Rpdj4KCjxzY3JpcHQgaWQ9ImRycy1zZXR0aW5ncyIgdHlwZT0iYXBwbGljYXRpb24vanNvbiI+CnsiYXBpc1NvcnRlciI6IG51bGwsICJkb2NFeHBhbnNpb24iOiBudWxsLCAianNvbkVkaXRvciI6IGZhbHNlLCAib3BlcmF0aW9uc1NvcnRlciI6IG51bGwsICJzaG93UmVxdWVzdEhlYWRlcnMiOiBmYWxzZSwgInN1cHBvcnRlZFN1Ym1pdE1ldGhvZHMiOiBbImdldCIsICJwb3N0IiwgInB1dCIsICJkZWxldGUiLCAicGF0Y2giXX0KPC9zY3JpcHQ+Cgo8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2luaXQuanMnIHR5cGU9J3RleHQvamF2YXNjcmlwdCc+PC9zY3JpcHQ+CgoKCjwvYm9keT4KPC9odG1sPgo=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Allow\": \"GET, HEAD, OPTIONS\", \"Vary\": \"Accept\"}" - } -}, -{ - "model": "silk.response", - "pk": "ead4d335-3451-4f11-b3d8-f0ddb925ff42", - "fields": { - "request": "7808e004-a5e9-4c6f-8d07-197250bea2da", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPlNlbGVjdCB2YWNhbmN5IHRvIGNoYW5nZSB8IERqYW5nbyBzaXRlIGFkbWluPC90aXRsZT4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvYmFzZS5jc3MiIC8+CgogIAogIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvYWRtaW4vY3NzL2NoYW5nZWxpc3RzLmNzcyIgLz4KICAKICAKICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KICAKICAKICAKCgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvY29yZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL2pxdWVyeS9qcXVlcnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2pxdWVyeS5pbml0LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hZG1pbi9SZWxhdGVkT2JqZWN0TG9va3Vwcy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvYWN0aW9ucy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdXJsaWZ5LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9wcmVwb3B1bGF0ZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL3hyZWdleHAveHJlZ2V4cC5qcyI+PC9zY3JpcHQ+Cgo8bWV0YSBuYW1lPSJyb2JvdHMiIGNvbnRlbnQ9Ik5PTkUsTk9BUkNISVZFIiAvPgo8L2hlYWQ+CgoKPGJvZHkgY2xhc3M9IiBhcHAtY29yZSBtb2RlbC12YWNhbmN5IGNoYW5nZS1saXN0IgogIGRhdGEtYWRtaW4tdXRjLW9mZnNldD0iMCI+Cgo8IS0tIENvbnRhaW5lciAtLT4KPGRpdiBpZD0iY29udGFpbmVyIj4KCiAgICAKICAgIDwhLS0gSGVhZGVyIC0tPgogICAgPGRpdiBpZD0iaGVhZGVyIj4KICAgICAgICA8ZGl2IGlkPSJicmFuZGluZyI+CiAgICAgICAgCjxoMSBpZD0ic2l0ZS1uYW1lIj48YSBocmVmPSIvYWRtaW4vIj5EamFuZ28gYWRtaW5pc3RyYXRpb248L2E+PC9oMT4KCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgPGRpdiBpZD0idXNlci10b29scyI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgV2VsY29tZSwKICAgICAgICAgICAgICAgIDxzdHJvbmc+a2FwZTwvc3Ryb25nPi4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iLyI+VmlldyBzaXRlPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9wYXNzd29yZF9jaGFuZ2UvIj5DaGFuZ2UgcGFzc3dvcmQ8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2xvZ291dC8iPkxvZyBvdXQ8L2E+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIAogICAgPC9kaXY+CiAgICA8IS0tIEVORCBIZWFkZXIgLS0+CiAgICAKPGRpdiBjbGFzcz0iYnJlYWRjcnVtYnMiPgo8YSBocmVmPSIvYWRtaW4vIj5Ib21lPC9hPgomcnNhcXVvOyA8YSBocmVmPSIvYWRtaW4vY29yZS8iPkNvcmU8L2E+CiZyc2FxdW87IFZhY2FuY3lzCjwvZGl2PgoKICAgIAoKICAgIAogICAgICAgIAogICAgCgogICAgPCEtLSBDb250ZW50IC0tPgogICAgPGRpdiBpZD0iY29udGVudCIgY2xhc3M9ImZsZXgiPgogICAgICAgIAogICAgICAgIDxoMT5TZWxlY3QgdmFjYW5jeSB0byBjaGFuZ2U8L2gxPgogICAgICAgIAogIDxkaXYgaWQ9ImNvbnRlbnQtbWFpbiI+CiAgICAKICAgICAgICA8dWwgY2xhc3M9Im9iamVjdC10b29scyI+CiAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaT4KICAgICAgICAgICAgICAKICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS92YWNhbmN5L2FkZC8iIGNsYXNzPSJhZGRsaW5rIj4KICAgICAgICAgICAgICAgIEFkZCB2YWNhbmN5CiAgICAgICAgICAgICAgPC9hPgogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgIAogICAgICAgIDwvdWw+CiAgICAKICAgIAogICAgPGRpdiBjbGFzcz0ibW9kdWxlIiBpZD0iY2hhbmdlbGlzdCI+CiAgICAgIAoKCiAgICAgIAoKCiAgICAgIAogICAgICAgIAogICAgICAKCiAgICAgIDxmb3JtIGlkPSJjaGFuZ2VsaXN0LWZvcm0iIG1ldGhvZD0icG9zdCIgbm92YWxpZGF0ZT48aW5wdXQgdHlwZT0naGlkZGVuJyBuYW1lPSdjc3JmbWlkZGxld2FyZXRva2VuJyB2YWx1ZT0nUmozbWE3SG5SVEhIT21hZTl0Uk1FTnQxb0F4SUdJMmRVaW1XTE9mYzkxVXpQdkdkSGIycDdZWXpEdm1pN2JRdycgLz4KICAgICAgCgogICAgICAKICAgICAgICAgIAogICAgICAgICAgCgoKCiAgICAgICAgICAKICAgICAgCiAgICAgIAoKPHAgY2xhc3M9InBhZ2luYXRvciI+CgowIHZhY2FuY3lzCgoKPC9wPgoKICAgICAgPC9mb3JtPgogICAgPC9kaXY+CiAgPC9kaXY+CgogICAgICAgIAogICAgICAgIDxiciBjbGFzcz0iY2xlYXIiIC8+CiAgICA8L2Rpdj4KICAgIDwhLS0gRU5EIENvbnRlbnQgLS0+CgogICAgPGRpdiBpZD0iZm9vdGVyIj48L2Rpdj4KPC9kaXY+CjwhLS0gRU5EIENvbnRhaW5lciAtLT4KCjwvYm9keT4KPC9odG1sPgo=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 14:33:15 GMT\", \"Expires\": \"Mon, 27 Mar 2017 14:33:15 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "eaead009-ff93-4cf4-9141-5d81eebcf8f5", - "fields": { - "request": "baccf422-5572-4f41-a439-918e77b21a51", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPlNlbGVjdCB2YWNhbmN5IHRvIGNoYW5nZSB8IERqYW5nbyBzaXRlIGFkbWluPC90aXRsZT4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvYmFzZS5jc3MiIC8+CgogIAogIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgdHlwZT0idGV4dC9jc3MiIGhyZWY9Ii9hc3NldHMvYWRtaW4vY3NzL2NoYW5nZWxpc3RzLmNzcyIgLz4KICAKICAKICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KICAKICAKICAKCgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvY29yZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL2pxdWVyeS9qcXVlcnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2pxdWVyeS5pbml0LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hZG1pbi9SZWxhdGVkT2JqZWN0TG9va3Vwcy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvYWN0aW9ucy5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdXJsaWZ5LmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9wcmVwb3B1bGF0ZS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvdmVuZG9yL3hyZWdleHAveHJlZ2V4cC5qcyI+PC9zY3JpcHQ+Cgo8bWV0YSBuYW1lPSJyb2JvdHMiIGNvbnRlbnQ9Ik5PTkUsTk9BUkNISVZFIiAvPgo8L2hlYWQ+CgoKPGJvZHkgY2xhc3M9IiBhcHAtY29yZSBtb2RlbC12YWNhbmN5IGNoYW5nZS1saXN0IgogIGRhdGEtYWRtaW4tdXRjLW9mZnNldD0iMCI+Cgo8IS0tIENvbnRhaW5lciAtLT4KPGRpdiBpZD0iY29udGFpbmVyIj4KCiAgICAKICAgIDwhLS0gSGVhZGVyIC0tPgogICAgPGRpdiBpZD0iaGVhZGVyIj4KICAgICAgICA8ZGl2IGlkPSJicmFuZGluZyI+CiAgICAgICAgCjxoMSBpZD0ic2l0ZS1uYW1lIj48YSBocmVmPSIvYWRtaW4vIj5EamFuZ28gYWRtaW5pc3RyYXRpb248L2E+PC9oMT4KCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgPGRpdiBpZD0idXNlci10b29scyI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgV2VsY29tZSwKICAgICAgICAgICAgICAgIDxzdHJvbmc+a2FwZTwvc3Ryb25nPi4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iLyI+VmlldyBzaXRlPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9wYXNzd29yZF9jaGFuZ2UvIj5DaGFuZ2UgcGFzc3dvcmQ8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2xvZ291dC8iPkxvZyBvdXQ8L2E+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIAogICAgPC9kaXY+CiAgICA8IS0tIEVORCBIZWFkZXIgLS0+CiAgICAKPGRpdiBjbGFzcz0iYnJlYWRjcnVtYnMiPgo8YSBocmVmPSIvYWRtaW4vIj5Ib21lPC9hPgomcnNhcXVvOyA8YSBocmVmPSIvYWRtaW4vY29yZS8iPkNvcmU8L2E+CiZyc2FxdW87IFZhY2FuY3lzCjwvZGl2PgoKICAgIAoKICAgIAogICAgICAgIAogICAgCgogICAgPCEtLSBDb250ZW50IC0tPgogICAgPGRpdiBpZD0iY29udGVudCIgY2xhc3M9ImZsZXgiPgogICAgICAgIAogICAgICAgIDxoMT5TZWxlY3QgdmFjYW5jeSB0byBjaGFuZ2U8L2gxPgogICAgICAgIAogIDxkaXYgaWQ9ImNvbnRlbnQtbWFpbiI+CiAgICAKICAgICAgICA8dWwgY2xhc3M9Im9iamVjdC10b29scyI+CiAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgIDxsaT4KICAgICAgICAgICAgICAKICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vY29yZS92YWNhbmN5L2FkZC8iIGNsYXNzPSJhZGRsaW5rIj4KICAgICAgICAgICAgICAgIEFkZCB2YWNhbmN5CiAgICAgICAgICAgICAgPC9hPgogICAgICAgICAgICA8L2xpPgogICAgICAgICAgICAKICAgICAgICAgIAogICAgICAgIDwvdWw+CiAgICAKICAgIAogICAgPGRpdiBjbGFzcz0ibW9kdWxlIiBpZD0iY2hhbmdlbGlzdCI+CiAgICAgIAoKCiAgICAgIAoKCiAgICAgIAogICAgICAgIAogICAgICAKCiAgICAgIDxmb3JtIGlkPSJjaGFuZ2VsaXN0LWZvcm0iIG1ldGhvZD0icG9zdCIgbm92YWxpZGF0ZT48aW5wdXQgdHlwZT0naGlkZGVuJyBuYW1lPSdjc3JmbWlkZGxld2FyZXRva2VuJyB2YWx1ZT0nZ0RUb2pwMjZlZXJlU0lsYkJiemwxdG1GS3BmRWx0TExGSjBkdlZVMTFiQ0RmUW5Ea0M0TlRhM3BJa2x0RnRIQScgLz4KICAgICAgCgogICAgICAKICAgICAgICAgIAogICAgICAgICAgCgoKCiAgICAgICAgICAKICAgICAgCiAgICAgIAoKPHAgY2xhc3M9InBhZ2luYXRvciI+CgowIHZhY2FuY3lzCgoKPC9wPgoKICAgICAgPC9mb3JtPgogICAgPC9kaXY+CiAgPC9kaXY+CgogICAgICAgIAogICAgICAgIDxiciBjbGFzcz0iY2xlYXIiIC8+CiAgICA8L2Rpdj4KICAgIDwhLS0gRU5EIENvbnRlbnQgLS0+CgogICAgPGRpdiBpZD0iZm9vdGVyIj48L2Rpdj4KPC9kaXY+CjwhLS0gRU5EIENvbnRhaW5lciAtLT4KCjwvYm9keT4KPC9odG1sPgo=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 15:23:08 GMT\", \"Expires\": \"Mon, 27 Mar 2017 15:23:08 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "eaf1274a-4dd2-4700-94f8-7e0488fb8042", - "fields": { - "request": "d2cce75c-1b2c-4f52-8c6c-9ee18a942084", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "eb0d2636-0635-4760-aea2-01313523cd14", - "fields": { - "request": "be08dd99-4e82-400a-a46b-e90c75162b6c", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "eb972124-b8bb-4730-ab80-c5b6f314e280", - "fields": { - "request": "dbc2fca4-0983-49f1-b77f-2faa4de8e3c7", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPkFkZCB1c2VyIHwgRGphbmdvIHNpdGUgYWRtaW48L3RpdGxlPgo8bGluayByZWw9InN0eWxlc2hlZXQiIHR5cGU9InRleHQvY3NzIiBocmVmPSIvYXNzZXRzL2FkbWluL2Nzcy9iYXNlLmNzcyIgLz4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvZm9ybXMuY3NzIiAvPgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9jb3JlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IvanF1ZXJ5L2pxdWVyeS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvanF1ZXJ5LmluaXQuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2FkbWluL1JlbGF0ZWRPYmplY3RMb29rdXBzLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hY3Rpb25zLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy91cmxpZnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL3ByZXBvcHVsYXRlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IveHJlZ2V4cC94cmVnZXhwLmpzIj48L3NjcmlwdD4KCjxtZXRhIG5hbWU9InJvYm90cyIgY29udGVudD0iTk9ORSxOT0FSQ0hJVkUiIC8+CjwvaGVhZD4KCgo8Ym9keSBjbGFzcz0iIGFwcC1hdXRoIG1vZGVsLXVzZXIgY2hhbmdlLWZvcm0iCiAgZGF0YS1hZG1pbi11dGMtb2Zmc2V0PSIwIj4KCjwhLS0gQ29udGFpbmVyIC0tPgo8ZGl2IGlkPSJjb250YWluZXIiPgoKICAgIAogICAgPCEtLSBIZWFkZXIgLS0+CiAgICA8ZGl2IGlkPSJoZWFkZXIiPgogICAgICAgIDxkaXYgaWQ9ImJyYW5kaW5nIj4KICAgICAgICAKPGgxIGlkPSJzaXRlLW5hbWUiPjxhIGhyZWY9Ii9hZG1pbi8iPkRqYW5nbyBhZG1pbmlzdHJhdGlvbjwvYT48L2gxPgoKICAgICAgICA8L2Rpdj4KICAgICAgICAKICAgICAgICAKICAgICAgICA8ZGl2IGlkPSJ1c2VyLXRvb2xzIj4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICBXZWxjb21lLAogICAgICAgICAgICAgICAgPHN0cm9uZz5rYXBlPC9zdHJvbmc+LgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvIj5WaWV3IHNpdGU8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL3Bhc3N3b3JkX2NoYW5nZS8iPkNoYW5nZSBwYXNzd29yZDwvYT4gLwogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vbG9nb3V0LyI+TG9nIG91dDwvYT4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgCiAgICA8L2Rpdj4KICAgIDwhLS0gRU5EIEhlYWRlciAtLT4KICAgIAo8ZGl2IGNsYXNzPSJicmVhZGNydW1icyI+CjxhIGhyZWY9Ii9hZG1pbi8iPkhvbWU8L2E+CiZyc2FxdW87IDxhIGhyZWY9Ii9hZG1pbi9hdXRoLyI+QXV0aGVudGljYXRpb24gYW5kIEF1dGhvcml6YXRpb248L2E+CiZyc2FxdW87IDxhIGhyZWY9Ii9hZG1pbi9hdXRoL3VzZXIvIj5Vc2VyczwvYT4KJnJzYXF1bzsgQWRkIHVzZXIKPC9kaXY+CgogICAgCgogICAgCiAgICAgICAgCiAgICAKCiAgICA8IS0tIENvbnRlbnQgLS0+CiAgICA8ZGl2IGlkPSJjb250ZW50IiBjbGFzcz0iY29sTSI+CiAgICAgICAgCiAgICAgICAgPGgxPkFkZCB1c2VyPC9oMT4KICAgICAgICA8ZGl2IGlkPSJjb250ZW50LW1haW4iPgoKCgo8Zm9ybSBlbmN0eXBlPSJtdWx0aXBhcnQvZm9ybS1kYXRhIiBhY3Rpb249IiIgbWV0aG9kPSJwb3N0IiBpZD0idXNlcl9mb3JtIiBub3ZhbGlkYXRlPjxpbnB1dCB0eXBlPSdoaWRkZW4nIG5hbWU9J2NzcmZtaWRkbGV3YXJldG9rZW4nIHZhbHVlPSdQRVV2bnF6OUc4RHhKc3RiSjRRT2tSRVhOMjh1S1RzUGVLMWt6V3I0dDVPVzZBdkRzdmxnY3lsSExYZWo0VG9FJyAvPgogIAogICAgPHA+Rmlyc3QsIGVudGVyIGEgdXNlcm5hbWUgYW5kIHBhc3N3b3JkLiBUaGVuLCB5b3UnbGwgYmUgYWJsZSB0byBlZGl0IG1vcmUgdXNlciBvcHRpb25zLjwvcD4KICAKCjxkaXY+CgoKCgogICAgPHAgY2xhc3M9ImVycm9ybm90ZSI+CiAgICBQbGVhc2UgY29ycmVjdCB0aGUgZXJyb3JzIGJlbG93LgogICAgPC9wPgogICAgCgoKCgogIDxmaWVsZHNldCBjbGFzcz0ibW9kdWxlIGFsaWduZWQgd2lkZSI+CiAgICAKICAgIAogICAgCiAgICAgICAgPGRpdiBjbGFzcz0iZm9ybS1yb3cgZmllbGQtdXNlcm5hbWUiPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgY2xhc3M9InJlcXVpcmVkIiBmb3I9ImlkX3VzZXJuYW1lIj5Vc2VybmFtZTo8L2xhYmVsPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxpbnB1dCBhdXRvZm9jdXM9IiIgY2xhc3M9InZUZXh0RmllbGQiIGlkPSJpZF91c2VybmFtZSIgbWF4bGVuZ3RoPSIxNTAiIG5hbWU9InVzZXJuYW1lIiB0eXBlPSJ0ZXh0IiB2YWx1ZT0iZmFyaGFuIiByZXF1aXJlZCAvPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPHAgY2xhc3M9ImhlbHAiPlJlcXVpcmVkLiAxNTAgY2hhcmFjdGVycyBvciBmZXdlci4gTGV0dGVycywgZGlnaXRzIGFuZCBALy4vKy8tL18gb25seS48L3A+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBlcnJvcnMgZmllbGQtcGFzc3dvcmQxIj4KICAgICAgICAgICAgPHVsIGNsYXNzPSJlcnJvcmxpc3QiPjxsaT5UaGlzIGZpZWxkIGlzIHJlcXVpcmVkLjwvbGk+PC91bD4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgY2xhc3M9InJlcXVpcmVkIiBmb3I9ImlkX3Bhc3N3b3JkMSI+UGFzc3dvcmQ6PC9sYWJlbD4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8aW5wdXQgaWQ9ImlkX3Bhc3N3b3JkMSIgbmFtZT0icGFzc3dvcmQxIiB0eXBlPSJwYXNzd29yZCIgcmVxdWlyZWQgLz4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBlcnJvcnMgZmllbGQtcGFzc3dvcmQyIj4KICAgICAgICAgICAgPHVsIGNsYXNzPSJlcnJvcmxpc3QiPjxsaT5UaGlzIGZpZWxkIGlzIHJlcXVpcmVkLjwvbGk+PC91bD4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgY2xhc3M9InJlcXVpcmVkIiBmb3I9ImlkX3Bhc3N3b3JkMiI+UGFzc3dvcmQgY29uZmlybWF0aW9uOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgPGlucHV0IGlkPSJpZF9wYXNzd29yZDIiIG5hbWU9InBhc3N3b3JkMiIgdHlwZT0icGFzc3dvcmQiIHJlcXVpcmVkIC8+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8cCBjbGFzcz0iaGVscCI+RW50ZXIgdGhlIHNhbWUgcGFzc3dvcmQgYXMgYmVmb3JlLCBmb3IgdmVyaWZpY2F0aW9uLjwvcD4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDwvZGl2PgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgIAo8L2ZpZWxkc2V0PgoKCgoKCgoKCgoKCgoKPGRpdiBjbGFzcz0ic3VibWl0LXJvdyI+CjxpbnB1dCB0eXBlPSJzdWJtaXQiIHZhbHVlPSJTYXZlIiBjbGFzcz0iZGVmYXVsdCIgbmFtZT0iX3NhdmUiIC8+CgoKPGlucHV0IHR5cGU9InN1Ym1pdCIgdmFsdWU9IlNhdmUgYW5kIGFkZCBhbm90aGVyIiBuYW1lPSJfYWRkYW5vdGhlciIgLz4KPGlucHV0IHR5cGU9InN1Ym1pdCIgdmFsdWU9IlNhdmUgYW5kIGNvbnRpbnVlIGVkaXRpbmciIG5hbWU9Il9jb250aW51ZSIgLz4KPC9kaXY+CgoKCiAgICA8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIKICAgICAgICAgICAgaWQ9ImRqYW5nby1hZG1pbi1mb3JtLWFkZC1jb25zdGFudHMiCiAgICAgICAgICAgIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9jaGFuZ2VfZm9ybS5qcyIKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICBkYXRhLW1vZGVsLW5hbWU9InVzZXIiCiAgICAgICAgICAgID4KICAgIDwvc2NyaXB0PgoKCgoKPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiCiAgICAgICAgaWQ9ImRqYW5nby1hZG1pbi1wcmVwb3B1bGF0ZWQtZmllbGRzLWNvbnN0YW50cyIKICAgICAgICBzcmM9Ii9hc3NldHMvYWRtaW4vanMvcHJlcG9wdWxhdGVfaW5pdC5qcyIKICAgICAgICBkYXRhLXByZXBvcHVsYXRlZC1maWVsZHM9IltdIj4KPC9zY3JpcHQ+CgoKPC9kaXY+CjwvZm9ybT48L2Rpdj4KCiAgICAgICAgCiAgICAgICAgPGJyIGNsYXNzPSJjbGVhciIgLz4KICAgIDwvZGl2PgogICAgPCEtLSBFTkQgQ29udGVudCAtLT4KCiAgICA8ZGl2IGlkPSJmb290ZXIiPjwvZGl2Pgo8L2Rpdj4KPCEtLSBFTkQgQ29udGFpbmVyIC0tPgoKPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 14:52:22 GMT\", \"Expires\": \"Mon, 27 Mar 2017 14:52:22 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "eb9dd4d9-509a-452f-ab33-2c804bccd12c", - "fields": { - "request": "43a18821-67d9-4c9a-8615-e7f8102edd78", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "ec111b09-a522-4733-921b-c021bf2449b8", - "fields": { - "request": "c07230ca-bf47-452d-924c-8657150a0c42", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "ed39b226-8361-4a10-861f-679ed922208a", - "fields": { - "request": "8ae47948-4223-4ae5-9f00-d3fc27336e35", - "status_code": 200, - "raw_body": "CjwhRE9DVFlQRSBodG1sPgo8aHRtbD4KPGhlYWQ+CiAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogIDx0aXRsZT5Td2FnZ2VyIFVJPC90aXRsZT4KICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2ltYWdlcy9mYXZpY29uLTMyeDMyLnBuZyIgc2l6ZXM9IjMyeDMyIiAvPgogIDxsaW5rIHJlbD0iaWNvbiIgdHlwZT0iaW1hZ2UvcG5nIiBocmVmPSIvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvaW1hZ2VzL2Zhdmljb24tMTZ4MTYucG5nIiBzaXplcz0iMTZ4MTYiIC8+CiAgPGxpbmsgaHJlZj0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2Nzcy90eXBvZ3JhcGh5LmNzcycgbWVkaWE9J3NjcmVlbicgcmVsPSdzdHlsZXNoZWV0JyB0eXBlPSd0ZXh0L2NzcycvPgogIDxsaW5rIGhyZWY9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9jc3MvcmVzZXQuY3NzJyBtZWRpYT0nc2NyZWVuJyByZWw9J3N0eWxlc2hlZXQnIHR5cGU9J3RleHQvY3NzJy8+CiAgPGxpbmsgaHJlZj0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2Nzcy9zY3JlZW4uY3NzJyBtZWRpYT0nc2NyZWVuJyByZWw9J3N0eWxlc2hlZXQnIHR5cGU9J3RleHQvY3NzJy8+CiAgPGxpbmsgaHJlZj0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2Nzcy9yZXNldC5jc3MnIG1lZGlhPSdwcmludCcgcmVsPSdzdHlsZXNoZWV0JyB0eXBlPSd0ZXh0L2NzcycvPgogIDxsaW5rIGhyZWY9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9jc3MvcHJpbnQuY3NzJyBtZWRpYT0ncHJpbnQnIHJlbD0nc3R5bGVzaGVldCcgdHlwZT0ndGV4dC9jc3MnLz4KICAKICAKICAKCiAgPHNjcmlwdCBzcmM9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9saWIvb2JqZWN0LWFzc2lnbi1wb2xseWZpbGwuanMnIHR5cGU9J3RleHQvamF2YXNjcmlwdCc+PC9zY3JpcHQ+CiAgPHNjcmlwdCBzcmM9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9saWIvanF1ZXJ5LTEuOC4wLm1pbi5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4KICA8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2xpYi9qcXVlcnkuc2xpZGV0by5taW4uanMnIHR5cGU9J3RleHQvamF2YXNjcmlwdCc+PC9zY3JpcHQ+CiAgPHNjcmlwdCBzcmM9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9saWIvanF1ZXJ5LndpZ2dsZS5taW4uanMnIHR5cGU9J3RleHQvamF2YXNjcmlwdCc+PC9zY3JpcHQ+CiAgPHNjcmlwdCBzcmM9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9saWIvanF1ZXJ5LmJhLWJicS5taW4uanMnIHR5cGU9J3RleHQvamF2YXNjcmlwdCc+PC9zY3JpcHQ+CiAgPHNjcmlwdCBzcmM9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9saWIvaGFuZGxlYmFycy0yLjAuMC5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4KICA8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2xpYi9qcy15YW1sLm1pbi5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4KICA8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2xpYi9sb2Rhc2gubWluLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgogIDxzY3JpcHQgc3JjPScvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvbGliL2JhY2tib25lLW1pbi5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4KICA8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL3N3YWdnZXItdWkubWluLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgogIDxzY3JpcHQgc3JjPScvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvbGliL2hpZ2hsaWdodC45LjEuMC5wYWNrLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgogIDxzY3JpcHQgc3JjPScvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvbGliL2hpZ2hsaWdodC45LjEuMC5wYWNrX2V4dGVuZGVkLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgogIDxzY3JpcHQgc3JjPScvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvbGliL2pzb25lZGl0b3IubWluLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgogIDxzY3JpcHQgc3JjPScvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvbGliL21hcmtlZC5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4KICA8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2xpYi9zd2FnZ2VyLW9hdXRoLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgoKICA8IS0tIFNvbWUgYmFzaWMgdHJhbnNsYXRpb25zIC0tPgogIDwhLS0gPHNjcmlwdCBzcmM9J2xhbmcvdHJhbnNsYXRvci5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4gLS0+CiAgPCEtLSA8c2NyaXB0IHNyYz0nbGFuZy9ydS5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4gLS0+CiAgPCEtLSA8c2NyaXB0IHNyYz0nbGFuZy9lbi5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4gLS0+Cgo8L2hlYWQ+Cgo8Ym9keSBjbGFzcz0ic3dhZ2dlci1zZWN0aW9uIj4KCjxkaXYgaWQ9J2hlYWRlcic+CiAgPGRpdiBjbGFzcz0ic3dhZ2dlci11aS13cmFwIj4KICAgIAogICAgICA8YSBpZD0ibG9nbyIgaHJlZj0iaHR0cDovL3N3YWdnZXIuaW8iPjxpbWcgY2xhc3M9ImxvZ29fX2ltZyIgYWx0PSJzd2FnZ2VyIiBoZWlnaHQ9IjMwIiB3aWR0aD0iMzAiIHNyYz0iL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2ltYWdlcy9sb2dvX3NtYWxsLnBuZyIgLz48c3BhbiBjbGFzcz0ibG9nb19fdGl0bGUiPnN3YWdnZXI8L3NwYW4+PC9hPgogICAgCiAgICA8Zm9ybSBpZD0nYXBpX3NlbGVjdG9yJz4KICAgICAgPGlucHV0IGlkPSJpbnB1dF9iYXNlVXJsIiBuYW1lPSJiYXNlVXJsIiB0eXBlPSJoaWRkZW4iLz4KICAgICAgCiAgICAgICAgPGlucHV0IHR5cGU9J2hpZGRlbicgbmFtZT0nY3NyZm1pZGRsZXdhcmV0b2tlbicgdmFsdWU9J3c3STRHVlVvSnc1RWhZSExkeFc4N3NBaDhKck00UnVmVmRQVFNyTWp3dGczRTZKZFdZckFaOWgxNkV4Qm9ScTQnIC8+CiAgICAgICAgCiAgICAgICAgICA8ZGl2IGNsYXNzPSJpbnB1dCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgIAogICAgICAgICAgICAgIEhlbGxvLCBrYXBlCiAgICAgICAgICAgIAogICAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgICAKICAgICAgICAKICAgICAgCgogICAgICAKICAgICAgICAKICAgICAgICAgIDxkaXYgY2xhc3M9J2lucHV0Jz48YSBpZD0iYXV0aCIgY2xhc3M9ImhlYWRlcl9fYnRuIiBocmVmPSI/bmV4dD0vYXBpIiBkYXRhLXN3LXRyYW5zbGF0ZT5EamFuZ28gTG9nb3V0PC9hPjwvZGl2PgogICAgICAgIAogICAgICAKICAgICAgPGRpdiBpZD0nYXV0aF9jb250YWluZXInPjwvZGl2PgogICAgPC9mb3JtPgogIDwvZGl2Pgo8L2Rpdj4KCgo8ZGl2IGlkPSJtZXNzYWdlLWJhciIgY2xhc3M9InN3YWdnZXItdWktd3JhcCIgZGF0YS1zdy10cmFuc2xhdGU+Jm5ic3A7PC9kaXY+CjxkaXYgaWQ9InN3YWdnZXItdWktY29udGFpbmVyIiBjbGFzcz0ic3dhZ2dlci11aS13cmFwIj48L2Rpdj4KCjxzY3JpcHQgaWQ9ImRycy1zZXR0aW5ncyIgdHlwZT0iYXBwbGljYXRpb24vanNvbiI+CnsiYXBpc1NvcnRlciI6IG51bGwsICJkb2NFeHBhbnNpb24iOiBudWxsLCAianNvbkVkaXRvciI6IGZhbHNlLCAib3BlcmF0aW9uc1NvcnRlciI6IG51bGwsICJzaG93UmVxdWVzdEhlYWRlcnMiOiBmYWxzZSwgInN1cHBvcnRlZFN1Ym1pdE1ldGhvZHMiOiBbImdldCIsICJwb3N0IiwgInB1dCIsICJkZWxldGUiLCAicGF0Y2giXX0KPC9zY3JpcHQ+Cgo8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2luaXQuanMnIHR5cGU9J3RleHQvamF2YXNjcmlwdCc+PC9zY3JpcHQ+CgoKCjwvYm9keT4KPC9odG1sPgo=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Allow\": \"GET, HEAD, OPTIONS\", \"Vary\": \"Accept\"}" - } -}, -{ - "model": "silk.response", - "pk": "ed690b5c-39f0-45b6-9a58-ea2e5c5d08be", - "fields": { - "request": "47736298-9bc2-46a8-addd-0cc9fb2921c3", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "ef4d0ab2-519d-4cc0-b3b7-be27667b5598", - "fields": { - "request": "84afa3cb-5cc3-47ed-b2a5-85e13a06389f", - "status_code": 500, - "raw_body": "QXR0cmlidXRlRXJyb3IgYXQgL2FwaS9zdHVkZW50cy8xL2Jvb2ttYXJrZWQtdmFjYW5jaWVzLwonZGljdCcgb2JqZWN0IGhhcyBubyBhdHRyaWJ1dGUgJ2lkJwoKUmVxdWVzdCBNZXRob2Q6IFBPU1QKUmVxdWVzdCBVUkw6IGh0dHA6Ly8xMjcuMC4wLjE6ODAwMC9hcGkvc3R1ZGVudHMvMS9ib29rbWFya2VkLXZhY2FuY2llcy8KRGphbmdvIFZlcnNpb246IDEuMTAuNQpQeXRob24gRXhlY3V0YWJsZTogQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXHB5dGhvbi5leGUKUHl0aG9uIFZlcnNpb246IDMuNi4wClB5dGhvbiBQYXRoOiBbJ0Q6XFxQUExBJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXHB5dGhvbjM2LnppcCcsICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyXFxETExzJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXGxpYicsICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXGxpYlxcc2l0ZS1wYWNrYWdlcyddClNlcnZlciB0aW1lOiBNb24sIDI3IE1hciAyMDE3IDE1OjM1OjEyICswMDAwCkluc3RhbGxlZCBBcHBsaWNhdGlvbnM6ClsnZGphbmdvLmNvbnRyaWIuYWRtaW4nLAogJ2RqYW5nby5jb250cmliLmF1dGgnLAogJ2RqYW5nby5jb250cmliLmNvbnRlbnR0eXBlcycsCiAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMnLAogJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzJywKICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcycsCiAnd2VicGFja19sb2FkZXInLAogJ2NvcmUnLAogJ3Jlc3RfZnJhbWV3b3JrJywKICdkamFuZ29fbm9zZScsCiAncmVzdF9mcmFtZXdvcmtfc3dhZ2dlcicsCiAnc2lsayddCkluc3RhbGxlZCBNaWRkbGV3YXJlOgpbJ2RqYW5nby5taWRkbGV3YXJlLnNlY3VyaXR5LlNlY3VyaXR5TWlkZGxld2FyZScsCiAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMubWlkZGxld2FyZS5TZXNzaW9uTWlkZGxld2FyZScsCiAnZGphbmdvLm1pZGRsZXdhcmUuY29tbW9uLkNvbW1vbk1pZGRsZXdhcmUnLAogJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5hdXRoLm1pZGRsZXdhcmUuQXV0aGVudGljYXRpb25NaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5tZXNzYWdlcy5taWRkbGV3YXJlLk1lc3NhZ2VNaWRkbGV3YXJlJywKICdkamFuZ28ubWlkZGxld2FyZS5jbGlja2phY2tpbmcuWEZyYW1lT3B0aW9uc01pZGRsZXdhcmUnLAogJ3NpbGsubWlkZGxld2FyZS5TaWxreU1pZGRsZXdhcmUnXQoKClRyYWNlYmFjazogIAoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXGRqYW5nb1xjb3JlXGhhbmRsZXJzXGV4Y2VwdGlvbi5weSIgaW4gaW5uZXIKICAzOS4gICAgICAgICAgICAgcmVzcG9uc2UgPSBnZXRfcmVzcG9uc2UocmVxdWVzdCkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cY29yZVxoYW5kbGVyc1xiYXNlLnB5IiBpbiBfZ2V0X3Jlc3BvbnNlCiAgMTg3LiAgICAgICAgICAgICAgICAgcmVzcG9uc2UgPSBzZWxmLnByb2Nlc3NfZXhjZXB0aW9uX2J5X21pZGRsZXdhcmUoZSwgcmVxdWVzdCkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cY29yZVxoYW5kbGVyc1xiYXNlLnB5IiBpbiBfZ2V0X3Jlc3BvbnNlCiAgMTg1LiAgICAgICAgICAgICAgICAgcmVzcG9uc2UgPSB3cmFwcGVkX2NhbGxiYWNrKHJlcXVlc3QsICpjYWxsYmFja19hcmdzLCAqKmNhbGxiYWNrX2t3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cdmlld3NcZGVjb3JhdG9yc1xjc3JmLnB5IiBpbiB3cmFwcGVkX3ZpZXcKICA1OC4gICAgICAgICByZXR1cm4gdmlld19mdW5jKCphcmdzLCAqKmt3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3c2V0cy5weSIgaW4gdmlldwogIDgzLiAgICAgICAgICAgICByZXR1cm4gc2VsZi5kaXNwYXRjaChyZXF1ZXN0LCAqYXJncywgKiprd2FyZ3MpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNccmVzdF9mcmFtZXdvcmtcdmlld3MucHkiIGluIGRpc3BhdGNoCiAgNDgzLiAgICAgICAgICAgICByZXNwb25zZSA9IHNlbGYuaGFuZGxlX2V4Y2VwdGlvbihleGMpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNccmVzdF9mcmFtZXdvcmtcdmlld3MucHkiIGluIGhhbmRsZV9leGNlcHRpb24KICA0NDMuICAgICAgICAgICAgIHNlbGYucmFpc2VfdW5jYXVnaHRfZXhjZXB0aW9uKGV4YykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3cy5weSIgaW4gZGlzcGF0Y2gKICA0ODAuICAgICAgICAgICAgIHJlc3BvbnNlID0gaGFuZGxlcihyZXF1ZXN0LCAqYXJncywgKiprd2FyZ3MpCgpGaWxlICJEOlxQUExBXGNvcmVcdmlld3NcYWNjb3VudHMucHkiIGluIGJvb2ttYXJrX3ZhY2FuY2llcwogIDMwLiAgICAgICAgIHZhY2FuY3kgPSBnZXRfb2JqZWN0X29yXzQwNChWYWNhbmN5Lm9iamVjdHMuYWxsKCksIHBrPXJlcXVlc3QuZGF0YS5pZCkKCkV4Y2VwdGlvbiBUeXBlOiBBdHRyaWJ1dGVFcnJvciBhdCAvYXBpL3N0dWRlbnRzLzEvYm9va21hcmtlZC12YWNhbmNpZXMvCkV4Y2VwdGlvbiBWYWx1ZTogJ2RpY3QnIG9iamVjdCBoYXMgbm8gYXR0cmlidXRlICdpZCcKUmVxdWVzdCBpbmZvcm1hdGlvbjoKVVNFUjoga2FwZQoKR0VUOiBObyBHRVQgZGF0YQoKUE9TVDogTm8gUE9TVCBkYXRhCgpGSUxFUzogTm8gRklMRVMgZGF0YQoKQ09PS0lFUzoKc2Vzc2lvbmlkID0gJ2JsdDg3N2c1ZmptdWN4eTNkZDV1eGNpemF2YjlvcG92Jwpjc3JmdG9rZW4gPSAnMUVFUDJTd0t0MUs5UWJXbkZQU3lXUElpYnRPN01BYVZxS0xFZW9vRmdZVnlkallQb2duME93cDI5b1VXNkE2SycKCk1FVEE6CkFMTFVTRVJTUFJPRklMRSA9ICdDOlxcUHJvZ3JhbURhdGEnCkFQUERBVEEgPSAnQzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmcnCkNPTU1PTlBST0dSQU1GSUxFUyA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcQ29tbW9uIEZpbGVzJwpDT01NT05QUk9HUkFNRklMRVMoWDg2KSA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcQ29tbW9uIEZpbGVzJwpDT01NT05QUk9HUkFNVzY0MzIgPSAnQzpcXFByb2dyYW0gRmlsZXNcXENvbW1vbiBGaWxlcycKQ09NUFVURVJOQU1FID0gJ0ZBUkhBTicKQ09NU1BFQyA9ICdDOlxcV0lORE9XU1xcc3lzdGVtMzJcXGNtZC5leGUnCkNPTlRFTlRfTEVOR1RIID0gJzExNCcKQ09OVEVOVF9UWVBFID0gJ2FwcGxpY2F0aW9uL2pzb24nCkNTUkZfQ09PS0lFID0gJzFFRVAyU3dLdDFLOVFiV25GUFN5V1BJaWJ0TzdNQWFWcUtMRWVvb0ZnWVZ5ZGpZUG9nbjBPd3AyOW9VVzZBNksnCkRKQU5HT19TRVRUSU5HU19NT0RVTEUgPSAna2FwZS5zZXR0aW5ncycKRlBTX0JST1dTRVJfQVBQX1BST0ZJTEVfU1RSSU5HID0gJ0ludGVybmV0IEV4cGxvcmVyJwpGUFNfQlJPV1NFUl9VU0VSX1BST0ZJTEVfU1RSSU5HID0gJ0RlZmF1bHQnCkZQX05PX0hPU1RfQ0hFQ0sgPSAnTk8nCkdBVEVXQVlfSU5URVJGQUNFID0gJ0NHSS8xLjEnCkhPTUVEUklWRSA9ICdDOicKSE9NRVBBVEggPSAnXFxVc2Vyc1xcZmFyaGFfMDAwJwpIVFRQX0FDQ0VQVCA9ICdhcHBsaWNhdGlvbi9qc29uJwpIVFRQX0FDQ0VQVF9FTkNPRElORyA9ICdnemlwLCBkZWZsYXRlLCBicicKSFRUUF9BQ0NFUFRfTEFOR1VBR0UgPSAnaWQtSUQsaWQ7cT0wLjgsZW4tVVM7cT0wLjYsZW47cT0wLjQnCkhUVFBfQ09OTkVDVElPTiA9ICdrZWVwLWFsaXZlJwpIVFRQX0NPT0tJRSA9ICdzZXNzaW9uaWQ9Ymx0ODc3ZzVmam11Y3h5M2RkNXV4Y2l6YXZiOW9wb3Y7IGNzcmZ0b2tlbj0xRUVQMlN3S3QxSzlRYlduRlBTeVdQSWlidE83TUFhVnFLTEVlb29GZ1lWeWRqWVBvZ24wT3dwMjlvVVc2QTZLJwpIVFRQX0hPU1QgPSAnMTI3LjAuMC4xOjgwMDAnCkhUVFBfT1JJR0lOID0gJ2h0dHA6Ly8xMjcuMC4wLjE6ODAwMCcKSFRUUF9SRUZFUkVSID0gJ2h0dHA6Ly8xMjcuMC4wLjE6ODAwMC9hcGknCkhUVFBfVVNFUl9BR0VOVCA9ICdNb3ppbGxhLzUuMCAoV2luZG93cyBOVCAxMC4wOyBXT1c2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzU2LjAuMjkyNC44NyBTYWZhcmkvNTM3LjM2JwpIVFRQX1hfQ1NSRlRPS0VOID0gJ2pxOTFCdUY1ZTVSN1NqTUZSYzJUTmZ2V1U4bERPNnd5SXdnUU4weDAxMjJ3ZnJPN0FEeGxGV2NHUzNyczg2c24nCkxPQ0FMQVBQREFUQSA9ICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWwnCkxPR09OU0VSVkVSID0gJ1xcXFxGQVJIQU4nCk5VTUJFUl9PRl9QUk9DRVNTT1JTID0gJzInCk9ORURSSVZFID0gJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxPbmVEcml2ZScKT1MgPSAnV2luZG93c19OVCcKUEFUSCA9ICdDOlxcUHJvZ3JhbURhdGFcXE9yYWNsZVxcSmF2YVxcamF2YXBhdGg7QzpcXFByb2dyYW0gRmlsZXNcXEhhc2tlbGxcXGJpbjtDOlxcUHJvZ3JhbSBGaWxlc1xcSGFza2VsbCBQbGF0Zm9ybVxcNy4xMC4zXFxsaWJcXGV4dHJhbGlic1xcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxIYXNrZWxsIFBsYXRmb3JtXFw3LjEwLjNcXGJpbjtDOlxcV0lORE9XU1xcc3lzdGVtMzI7QzpcXFdJTkRPV1M7QzpcXFdJTkRPV1NcXFN5c3RlbTMyXFxXYmVtO0M6XFxXSU5ET1dTXFxTeXN0ZW0zMlxcV2luZG93c1Bvd2VyU2hlbGxcXHYxLjBcXDtDOlxcUHJvZ3JhbSBGaWxlc1xcSGFza2VsbCBQbGF0Zm9ybVxcNy4xMC4zXFxtaW5nd1xcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxKYXZhXFxqZGsxLjguMF83N1xcYmluO0M6XFxjeWd3aW42NFxcYmluOyVsb2NhbGFwcGRhdGElXFxNaWNyb3NvZnRcXFdpbmRvd3NBcHBzO0Q6XFxYQU1QUFxccGhwO0M6XFxQcm9ncmFtIEZpbGVzXFxHaXRcXGNtZDtDOlxceGFtcHBcXHBocDtDOlxcUHJvZ3JhbURhdGFcXENvbXBvc2VyU2V0dXBcXGJpbjtDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcbm9kZWpzXFw7QzpcXFByb2dyYW0gRmlsZXNcXFBvc3RncmVTUUxcXDkuNlxcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxNQVRMQUJcXFIyMDE3YVxcYmluO0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXFNjcmlwdHNcXDtDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyXFw7QzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmdcXGNhYmFsXFxiaW47RDpcXFhBTVBQXFxwaHA7QzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmdcXENvbXBvc2VyXFx2ZW5kb3JcXGJpbjtDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXE1pY3Jvc29mdFxcV2luZG93c0FwcHM7QzpcXHB5dGhvbi0zLjYuMCcKUEFUSEVYVCA9ICcuQ09NOy5FWEU7LkJBVDsuQ01EOy5WQlM7LlZCRTsuSlM7LkpTRTsuV1NGOy5XU0g7Lk1TQycKUEFUSF9JTkZPID0gJy9hcGkvc3R1ZGVudHMvMS9ib29rbWFya2VkLXZhY2FuY2llcy8nClBST0NFU1NPUl9BUkNISVRFQ1RVUkUgPSAneDg2JwpQUk9DRVNTT1JfQVJDSElURVc2NDMyID0gJ0FNRDY0JwpQUk9DRVNTT1JfSURFTlRJRklFUiA9ICdJbnRlbDY0IEZhbWlseSA2IE1vZGVsIDU4IFN0ZXBwaW5nIDksIEdlbnVpbmVJbnRlbCcKUFJPQ0VTU09SX0xFVkVMID0gJzYnClBST0NFU1NPUl9SRVZJU0lPTiA9ICczYTA5JwpQUk9HUkFNREFUQSA9ICdDOlxcUHJvZ3JhbURhdGEnClBST0dSQU1GSUxFUyA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KScKUFJPR1JBTUZJTEVTKFg4NikgPSAnQzpcXFByb2dyYW0gRmlsZXMgKHg4NiknClBST0dSQU1XNjQzMiA9ICdDOlxcUHJvZ3JhbSBGaWxlcycKUFJPTVBUID0gJyRQJEcnClBTTU9EVUxFUEFUSCA9ICdDOlxcV0lORE9XU1xcc3lzdGVtMzJcXFdpbmRvd3NQb3dlclNoZWxsXFx2MS4wXFxNb2R1bGVzXFwnClBVQkxJQyA9ICdDOlxcVXNlcnNcXFB1YmxpYycKUVVFUllfU1RSSU5HID0gJycKUkVNT1RFX0FERFIgPSAnMTI3LjAuMC4xJwpSRU1PVEVfSE9TVCA9ICcnClJFUVVFU1RfTUVUSE9EID0gJ1BPU1QnClJVTl9NQUlOID0gJ3RydWUnClNDUklQVF9OQU1FID0gJycKU0VSVkVSX05BTUUgPSAnRmFyaGFuJwpTRVJWRVJfUE9SVCA9ICc4MDAwJwpTRVJWRVJfUFJPVE9DT0wgPSAnSFRUUC8xLjEnClNFUlZFUl9TT0ZUV0FSRSA9ICdXU0dJU2VydmVyLzAuMicKU0VTU0lPTk5BTUUgPSAnQ29uc29sZScKU1lTVEVNRFJJVkUgPSAnQzonClNZU1RFTVJPT1QgPSAnQzpcXFdJTkRPV1MnClRFTVAgPSAnQzpcXFVzZXJzXFxGQVJIQV9+MVxcQXBwRGF0YVxcTG9jYWxcXFRlbXAnClRNUCA9ICdDOlxcVXNlcnNcXEZBUkhBX34xXFxBcHBEYXRhXFxMb2NhbFxcVGVtcCcKVVNFUkRPTUFJTiA9ICdGYXJoYW4nClVTRVJET01BSU5fUk9BTUlOR1BST0ZJTEUgPSAnRmFyaGFuJwpVU0VSTkFNRSA9ICdGYXJoYW4gRmFyYXNkYWsnClVTRVJQUk9GSUxFID0gJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwJwpWQk9YX01TSV9JTlNUQUxMX1BBVEggPSAnQzpcXFByb2dyYW0gRmlsZXNcXE9yYWNsZVxcVmlydHVhbEJveFxcJwpXSU5ESVIgPSAnQzpcXFdJTkRPV1MnCndzZ2kuZXJyb3JzID0gPF9pby5UZXh0SU9XcmFwcGVyIG5hbWU9JzxzdGRlcnI+JyBtb2RlPSd3JyBlbmNvZGluZz0ndXRmLTgnPgp3c2dpLmZpbGVfd3JhcHBlciA9ICcnCndzZ2kuaW5wdXQgPSA8X2lvLkJ1ZmZlcmVkUmVhZGVyIG5hbWU9MjA0MD4Kd3NnaS5tdWx0aXByb2Nlc3MgPSBGYWxzZQp3c2dpLm11bHRpdGhyZWFkID0gVHJ1ZQp3c2dpLnJ1bl9vbmNlID0gRmFsc2UKd3NnaS51cmxfc2NoZW1lID0gJ2h0dHAnCndzZ2kudmVyc2lvbiA9IAoKU2V0dGluZ3M6ClVzaW5nIHNldHRpbmdzIG1vZHVsZSBrYXBlLnNldHRpbmdzCkFCU09MVVRFX1VSTF9PVkVSUklERVMgPSB7fQpBRE1JTlMgPSBbXQpBTExPV0VEX0hPU1RTID0gWydib3QucmVjcnVpdC5pZCcsICcxMDQuMjM2Ljc2LjE2MScsICdsb2NhbGhvc3QnLCAnMTI3LjAuMC4xJ10KQVBQRU5EX1NMQVNIID0gVHJ1ZQpBVVRIRU5USUNBVElPTl9CQUNLRU5EUyA9IFsnZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQnXQpBVVRIX1BBU1NXT1JEX1ZBTElEQVRPUlMgPSAnKioqKioqKioqKioqKioqKioqKionCkFVVEhfVVNFUl9NT0RFTCA9ICdhdXRoLlVzZXInCkJBU0VfRElSID0gJ0Q6XFxQUExBJwpDQUNIRVMgPSB7J2RlZmF1bHQnOiB7J0JBQ0tFTkQnOiAnZGphbmdvLmNvcmUuY2FjaGUuYmFja2VuZHMubG9jbWVtLkxvY01lbUNhY2hlJ319CkNBQ0hFX01JRERMRVdBUkVfQUxJQVMgPSAnZGVmYXVsdCcKQ0FDSEVfTUlERExFV0FSRV9LRVlfUFJFRklYID0gJyoqKioqKioqKioqKioqKioqKioqJwpDQUNIRV9NSURETEVXQVJFX1NFQ09ORFMgPSA2MDAKQ1NSRl9DT09LSUVfQUdFID0gMzE0NDk2MDAKQ1NSRl9DT09LSUVfRE9NQUlOID0gTm9uZQpDU1JGX0NPT0tJRV9IVFRQT05MWSA9IEZhbHNlCkNTUkZfQ09PS0lFX05BTUUgPSAnY3NyZnRva2VuJwpDU1JGX0NPT0tJRV9QQVRIID0gJy8nCkNTUkZfQ09PS0lFX1NFQ1VSRSA9IEZhbHNlCkNTUkZfRkFJTFVSRV9WSUVXID0gJ2RqYW5nby52aWV3cy5jc3JmLmNzcmZfZmFpbHVyZScKQ1NSRl9IRUFERVJfTkFNRSA9ICdIVFRQX1hfQ1NSRlRPS0VOJwpDU1JGX1RSVVNURURfT1JJR0lOUyA9IFtdCkRBVEFCQVNFUyA9IHsnZGVmYXVsdCc6IHsnRU5HSU5FJzogJ2RqYW5nby5kYi5iYWNrZW5kcy5wb3N0Z3Jlc3FsX3BzeWNvcGcyJywgJ05BTUUnOiAna2FwZScsICdVU0VSJzogJ2thcGUnLCAnUEFTU1dPUkQnOiAnKioqKioqKioqKioqKioqKioqKionLCAnSE9TVCc6ICdsb2NhbGhvc3QnLCAnUE9SVCc6ICcnLCAnQVRPTUlDX1JFUVVFU1RTJzogRmFsc2UsICdBVVRPQ09NTUlUJzogVHJ1ZSwgJ0NPTk5fTUFYX0FHRSc6IDAsICdPUFRJT05TJzoge30sICdUSU1FX1pPTkUnOiBOb25lLCAnVEVTVCc6IHsnQ0hBUlNFVCc6IE5vbmUsICdDT0xMQVRJT04nOiBOb25lLCAnTkFNRSc6IE5vbmUsICdNSVJST1InOiBOb25lfX19CkRBVEFCQVNFX1JPVVRFUlMgPSBbXQpEQVRBX1VQTE9BRF9NQVhfTUVNT1JZX1NJWkUgPSAyNjIxNDQwCkRBVEFfVVBMT0FEX01BWF9OVU1CRVJfRklFTERTID0gMTAwMApEQVRFVElNRV9GT1JNQVQgPSAnTiBqLCBZLCBQJwpEQVRFVElNRV9JTlBVVF9GT1JNQVRTID0gWyclWS0lbS0lZCAlSDolTTolUycsICclWS0lbS0lZCAlSDolTTolUy4lZicsICclWS0lbS0lZCAlSDolTScsICclWS0lbS0lZCcsICclbS8lZC8lWSAlSDolTTolUycsICclbS8lZC8lWSAlSDolTTolUy4lZicsICclbS8lZC8lWSAlSDolTScsICclbS8lZC8lWScsICclbS8lZC8leSAlSDolTTolUycsICclbS8lZC8leSAlSDolTTolUy4lZicsICclbS8lZC8leSAlSDolTScsICclbS8lZC8leSddCkRBVEVfRk9STUFUID0gJ04gaiwgWScKREFURV9JTlBVVF9GT1JNQVRTID0gWyclWS0lbS0lZCcsICclbS8lZC8lWScsICclbS8lZC8leScsICclYiAlZCAlWScsICclYiAlZCwgJVknLCAnJWQgJWIgJVknLCAnJWQgJWIsICVZJywgJyVCICVkICVZJywgJyVCICVkLCAlWScsICclZCAlQiAlWScsICclZCAlQiwgJVknXQpERUJVRyA9IFRydWUKREVCVUdfUFJPUEFHQVRFX0VYQ0VQVElPTlMgPSBGYWxzZQpERUNJTUFMX1NFUEFSQVRPUiA9ICcuJwpERUZBVUxUX0NIQVJTRVQgPSAndXRmLTgnCkRFRkFVTFRfQ09OVEVOVF9UWVBFID0gJ3RleHQvaHRtbCcKREVGQVVMVF9FWENFUFRJT05fUkVQT1JURVJfRklMVEVSID0gJ2RqYW5nby52aWV3cy5kZWJ1Zy5TYWZlRXhjZXB0aW9uUmVwb3J0ZXJGaWx0ZXInCkRFRkFVTFRfRklMRV9TVE9SQUdFID0gJ2RqYW5nby5jb3JlLmZpbGVzLnN0b3JhZ2UuRmlsZVN5c3RlbVN0b3JhZ2UnCkRFRkFVTFRfRlJPTV9FTUFJTCA9ICd3ZWJtYXN0ZXJAbG9jYWxob3N0JwpERUZBVUxUX0lOREVYX1RBQkxFU1BBQ0UgPSAnJwpERUZBVUxUX1RBQkxFU1BBQ0UgPSAnJwpESVNBTExPV0VEX1VTRVJfQUdFTlRTID0gW10KRU1BSUxfQkFDS0VORCA9ICdkamFuZ28uY29yZS5tYWlsLmJhY2tlbmRzLnNtdHAuRW1haWxCYWNrZW5kJwpFTUFJTF9IT1NUID0gJ2xvY2FsaG9zdCcKRU1BSUxfSE9TVF9QQVNTV09SRCA9ICcqKioqKioqKioqKioqKioqKioqKicKRU1BSUxfSE9TVF9VU0VSID0gJycKRU1BSUxfUE9SVCA9IDI1CkVNQUlMX1NTTF9DRVJURklMRSA9IE5vbmUKRU1BSUxfU1NMX0tFWUZJTEUgPSAnKioqKioqKioqKioqKioqKioqKionCkVNQUlMX1NVQkpFQ1RfUFJFRklYID0gJ1tEamFuZ29dICcKRU1BSUxfVElNRU9VVCA9IE5vbmUKRU1BSUxfVVNFX1NTTCA9IEZhbHNlCkVNQUlMX1VTRV9UTFMgPSBGYWxzZQpGSUxFX0NIQVJTRVQgPSAndXRmLTgnCkZJTEVfVVBMT0FEX0RJUkVDVE9SWV9QRVJNSVNTSU9OUyA9IE5vbmUKRklMRV9VUExPQURfSEFORExFUlMgPSBbJ2RqYW5nby5jb3JlLmZpbGVzLnVwbG9hZGhhbmRsZXIuTWVtb3J5RmlsZVVwbG9hZEhhbmRsZXInLCAnZGphbmdvLmNvcmUuZmlsZXMudXBsb2FkaGFuZGxlci5UZW1wb3JhcnlGaWxlVXBsb2FkSGFuZGxlciddCkZJTEVfVVBMT0FEX01BWF9NRU1PUllfU0laRSA9IDI2MjE0NDAKRklMRV9VUExPQURfUEVSTUlTU0lPTlMgPSBOb25lCkZJTEVfVVBMT0FEX1RFTVBfRElSID0gTm9uZQpGSVJTVF9EQVlfT0ZfV0VFSyA9IDAKRklYVFVSRV9ESVJTID0gW10KRk9SQ0VfU0NSSVBUX05BTUUgPSBOb25lCkZPUk1BVF9NT0RVTEVfUEFUSCA9IE5vbmUKR1pJUF9DT05URU5UX1RZUEVTID0gCklHTk9SQUJMRV80MDRfVVJMUyA9IFtdCklOU1RBTExFRF9BUFBTID0gWydkamFuZ28uY29udHJpYi5hZG1pbicsICdkamFuZ28uY29udHJpYi5hdXRoJywgJ2RqYW5nby5jb250cmliLmNvbnRlbnR0eXBlcycsICdkamFuZ28uY29udHJpYi5zZXNzaW9ucycsICdkamFuZ28uY29udHJpYi5tZXNzYWdlcycsICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcycsICd3ZWJwYWNrX2xvYWRlcicsICdjb3JlJywgJ3Jlc3RfZnJhbWV3b3JrJywgJ2RqYW5nb19ub3NlJywgJ3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXInLCAnc2lsayddCklOVEVSTkFMX0lQUyA9IFtdCkxBTkdVQUdFUyA9IFsoJ2FmJywgJ0FmcmlrYWFucycpLCAoJ2FyJywgJ0FyYWJpYycpLCAoJ2FzdCcsICdBc3R1cmlhbicpLCAoJ2F6JywgJ0F6ZXJiYWlqYW5pJyksICgnYmcnLCAnQnVsZ2FyaWFuJyksICgnYmUnLCAnQmVsYXJ1c2lhbicpLCAoJ2JuJywgJ0JlbmdhbGknKSwgKCdicicsICdCcmV0b24nKSwgKCdicycsICdCb3NuaWFuJyksICgnY2EnLCAnQ2F0YWxhbicpLCAoJ2NzJywgJ0N6ZWNoJyksICgnY3knLCAnV2Vsc2gnKSwgKCdkYScsICdEYW5pc2gnKSwgKCdkZScsICdHZXJtYW4nKSwgKCdkc2InLCAnTG93ZXIgU29yYmlhbicpLCAoJ2VsJywgJ0dyZWVrJyksICgnZW4nLCAnRW5nbGlzaCcpLCAoJ2VuLWF1JywgJ0F1c3RyYWxpYW4gRW5nbGlzaCcpLCAoJ2VuLWdiJywgJ0JyaXRpc2ggRW5nbGlzaCcpLCAoJ2VvJywgJ0VzcGVyYW50bycpLCAoJ2VzJywgJ1NwYW5pc2gnKSwgKCdlcy1hcicsICdBcmdlbnRpbmlhbiBTcGFuaXNoJyksICgnZXMtY28nLCAnQ29sb21iaWFuIFNwYW5pc2gnKSwgKCdlcy1teCcsICdNZXhpY2FuIFNwYW5pc2gnKSwgKCdlcy1uaScsICdOaWNhcmFndWFuIFNwYW5pc2gnKSwgKCdlcy12ZScsICdWZW5lenVlbGFuIFNwYW5pc2gnKSwgKCdldCcsICdFc3RvbmlhbicpLCAoJ2V1JywgJ0Jhc3F1ZScpLCAoJ2ZhJywgJ1BlcnNpYW4nKSwgKCdmaScsICdGaW5uaXNoJyksICgnZnInLCAnRnJlbmNoJyksICgnZnknLCAnRnJpc2lhbicpLCAoJ2dhJywgJ0lyaXNoJyksICgnZ2QnLCAnU2NvdHRpc2ggR2FlbGljJyksICgnZ2wnLCAnR2FsaWNpYW4nKSwgKCdoZScsICdIZWJyZXcnKSwgKCdoaScsICdIaW5kaScpLCAoJ2hyJywgJ0Nyb2F0aWFuJyksICgnaHNiJywgJ1VwcGVyIFNvcmJpYW4nKSwgKCdodScsICdIdW5nYXJpYW4nKSwgKCdpYScsICdJbnRlcmxpbmd1YScpLCAoJ2lkJywgJ0luZG9uZXNpYW4nKSwgKCdpbycsICdJZG8nKSwgKCdpcycsICdJY2VsYW5kaWMnKSwgKCdpdCcsICdJdGFsaWFuJyksICgnamEnLCAnSmFwYW5lc2UnKSwgKCdrYScsICdHZW9yZ2lhbicpLCAoJ2trJywgJ0themFraCcpLCAoJ2ttJywgJ0tobWVyJyksICgna24nLCAnS2FubmFkYScpLCAoJ2tvJywgJ0tvcmVhbicpLCAoJ2xiJywgJ0x1eGVtYm91cmdpc2gnKSwgKCdsdCcsICdMaXRodWFuaWFuJyksICgnbHYnLCAnTGF0dmlhbicpLCAoJ21rJywgJ01hY2Vkb25pYW4nKSwgKCdtbCcsICdNYWxheWFsYW0nKSwgKCdtbicsICdNb25nb2xpYW4nKSwgKCdtcicsICdNYXJhdGhpJyksICgnbXknLCAnQnVybWVzZScpLCAoJ25iJywgJ05vcndlZ2lhbiBCb2ttw6VsJyksICgnbmUnLCAnTmVwYWxpJyksICgnbmwnLCAnRHV0Y2gnKSwgKCdubicsICdOb3J3ZWdpYW4gTnlub3JzaycpLCAoJ29zJywgJ09zc2V0aWMnKSwgKCdwYScsICdQdW5qYWJpJyksICgncGwnLCAnUG9saXNoJyksICgncHQnLCAnUG9ydHVndWVzZScpLCAoJ3B0LWJyJywgJ0JyYXppbGlhbiBQb3J0dWd1ZXNlJyksICgncm8nLCAnUm9tYW5pYW4nKSwgKCdydScsICdSdXNzaWFuJyksICgnc2snLCAnU2xvdmFrJyksICgnc2wnLCAnU2xvdmVuaWFuJyksICgnc3EnLCAnQWxiYW5pYW4nKSwgKCdzcicsICdTZXJiaWFuJyksICgnc3ItbGF0bicsICdTZXJiaWFuIExhdGluJyksICgnc3YnLCAnU3dlZGlzaCcpLCAoJ3N3JywgJ1N3YWhpbGknKSwgKCd0YScsICdUYW1pbCcpLCAoJ3RlJywgJ1RlbHVndScpLCAoJ3RoJywgJ1RoYWknKSwgKCd0cicsICdUdXJraXNoJyksICgndHQnLCAnVGF0YXInKSwgKCd1ZG0nLCAnVWRtdXJ0JyksICgndWsnLCAnVWtyYWluaWFuJyksICgndXInLCAnVXJkdScpLCAoJ3ZpJywgJ1ZpZXRuYW1lc2UnKSwgKCd6aC1oYW5zJywgJ1NpbXBsaWZpZWQgQ2hpbmVzZScpLCAoJ3poLWhhbnQnLCAnVHJhZGl0aW9uYWwgQ2hpbmVzZScpXQpMQU5HVUFHRVNfQklESSA9IFsnaGUnLCAnYXInLCAnZmEnLCAndXInXQpMQU5HVUFHRV9DT0RFID0gJ2VuLXVzJwpMQU5HVUFHRV9DT09LSUVfQUdFID0gTm9uZQpMQU5HVUFHRV9DT09LSUVfRE9NQUlOID0gTm9uZQpMQU5HVUFHRV9DT09LSUVfTkFNRSA9ICdkamFuZ29fbGFuZ3VhZ2UnCkxBTkdVQUdFX0NPT0tJRV9QQVRIID0gJy8nCkxPQ0FMRV9QQVRIUyA9IFtdCkxPR0dJTkcgPSB7fQpMT0dHSU5HX0NPTkZJRyA9ICdsb2dnaW5nLmNvbmZpZy5kaWN0Q29uZmlnJwpMT0dJTl9SRURJUkVDVF9VUkwgPSAnL2FjY291bnRzL3Byb2ZpbGUvJwpMT0dJTl9VUkwgPSAnL2FjY291bnRzL2xvZ2luLycKTE9HT1VUX1JFRElSRUNUX1VSTCA9IE5vbmUKTUFOQUdFUlMgPSBbXQpNRURJQV9ST09UID0gJy9ob21lL2ZpbGVzJwpNRURJQV9VUkwgPSAnL2ZpbGVzLycKTUVTU0FHRV9TVE9SQUdFID0gJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzLnN0b3JhZ2UuZmFsbGJhY2suRmFsbGJhY2tTdG9yYWdlJwpNSURETEVXQVJFID0gWydkamFuZ28ubWlkZGxld2FyZS5zZWN1cml0eS5TZWN1cml0eU1pZGRsZXdhcmUnLCAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMubWlkZGxld2FyZS5TZXNzaW9uTWlkZGxld2FyZScsICdkamFuZ28ubWlkZGxld2FyZS5jb21tb24uQ29tbW9uTWlkZGxld2FyZScsICdkamFuZ28ubWlkZGxld2FyZS5jc3JmLkNzcmZWaWV3TWlkZGxld2FyZScsICdkamFuZ28uY29udHJpYi5hdXRoLm1pZGRsZXdhcmUuQXV0aGVudGljYXRpb25NaWRkbGV3YXJlJywgJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzLm1pZGRsZXdhcmUuTWVzc2FnZU1pZGRsZXdhcmUnLCAnZGphbmdvLm1pZGRsZXdhcmUuY2xpY2tqYWNraW5nLlhGcmFtZU9wdGlvbnNNaWRkbGV3YXJlJywgJ3NpbGsubWlkZGxld2FyZS5TaWxreU1pZGRsZXdhcmUnXQpNSURETEVXQVJFX0NMQVNTRVMgPSBbJ2RqYW5nby5taWRkbGV3YXJlLmNvbW1vbi5Db21tb25NaWRkbGV3YXJlJywgJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJ10KTUlHUkFUSU9OX01PRFVMRVMgPSB7fQpNT05USF9EQVlfRk9STUFUID0gJ0YgaicKTk9TRV9BUkdTID0gWyctLXdpdGgtY292ZXJhZ2UnLCAnLS1jb3Zlci1wYWNrYWdlPWNvcmUudmlld3MnLCAnLS1jb3Zlci1odG1sLWRpcj10ZXN0L2JhY2tlbmQnLCAnLS1jb3Zlci1odG1sJ10KTlVNQkVSX0dST1VQSU5HID0gMApQQVNTV09SRF9IQVNIRVJTID0gJyoqKioqKioqKioqKioqKioqKioqJwpQQVNTV09SRF9SRVNFVF9USU1FT1VUX0RBWVMgPSAnKioqKioqKioqKioqKioqKioqKionClBSRVBFTkRfV1dXID0gRmFsc2UKUkVTVF9GUkFNRVdPUksgPSB7J0RFRkFVTFRfUEVSTUlTU0lPTl9DTEFTU0VTJzogWydyZXN0X2ZyYW1ld29yay5wZXJtaXNzaW9ucy5EamFuZ29Nb2RlbFBlcm1pc3Npb25zT3JBbm9uUmVhZE9ubHknXX0KUk9PVF9VUkxDT05GID0gJ2thcGUudXJscycKUlVOTklOR19ERVZTRVJWRVIgPSBUcnVlClNFQ1JFVF9LRVkgPSAnKioqKioqKioqKioqKioqKioqKionClNFQ1VSRV9CUk9XU0VSX1hTU19GSUxURVIgPSBGYWxzZQpTRUNVUkVfQ09OVEVOVF9UWVBFX05PU05JRkYgPSBGYWxzZQpTRUNVUkVfSFNUU19JTkNMVURFX1NVQkRPTUFJTlMgPSBGYWxzZQpTRUNVUkVfSFNUU19TRUNPTkRTID0gMApTRUNVUkVfUFJPWFlfU1NMX0hFQURFUiA9IE5vbmUKU0VDVVJFX1JFRElSRUNUX0VYRU1QVCA9IFtdClNFQ1VSRV9TU0xfSE9TVCA9IE5vbmUKU0VDVVJFX1NTTF9SRURJUkVDVCA9IEZhbHNlClNFUlZFUl9FTUFJTCA9ICdyb290QGxvY2FsaG9zdCcKU0VTU0lPTl9DQUNIRV9BTElBUyA9ICdkZWZhdWx0JwpTRVNTSU9OX0NPT0tJRV9BR0UgPSAxMjA5NjAwClNFU1NJT05fQ09PS0lFX0RPTUFJTiA9IE5vbmUKU0VTU0lPTl9DT09LSUVfSFRUUE9OTFkgPSBGYWxzZQpTRVNTSU9OX0NPT0tJRV9OQU1FID0gJ3Nlc3Npb25pZCcKU0VTU0lPTl9DT09LSUVfUEFUSCA9ICcvJwpTRVNTSU9OX0NPT0tJRV9TRUNVUkUgPSBGYWxzZQpTRVNTSU9OX0VOR0lORSA9ICdkamFuZ28uY29udHJpYi5zZXNzaW9ucy5iYWNrZW5kcy5kYicKU0VTU0lPTl9FWFBJUkVfQVRfQlJPV1NFUl9DTE9TRSA9IEZhbHNlClNFU1NJT05fRklMRV9QQVRIID0gTm9uZQpTRVNTSU9OX1NBVkVfRVZFUllfUkVRVUVTVCA9IEZhbHNlClNFU1NJT05fU0VSSUFMSVpFUiA9ICdkamFuZ28uY29udHJpYi5zZXNzaW9ucy5zZXJpYWxpemVycy5KU09OU2VyaWFsaXplcicKU0VUVElOR1NfTU9EVUxFID0gJ2thcGUuc2V0dGluZ3MnClNIT1JUX0RBVEVUSU1FX0ZPUk1BVCA9ICdtL2QvWSBQJwpTSE9SVF9EQVRFX0ZPUk1BVCA9ICdtL2QvWScKU0lHTklOR19CQUNLRU5EID0gJ2RqYW5nby5jb3JlLnNpZ25pbmcuVGltZXN0YW1wU2lnbmVyJwpTSUxFTkNFRF9TWVNURU1fQ0hFQ0tTID0gW10KU1RBVElDRklMRVNfRElSUyA9ICdEOlxcUFBMQVxcYXNzZXRzJwpTVEFUSUNGSUxFU19GSU5ERVJTID0gWydkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcy5maW5kZXJzLkZpbGVTeXN0ZW1GaW5kZXInLCAnZGphbmdvLmNvbnRyaWIuc3RhdGljZmlsZXMuZmluZGVycy5BcHBEaXJlY3Rvcmllc0ZpbmRlciddClNUQVRJQ0ZJTEVTX1NUT1JBR0UgPSAnZGphbmdvLmNvbnRyaWIuc3RhdGljZmlsZXMuc3RvcmFnZS5TdGF0aWNGaWxlc1N0b3JhZ2UnClNUQVRJQ19ST09UID0gJy9ob21lL2Fzc2V0cycKU1RBVElDX1VSTCA9ICcvYXNzZXRzLycKVEVNUExBVEVTID0gW3snQkFDS0VORCc6ICdkamFuZ28udGVtcGxhdGUuYmFja2VuZHMuZGphbmdvLkRqYW5nb1RlbXBsYXRlcycsICdESVJTJzogW10sICdBUFBfRElSUyc6IFRydWUsICdPUFRJT05TJzogeydjb250ZXh0X3Byb2Nlc3NvcnMnOiBbJ2RqYW5nby50ZW1wbGF0ZS5jb250ZXh0X3Byb2Nlc3NvcnMuZGVidWcnLCAnZGphbmdvLnRlbXBsYXRlLmNvbnRleHRfcHJvY2Vzc29ycy5yZXF1ZXN0JywgJ2RqYW5nby5jb250cmliLmF1dGguY29udGV4dF9wcm9jZXNzb3JzLmF1dGgnLCAnZGphbmdvLmNvbnRyaWIubWVzc2FnZXMuY29udGV4dF9wcm9jZXNzb3JzLm1lc3NhZ2VzJ119fV0KVEVTVF9OT05fU0VSSUFMSVpFRF9BUFBTID0gW10KVEVTVF9SVU5ORVIgPSAnZGphbmdvX25vc2UuTm9zZVRlc3RTdWl0ZVJ1bm5lcicKVEhPVVNBTkRfU0VQQVJBVE9SID0gJywnClRJTUVfRk9STUFUID0gJ1AnClRJTUVfSU5QVVRfRk9STUFUUyA9IFsnJUg6JU06JVMnLCAnJUg6JU06JVMuJWYnLCAnJUg6JU0nXQpUSU1FX1pPTkUgPSAnVVRDJwpVU0VfRVRBR1MgPSBGYWxzZQpVU0VfSTE4TiA9IFRydWUKVVNFX0wxME4gPSBUcnVlClVTRV9USE9VU0FORF9TRVBBUkFUT1IgPSBGYWxzZQpVU0VfVFogPSBUcnVlClVTRV9YX0ZPUldBUkRFRF9IT1NUID0gRmFsc2UKVVNFX1hfRk9SV0FSREVEX1BPUlQgPSBGYWxzZQpXRUJQQUNLX0xPQURFUiA9IHsnREVGQVVMVCc6IHsnQlVORExFX0RJUl9OQU1FJzogJ2J1bmRsZXMvJywgJ1NUQVRTX0ZJTEUnOiAnRDpcXFBQTEFcXHdlYnBhY2stc3RhdHMuanNvbid9fQpXU0dJX0FQUExJQ0FUSU9OID0gJ2thcGUud3NnaS5hcHBsaWNhdGlvbicKWF9GUkFNRV9PUFRJT05TID0gJ1NBTUVPUklHSU4nCllFQVJfTU9OVEhfRk9STUFUID0gJ0YgWScKCgpZb3UncmUgc2VlaW5nIHRoaXMgZXJyb3IgYmVjYXVzZSB5b3UgaGF2ZSBERUJVRyA9IFRydWUgaW4geW91cgpEamFuZ28gc2V0dGluZ3MgZmlsZS4gQ2hhbmdlIHRoYXQgdG8gRmFsc2UsIGFuZCBEamFuZ28gd2lsbApkaXNwbGF5IGEgc3RhbmRhcmQgcGFnZSBnZW5lcmF0ZWQgYnkgdGhlIGhhbmRsZXIgZm9yIHRoaXMgc3RhdHVzIGNvZGUuCgo=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/plain\"}" - } -}, -{ - "model": "silk.response", - "pk": "f0b52d12-cecd-4ce0-bbec-f671bac40699", - "fields": { - "request": "9d80397b-5f03-4369-b8f1-68f49dfcff6a", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "f1449ae6-ec81-440a-bcb6-649f5ad6f1d4", - "fields": { - "request": "7ae98805-3b3c-488b-94aa-68d197382cce", - "status_code": 500, - "raw_body": "VHlwZUVycm9yIGF0IC9hcGkvc3R1ZGVudHMvMS9ib29rbWFya2VkLXZhY2FuY2llcy8KaW50KCkgYXJndW1lbnQgbXVzdCBiZSBhIHN0cmluZywgYSBieXRlcy1saWtlIG9iamVjdCBvciBhIG51bWJlciwgbm90ICdkaWN0JwoKUmVxdWVzdCBNZXRob2Q6IFBPU1QKUmVxdWVzdCBVUkw6IGh0dHA6Ly8xMjcuMC4wLjE6ODAwMC9hcGkvc3R1ZGVudHMvMS9ib29rbWFya2VkLXZhY2FuY2llcy8KRGphbmdvIFZlcnNpb246IDEuMTAuNQpQeXRob24gRXhlY3V0YWJsZTogQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXHB5dGhvbi5leGUKUHl0aG9uIFZlcnNpb246IDMuNi4wClB5dGhvbiBQYXRoOiBbJ0Q6XFxQUExBJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXHB5dGhvbjM2LnppcCcsICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyXFxETExzJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXGxpYicsICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXGxpYlxcc2l0ZS1wYWNrYWdlcyddClNlcnZlciB0aW1lOiBNb24sIDI3IE1hciAyMDE3IDE1OjQyOjUyICswMDAwCkluc3RhbGxlZCBBcHBsaWNhdGlvbnM6ClsnZGphbmdvLmNvbnRyaWIuYWRtaW4nLAogJ2RqYW5nby5jb250cmliLmF1dGgnLAogJ2RqYW5nby5jb250cmliLmNvbnRlbnR0eXBlcycsCiAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMnLAogJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzJywKICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcycsCiAnd2VicGFja19sb2FkZXInLAogJ2NvcmUnLAogJ3Jlc3RfZnJhbWV3b3JrJywKICdkamFuZ29fbm9zZScsCiAncmVzdF9mcmFtZXdvcmtfc3dhZ2dlcicsCiAnc2lsayddCkluc3RhbGxlZCBNaWRkbGV3YXJlOgpbJ2RqYW5nby5taWRkbGV3YXJlLnNlY3VyaXR5LlNlY3VyaXR5TWlkZGxld2FyZScsCiAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMubWlkZGxld2FyZS5TZXNzaW9uTWlkZGxld2FyZScsCiAnZGphbmdvLm1pZGRsZXdhcmUuY29tbW9uLkNvbW1vbk1pZGRsZXdhcmUnLAogJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5hdXRoLm1pZGRsZXdhcmUuQXV0aGVudGljYXRpb25NaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5tZXNzYWdlcy5taWRkbGV3YXJlLk1lc3NhZ2VNaWRkbGV3YXJlJywKICdkamFuZ28ubWlkZGxld2FyZS5jbGlja2phY2tpbmcuWEZyYW1lT3B0aW9uc01pZGRsZXdhcmUnLAogJ3NpbGsubWlkZGxld2FyZS5TaWxreU1pZGRsZXdhcmUnXQoKClRyYWNlYmFjazogIAoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXGRqYW5nb1xjb3JlXGhhbmRsZXJzXGV4Y2VwdGlvbi5weSIgaW4gaW5uZXIKICAzOS4gICAgICAgICAgICAgcmVzcG9uc2UgPSBnZXRfcmVzcG9uc2UocmVxdWVzdCkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cY29yZVxoYW5kbGVyc1xiYXNlLnB5IiBpbiBfZ2V0X3Jlc3BvbnNlCiAgMTg3LiAgICAgICAgICAgICAgICAgcmVzcG9uc2UgPSBzZWxmLnByb2Nlc3NfZXhjZXB0aW9uX2J5X21pZGRsZXdhcmUoZSwgcmVxdWVzdCkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cY29yZVxoYW5kbGVyc1xiYXNlLnB5IiBpbiBfZ2V0X3Jlc3BvbnNlCiAgMTg1LiAgICAgICAgICAgICAgICAgcmVzcG9uc2UgPSB3cmFwcGVkX2NhbGxiYWNrKHJlcXVlc3QsICpjYWxsYmFja19hcmdzLCAqKmNhbGxiYWNrX2t3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cdmlld3NcZGVjb3JhdG9yc1xjc3JmLnB5IiBpbiB3cmFwcGVkX3ZpZXcKICA1OC4gICAgICAgICByZXR1cm4gdmlld19mdW5jKCphcmdzLCAqKmt3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3c2V0cy5weSIgaW4gdmlldwogIDgzLiAgICAgICAgICAgICByZXR1cm4gc2VsZi5kaXNwYXRjaChyZXF1ZXN0LCAqYXJncywgKiprd2FyZ3MpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNccmVzdF9mcmFtZXdvcmtcdmlld3MucHkiIGluIGRpc3BhdGNoCiAgNDgzLiAgICAgICAgICAgICByZXNwb25zZSA9IHNlbGYuaGFuZGxlX2V4Y2VwdGlvbihleGMpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNccmVzdF9mcmFtZXdvcmtcdmlld3MucHkiIGluIGhhbmRsZV9leGNlcHRpb24KICA0NDMuICAgICAgICAgICAgIHNlbGYucmFpc2VfdW5jYXVnaHRfZXhjZXB0aW9uKGV4YykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3cy5weSIgaW4gZGlzcGF0Y2gKICA0ODAuICAgICAgICAgICAgIHJlc3BvbnNlID0gaGFuZGxlcihyZXF1ZXN0LCAqYXJncywgKiprd2FyZ3MpCgpGaWxlICJEOlxQUExBXGNvcmVcdmlld3NcYWNjb3VudHMucHkiIGluIGJvb2ttYXJrX3ZhY2FuY2llcwogIDMwLiAgICAgICAgIHZhY2FuY3kgPSBnZXRfb2JqZWN0X29yXzQwNChWYWNhbmN5Lm9iamVjdHMuYWxsKCksIHBrPXJlcXVlc3QuZGF0YSkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cc2hvcnRjdXRzLnB5IiBpbiBnZXRfb2JqZWN0X29yXzQwNAogIDg1LiAgICAgICAgIHJldHVybiBxdWVyeXNldC5nZXQoKmFyZ3MsICoqa3dhcmdzKQoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXGRqYW5nb1xkYlxtb2RlbHNccXVlcnkucHkiIGluIGdldAogIDM3Ni4gICAgICAgICBjbG9uZSA9IHNlbGYuZmlsdGVyKCphcmdzLCAqKmt3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cZGJcbW9kZWxzXHF1ZXJ5LnB5IiBpbiBmaWx0ZXIKICA3OTYuICAgICAgICAgcmV0dXJuIHNlbGYuX2ZpbHRlcl9vcl9leGNsdWRlKEZhbHNlLCAqYXJncywgKiprd2FyZ3MpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNcZGphbmdvXGRiXG1vZGVsc1xxdWVyeS5weSIgaW4gX2ZpbHRlcl9vcl9leGNsdWRlCiAgODE0LiAgICAgICAgICAgICBjbG9uZS5xdWVyeS5hZGRfcShRKCphcmdzLCAqKmt3YXJncykpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNcZGphbmdvXGRiXG1vZGVsc1xzcWxccXVlcnkucHkiIGluIGFkZF9xCiAgMTIyNy4gICAgICAgICBjbGF1c2UsIF8gPSBzZWxmLl9hZGRfcShxX29iamVjdCwgc2VsZi51c2VkX2FsaWFzZXMpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNcZGphbmdvXGRiXG1vZGVsc1xzcWxccXVlcnkucHkiIGluIF9hZGRfcQogIDEyNTMuICAgICAgICAgICAgICAgICAgICAgYWxsb3dfam9pbnM9YWxsb3dfam9pbnMsIHNwbGl0X3N1YnE9c3BsaXRfc3VicSwKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cZGJcbW9kZWxzXHNxbFxxdWVyeS5weSIgaW4gYnVpbGRfZmlsdGVyCiAgMTE4Ny4gICAgICAgICAgICAgY29uZGl0aW9uID0gc2VsZi5idWlsZF9sb29rdXAobG9va3VwcywgY29sLCB2YWx1ZSkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cZGJcbW9kZWxzXHNxbFxxdWVyeS5weSIgaW4gYnVpbGRfbG9va3VwCiAgMTA4My4gICAgICAgICAgICAgICAgIHJldHVybiBmaW5hbF9sb29rdXAobGhzLCByaHMpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNcZGphbmdvXGRiXG1vZGVsc1xsb29rdXBzLnB5IiBpbiBfX2luaXRfXwogIDE5LiAgICAgICAgIHNlbGYucmhzID0gc2VsZi5nZXRfcHJlcF9sb29rdXAoKQoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXGRqYW5nb1xkYlxtb2RlbHNcbG9va3Vwcy5weSIgaW4gZ2V0X3ByZXBfbG9va3VwCiAgNTkuICAgICAgICAgICAgIHJldHVybiBzZWxmLmxocy5vdXRwdXRfZmllbGQuZ2V0X3ByZXBfdmFsdWUoc2VsZi5yaHMpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNcZGphbmdvXGRiXG1vZGVsc1xmaWVsZHNcX19pbml0X18ucHkiIGluIGdldF9wcmVwX3ZhbHVlCiAgOTQ2LiAgICAgICAgIHJldHVybiBpbnQodmFsdWUpCgpFeGNlcHRpb24gVHlwZTogVHlwZUVycm9yIGF0IC9hcGkvc3R1ZGVudHMvMS9ib29rbWFya2VkLXZhY2FuY2llcy8KRXhjZXB0aW9uIFZhbHVlOiBpbnQoKSBhcmd1bWVudCBtdXN0IGJlIGEgc3RyaW5nLCBhIGJ5dGVzLWxpa2Ugb2JqZWN0IG9yIGEgbnVtYmVyLCBub3QgJ2RpY3QnClJlcXVlc3QgaW5mb3JtYXRpb246ClVTRVI6IGthcGUKCkdFVDogTm8gR0VUIGRhdGEKClBPU1Q6IE5vIFBPU1QgZGF0YQoKRklMRVM6IE5vIEZJTEVTIGRhdGEKCkNPT0tJRVM6CnNlc3Npb25pZCA9ICdibHQ4NzdnNWZqbXVjeHkzZGQ1dXhjaXphdmI5b3BvdicKY3NyZnRva2VuID0gJzFFRVAyU3dLdDFLOVFiV25GUFN5V1BJaWJ0TzdNQWFWcUtMRWVvb0ZnWVZ5ZGpZUG9nbjBPd3AyOW9VVzZBNksnCgpNRVRBOgpBTExVU0VSU1BST0ZJTEUgPSAnQzpcXFByb2dyYW1EYXRhJwpBUFBEQVRBID0gJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxSb2FtaW5nJwpDT01NT05QUk9HUkFNRklMRVMgPSAnQzpcXFByb2dyYW0gRmlsZXMgKHg4NilcXENvbW1vbiBGaWxlcycKQ09NTU9OUFJPR1JBTUZJTEVTKFg4NikgPSAnQzpcXFByb2dyYW0gRmlsZXMgKHg4NilcXENvbW1vbiBGaWxlcycKQ09NTU9OUFJPR1JBTVc2NDMyID0gJ0M6XFxQcm9ncmFtIEZpbGVzXFxDb21tb24gRmlsZXMnCkNPTVBVVEVSTkFNRSA9ICdGQVJIQU4nCkNPTVNQRUMgPSAnQzpcXFdJTkRPV1NcXHN5c3RlbTMyXFxjbWQuZXhlJwpDT05URU5UX0xFTkdUSCA9ICcyJwpDT05URU5UX1RZUEUgPSAnYXBwbGljYXRpb24vanNvbicKQ1NSRl9DT09LSUUgPSAnMUVFUDJTd0t0MUs5UWJXbkZQU3lXUElpYnRPN01BYVZxS0xFZW9vRmdZVnlkallQb2duME93cDI5b1VXNkE2SycKREpBTkdPX1NFVFRJTkdTX01PRFVMRSA9ICdrYXBlLnNldHRpbmdzJwpGUFNfQlJPV1NFUl9BUFBfUFJPRklMRV9TVFJJTkcgPSAnSW50ZXJuZXQgRXhwbG9yZXInCkZQU19CUk9XU0VSX1VTRVJfUFJPRklMRV9TVFJJTkcgPSAnRGVmYXVsdCcKRlBfTk9fSE9TVF9DSEVDSyA9ICdOTycKR0FURVdBWV9JTlRFUkZBQ0UgPSAnQ0dJLzEuMScKSE9NRURSSVZFID0gJ0M6JwpIT01FUEFUSCA9ICdcXFVzZXJzXFxmYXJoYV8wMDAnCkhUVFBfQUNDRVBUID0gJ2FwcGxpY2F0aW9uL2pzb24nCkhUVFBfQUNDRVBUX0VOQ09ESU5HID0gJ2d6aXAsIGRlZmxhdGUsIGJyJwpIVFRQX0FDQ0VQVF9MQU5HVUFHRSA9ICdpZC1JRCxpZDtxPTAuOCxlbi1VUztxPTAuNixlbjtxPTAuNCcKSFRUUF9DT05ORUNUSU9OID0gJ2tlZXAtYWxpdmUnCkhUVFBfQ09PS0lFID0gJ3Nlc3Npb25pZD1ibHQ4NzdnNWZqbXVjeHkzZGQ1dXhjaXphdmI5b3BvdjsgY3NyZnRva2VuPTFFRVAyU3dLdDFLOVFiV25GUFN5V1BJaWJ0TzdNQWFWcUtMRWVvb0ZnWVZ5ZGpZUG9nbjBPd3AyOW9VVzZBNksnCkhUVFBfSE9TVCA9ICcxMjcuMC4wLjE6ODAwMCcKSFRUUF9PUklHSU4gPSAnaHR0cDovLzEyNy4wLjAuMTo4MDAwJwpIVFRQX1JFRkVSRVIgPSAnaHR0cDovLzEyNy4wLjAuMTo4MDAwL2FwaScKSFRUUF9VU0VSX0FHRU5UID0gJ01vemlsbGEvNS4wIChXaW5kb3dzIE5UIDEwLjA7IFdPVzY0KSBBcHBsZVdlYktpdC81MzcuMzYgKEtIVE1MLCBsaWtlIEdlY2tvKSBDaHJvbWUvNTYuMC4yOTI0Ljg3IFNhZmFyaS81MzcuMzYnCkhUVFBfWF9DU1JGVE9LRU4gPSAnanE5MUJ1RjVlNVI3U2pNRlJjMlROZnZXVThsRE82d3lJd2dRTjB4MDEyMndmck83QUR4bEZXY0dTM3JzODZzbicKTE9DQUxBUFBEQVRBID0gJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbCcKTE9HT05TRVJWRVIgPSAnXFxcXEZBUkhBTicKTlVNQkVSX09GX1BST0NFU1NPUlMgPSAnMicKT05FRFJJVkUgPSAnQzpcXFVzZXJzXFxmYXJoYV8wMDBcXE9uZURyaXZlJwpPUyA9ICdXaW5kb3dzX05UJwpQQVRIID0gJ0M6XFxQcm9ncmFtRGF0YVxcT3JhY2xlXFxKYXZhXFxqYXZhcGF0aDtDOlxcUHJvZ3JhbSBGaWxlc1xcSGFza2VsbFxcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxIYXNrZWxsIFBsYXRmb3JtXFw3LjEwLjNcXGxpYlxcZXh0cmFsaWJzXFxiaW47QzpcXFByb2dyYW0gRmlsZXNcXEhhc2tlbGwgUGxhdGZvcm1cXDcuMTAuM1xcYmluO0M6XFxXSU5ET1dTXFxzeXN0ZW0zMjtDOlxcV0lORE9XUztDOlxcV0lORE9XU1xcU3lzdGVtMzJcXFdiZW07QzpcXFdJTkRPV1NcXFN5c3RlbTMyXFxXaW5kb3dzUG93ZXJTaGVsbFxcdjEuMFxcO0M6XFxQcm9ncmFtIEZpbGVzXFxIYXNrZWxsIFBsYXRmb3JtXFw3LjEwLjNcXG1pbmd3XFxiaW47QzpcXFByb2dyYW0gRmlsZXNcXEphdmFcXGpkazEuOC4wXzc3XFxiaW47QzpcXGN5Z3dpbjY0XFxiaW47JWxvY2FsYXBwZGF0YSVcXE1pY3Jvc29mdFxcV2luZG93c0FwcHM7RDpcXFhBTVBQXFxwaHA7QzpcXFByb2dyYW0gRmlsZXNcXEdpdFxcY21kO0M6XFx4YW1wcFxccGhwO0M6XFxQcm9ncmFtRGF0YVxcQ29tcG9zZXJTZXR1cFxcYmluO0M6XFxQcm9ncmFtIEZpbGVzICh4ODYpXFxub2RlanNcXDtDOlxcUHJvZ3JhbSBGaWxlc1xcUG9zdGdyZVNRTFxcOS42XFxiaW47QzpcXFByb2dyYW0gRmlsZXNcXE1BVExBQlxcUjIwMTdhXFxiaW47QzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXExvY2FsXFxQcm9ncmFtc1xcUHl0aG9uXFxQeXRob24zNi0zMlxcU2NyaXB0c1xcO0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXDtDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcUm9hbWluZ1xcY2FiYWxcXGJpbjtEOlxcWEFNUFBcXHBocDtDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcUm9hbWluZ1xcQ29tcG9zZXJcXHZlbmRvclxcYmluO0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcTWljcm9zb2Z0XFxXaW5kb3dzQXBwcztDOlxccHl0aG9uLTMuNi4wJwpQQVRIRVhUID0gJy5DT007LkVYRTsuQkFUOy5DTUQ7LlZCUzsuVkJFOy5KUzsuSlNFOy5XU0Y7LldTSDsuTVNDJwpQQVRIX0lORk8gPSAnL2FwaS9zdHVkZW50cy8xL2Jvb2ttYXJrZWQtdmFjYW5jaWVzLycKUFJPQ0VTU09SX0FSQ0hJVEVDVFVSRSA9ICd4ODYnClBST0NFU1NPUl9BUkNISVRFVzY0MzIgPSAnQU1ENjQnClBST0NFU1NPUl9JREVOVElGSUVSID0gJ0ludGVsNjQgRmFtaWx5IDYgTW9kZWwgNTggU3RlcHBpbmcgOSwgR2VudWluZUludGVsJwpQUk9DRVNTT1JfTEVWRUwgPSAnNicKUFJPQ0VTU09SX1JFVklTSU9OID0gJzNhMDknClBST0dSQU1EQVRBID0gJ0M6XFxQcm9ncmFtRGF0YScKUFJPR1JBTUZJTEVTID0gJ0M6XFxQcm9ncmFtIEZpbGVzICh4ODYpJwpQUk9HUkFNRklMRVMoWDg2KSA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KScKUFJPR1JBTVc2NDMyID0gJ0M6XFxQcm9ncmFtIEZpbGVzJwpQUk9NUFQgPSAnJFAkRycKUFNNT0RVTEVQQVRIID0gJ0M6XFxXSU5ET1dTXFxzeXN0ZW0zMlxcV2luZG93c1Bvd2VyU2hlbGxcXHYxLjBcXE1vZHVsZXNcXCcKUFVCTElDID0gJ0M6XFxVc2Vyc1xcUHVibGljJwpRVUVSWV9TVFJJTkcgPSAnJwpSRU1PVEVfQUREUiA9ICcxMjcuMC4wLjEnClJFTU9URV9IT1NUID0gJycKUkVRVUVTVF9NRVRIT0QgPSAnUE9TVCcKUlVOX01BSU4gPSAndHJ1ZScKU0NSSVBUX05BTUUgPSAnJwpTRVJWRVJfTkFNRSA9ICdGYXJoYW4nClNFUlZFUl9QT1JUID0gJzgwMDAnClNFUlZFUl9QUk9UT0NPTCA9ICdIVFRQLzEuMScKU0VSVkVSX1NPRlRXQVJFID0gJ1dTR0lTZXJ2ZXIvMC4yJwpTRVNTSU9OTkFNRSA9ICdDb25zb2xlJwpTWVNURU1EUklWRSA9ICdDOicKU1lTVEVNUk9PVCA9ICdDOlxcV0lORE9XUycKVEVNUCA9ICdDOlxcVXNlcnNcXEZBUkhBX34xXFxBcHBEYXRhXFxMb2NhbFxcVGVtcCcKVE1QID0gJ0M6XFxVc2Vyc1xcRkFSSEFffjFcXEFwcERhdGFcXExvY2FsXFxUZW1wJwpVU0VSRE9NQUlOID0gJ0ZhcmhhbicKVVNFUkRPTUFJTl9ST0FNSU5HUFJPRklMRSA9ICdGYXJoYW4nClVTRVJOQU1FID0gJ0ZhcmhhbiBGYXJhc2RhaycKVVNFUlBST0ZJTEUgPSAnQzpcXFVzZXJzXFxmYXJoYV8wMDAnClZCT1hfTVNJX0lOU1RBTExfUEFUSCA9ICdDOlxcUHJvZ3JhbSBGaWxlc1xcT3JhY2xlXFxWaXJ0dWFsQm94XFwnCldJTkRJUiA9ICdDOlxcV0lORE9XUycKd3NnaS5lcnJvcnMgPSA8X2lvLlRleHRJT1dyYXBwZXIgbmFtZT0nPHN0ZGVycj4nIG1vZGU9J3cnIGVuY29kaW5nPSd1dGYtOCc+CndzZ2kuZmlsZV93cmFwcGVyID0gJycKd3NnaS5pbnB1dCA9IDxfaW8uQnVmZmVyZWRSZWFkZXIgbmFtZT0xNDQwPgp3c2dpLm11bHRpcHJvY2VzcyA9IEZhbHNlCndzZ2kubXVsdGl0aHJlYWQgPSBUcnVlCndzZ2kucnVuX29uY2UgPSBGYWxzZQp3c2dpLnVybF9zY2hlbWUgPSAnaHR0cCcKd3NnaS52ZXJzaW9uID0gCgpTZXR0aW5nczoKVXNpbmcgc2V0dGluZ3MgbW9kdWxlIGthcGUuc2V0dGluZ3MKQUJTT0xVVEVfVVJMX09WRVJSSURFUyA9IHt9CkFETUlOUyA9IFtdCkFMTE9XRURfSE9TVFMgPSBbJ2JvdC5yZWNydWl0LmlkJywgJzEwNC4yMzYuNzYuMTYxJywgJ2xvY2FsaG9zdCcsICcxMjcuMC4wLjEnXQpBUFBFTkRfU0xBU0ggPSBUcnVlCkFVVEhFTlRJQ0FUSU9OX0JBQ0tFTkRTID0gWydkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCddCkFVVEhfUEFTU1dPUkRfVkFMSURBVE9SUyA9ICcqKioqKioqKioqKioqKioqKioqKicKQVVUSF9VU0VSX01PREVMID0gJ2F1dGguVXNlcicKQkFTRV9ESVIgPSAnRDpcXFBQTEEnCkNBQ0hFUyA9IHsnZGVmYXVsdCc6IHsnQkFDS0VORCc6ICdkamFuZ28uY29yZS5jYWNoZS5iYWNrZW5kcy5sb2NtZW0uTG9jTWVtQ2FjaGUnfX0KQ0FDSEVfTUlERExFV0FSRV9BTElBUyA9ICdkZWZhdWx0JwpDQUNIRV9NSURETEVXQVJFX0tFWV9QUkVGSVggPSAnKioqKioqKioqKioqKioqKioqKionCkNBQ0hFX01JRERMRVdBUkVfU0VDT05EUyA9IDYwMApDU1JGX0NPT0tJRV9BR0UgPSAzMTQ0OTYwMApDU1JGX0NPT0tJRV9ET01BSU4gPSBOb25lCkNTUkZfQ09PS0lFX0hUVFBPTkxZID0gRmFsc2UKQ1NSRl9DT09LSUVfTkFNRSA9ICdjc3JmdG9rZW4nCkNTUkZfQ09PS0lFX1BBVEggPSAnLycKQ1NSRl9DT09LSUVfU0VDVVJFID0gRmFsc2UKQ1NSRl9GQUlMVVJFX1ZJRVcgPSAnZGphbmdvLnZpZXdzLmNzcmYuY3NyZl9mYWlsdXJlJwpDU1JGX0hFQURFUl9OQU1FID0gJ0hUVFBfWF9DU1JGVE9LRU4nCkNTUkZfVFJVU1RFRF9PUklHSU5TID0gW10KREFUQUJBU0VTID0geydkZWZhdWx0JzogeydFTkdJTkUnOiAnZGphbmdvLmRiLmJhY2tlbmRzLnBvc3RncmVzcWxfcHN5Y29wZzInLCAnTkFNRSc6ICdrYXBlJywgJ1VTRVInOiAna2FwZScsICdQQVNTV09SRCc6ICcqKioqKioqKioqKioqKioqKioqKicsICdIT1NUJzogJ2xvY2FsaG9zdCcsICdQT1JUJzogJycsICdBVE9NSUNfUkVRVUVTVFMnOiBGYWxzZSwgJ0FVVE9DT01NSVQnOiBUcnVlLCAnQ09OTl9NQVhfQUdFJzogMCwgJ09QVElPTlMnOiB7fSwgJ1RJTUVfWk9ORSc6IE5vbmUsICdURVNUJzogeydDSEFSU0VUJzogTm9uZSwgJ0NPTExBVElPTic6IE5vbmUsICdOQU1FJzogTm9uZSwgJ01JUlJPUic6IE5vbmV9fX0KREFUQUJBU0VfUk9VVEVSUyA9IFtdCkRBVEFfVVBMT0FEX01BWF9NRU1PUllfU0laRSA9IDI2MjE0NDAKREFUQV9VUExPQURfTUFYX05VTUJFUl9GSUVMRFMgPSAxMDAwCkRBVEVUSU1FX0ZPUk1BVCA9ICdOIGosIFksIFAnCkRBVEVUSU1FX0lOUFVUX0ZPUk1BVFMgPSBbJyVZLSVtLSVkICVIOiVNOiVTJywgJyVZLSVtLSVkICVIOiVNOiVTLiVmJywgJyVZLSVtLSVkICVIOiVNJywgJyVZLSVtLSVkJywgJyVtLyVkLyVZICVIOiVNOiVTJywgJyVtLyVkLyVZICVIOiVNOiVTLiVmJywgJyVtLyVkLyVZICVIOiVNJywgJyVtLyVkLyVZJywgJyVtLyVkLyV5ICVIOiVNOiVTJywgJyVtLyVkLyV5ICVIOiVNOiVTLiVmJywgJyVtLyVkLyV5ICVIOiVNJywgJyVtLyVkLyV5J10KREFURV9GT1JNQVQgPSAnTiBqLCBZJwpEQVRFX0lOUFVUX0ZPUk1BVFMgPSBbJyVZLSVtLSVkJywgJyVtLyVkLyVZJywgJyVtLyVkLyV5JywgJyViICVkICVZJywgJyViICVkLCAlWScsICclZCAlYiAlWScsICclZCAlYiwgJVknLCAnJUIgJWQgJVknLCAnJUIgJWQsICVZJywgJyVkICVCICVZJywgJyVkICVCLCAlWSddCkRFQlVHID0gVHJ1ZQpERUJVR19QUk9QQUdBVEVfRVhDRVBUSU9OUyA9IEZhbHNlCkRFQ0lNQUxfU0VQQVJBVE9SID0gJy4nCkRFRkFVTFRfQ0hBUlNFVCA9ICd1dGYtOCcKREVGQVVMVF9DT05URU5UX1RZUEUgPSAndGV4dC9odG1sJwpERUZBVUxUX0VYQ0VQVElPTl9SRVBPUlRFUl9GSUxURVIgPSAnZGphbmdvLnZpZXdzLmRlYnVnLlNhZmVFeGNlcHRpb25SZXBvcnRlckZpbHRlcicKREVGQVVMVF9GSUxFX1NUT1JBR0UgPSAnZGphbmdvLmNvcmUuZmlsZXMuc3RvcmFnZS5GaWxlU3lzdGVtU3RvcmFnZScKREVGQVVMVF9GUk9NX0VNQUlMID0gJ3dlYm1hc3RlckBsb2NhbGhvc3QnCkRFRkFVTFRfSU5ERVhfVEFCTEVTUEFDRSA9ICcnCkRFRkFVTFRfVEFCTEVTUEFDRSA9ICcnCkRJU0FMTE9XRURfVVNFUl9BR0VOVFMgPSBbXQpFTUFJTF9CQUNLRU5EID0gJ2RqYW5nby5jb3JlLm1haWwuYmFja2VuZHMuc210cC5FbWFpbEJhY2tlbmQnCkVNQUlMX0hPU1QgPSAnbG9jYWxob3N0JwpFTUFJTF9IT1NUX1BBU1NXT1JEID0gJyoqKioqKioqKioqKioqKioqKioqJwpFTUFJTF9IT1NUX1VTRVIgPSAnJwpFTUFJTF9QT1JUID0gMjUKRU1BSUxfU1NMX0NFUlRGSUxFID0gTm9uZQpFTUFJTF9TU0xfS0VZRklMRSA9ICcqKioqKioqKioqKioqKioqKioqKicKRU1BSUxfU1VCSkVDVF9QUkVGSVggPSAnW0RqYW5nb10gJwpFTUFJTF9USU1FT1VUID0gTm9uZQpFTUFJTF9VU0VfU1NMID0gRmFsc2UKRU1BSUxfVVNFX1RMUyA9IEZhbHNlCkZJTEVfQ0hBUlNFVCA9ICd1dGYtOCcKRklMRV9VUExPQURfRElSRUNUT1JZX1BFUk1JU1NJT05TID0gTm9uZQpGSUxFX1VQTE9BRF9IQU5ETEVSUyA9IFsnZGphbmdvLmNvcmUuZmlsZXMudXBsb2FkaGFuZGxlci5NZW1vcnlGaWxlVXBsb2FkSGFuZGxlcicsICdkamFuZ28uY29yZS5maWxlcy51cGxvYWRoYW5kbGVyLlRlbXBvcmFyeUZpbGVVcGxvYWRIYW5kbGVyJ10KRklMRV9VUExPQURfTUFYX01FTU9SWV9TSVpFID0gMjYyMTQ0MApGSUxFX1VQTE9BRF9QRVJNSVNTSU9OUyA9IE5vbmUKRklMRV9VUExPQURfVEVNUF9ESVIgPSBOb25lCkZJUlNUX0RBWV9PRl9XRUVLID0gMApGSVhUVVJFX0RJUlMgPSBbXQpGT1JDRV9TQ1JJUFRfTkFNRSA9IE5vbmUKRk9STUFUX01PRFVMRV9QQVRIID0gTm9uZQpHWklQX0NPTlRFTlRfVFlQRVMgPSAKSUdOT1JBQkxFXzQwNF9VUkxTID0gW10KSU5TVEFMTEVEX0FQUFMgPSBbJ2RqYW5nby5jb250cmliLmFkbWluJywgJ2RqYW5nby5jb250cmliLmF1dGgnLCAnZGphbmdvLmNvbnRyaWIuY29udGVudHR5cGVzJywgJ2RqYW5nby5jb250cmliLnNlc3Npb25zJywgJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzJywgJ2RqYW5nby5jb250cmliLnN0YXRpY2ZpbGVzJywgJ3dlYnBhY2tfbG9hZGVyJywgJ2NvcmUnLCAncmVzdF9mcmFtZXdvcmsnLCAnZGphbmdvX25vc2UnLCAncmVzdF9mcmFtZXdvcmtfc3dhZ2dlcicsICdzaWxrJ10KSU5URVJOQUxfSVBTID0gW10KTEFOR1VBR0VTID0gWygnYWYnLCAnQWZyaWthYW5zJyksICgnYXInLCAnQXJhYmljJyksICgnYXN0JywgJ0FzdHVyaWFuJyksICgnYXonLCAnQXplcmJhaWphbmknKSwgKCdiZycsICdCdWxnYXJpYW4nKSwgKCdiZScsICdCZWxhcnVzaWFuJyksICgnYm4nLCAnQmVuZ2FsaScpLCAoJ2JyJywgJ0JyZXRvbicpLCAoJ2JzJywgJ0Jvc25pYW4nKSwgKCdjYScsICdDYXRhbGFuJyksICgnY3MnLCAnQ3plY2gnKSwgKCdjeScsICdXZWxzaCcpLCAoJ2RhJywgJ0RhbmlzaCcpLCAoJ2RlJywgJ0dlcm1hbicpLCAoJ2RzYicsICdMb3dlciBTb3JiaWFuJyksICgnZWwnLCAnR3JlZWsnKSwgKCdlbicsICdFbmdsaXNoJyksICgnZW4tYXUnLCAnQXVzdHJhbGlhbiBFbmdsaXNoJyksICgnZW4tZ2InLCAnQnJpdGlzaCBFbmdsaXNoJyksICgnZW8nLCAnRXNwZXJhbnRvJyksICgnZXMnLCAnU3BhbmlzaCcpLCAoJ2VzLWFyJywgJ0FyZ2VudGluaWFuIFNwYW5pc2gnKSwgKCdlcy1jbycsICdDb2xvbWJpYW4gU3BhbmlzaCcpLCAoJ2VzLW14JywgJ01leGljYW4gU3BhbmlzaCcpLCAoJ2VzLW5pJywgJ05pY2FyYWd1YW4gU3BhbmlzaCcpLCAoJ2VzLXZlJywgJ1ZlbmV6dWVsYW4gU3BhbmlzaCcpLCAoJ2V0JywgJ0VzdG9uaWFuJyksICgnZXUnLCAnQmFzcXVlJyksICgnZmEnLCAnUGVyc2lhbicpLCAoJ2ZpJywgJ0Zpbm5pc2gnKSwgKCdmcicsICdGcmVuY2gnKSwgKCdmeScsICdGcmlzaWFuJyksICgnZ2EnLCAnSXJpc2gnKSwgKCdnZCcsICdTY290dGlzaCBHYWVsaWMnKSwgKCdnbCcsICdHYWxpY2lhbicpLCAoJ2hlJywgJ0hlYnJldycpLCAoJ2hpJywgJ0hpbmRpJyksICgnaHInLCAnQ3JvYXRpYW4nKSwgKCdoc2InLCAnVXBwZXIgU29yYmlhbicpLCAoJ2h1JywgJ0h1bmdhcmlhbicpLCAoJ2lhJywgJ0ludGVybGluZ3VhJyksICgnaWQnLCAnSW5kb25lc2lhbicpLCAoJ2lvJywgJ0lkbycpLCAoJ2lzJywgJ0ljZWxhbmRpYycpLCAoJ2l0JywgJ0l0YWxpYW4nKSwgKCdqYScsICdKYXBhbmVzZScpLCAoJ2thJywgJ0dlb3JnaWFuJyksICgna2snLCAnS2F6YWtoJyksICgna20nLCAnS2htZXInKSwgKCdrbicsICdLYW5uYWRhJyksICgna28nLCAnS29yZWFuJyksICgnbGInLCAnTHV4ZW1ib3VyZ2lzaCcpLCAoJ2x0JywgJ0xpdGh1YW5pYW4nKSwgKCdsdicsICdMYXR2aWFuJyksICgnbWsnLCAnTWFjZWRvbmlhbicpLCAoJ21sJywgJ01hbGF5YWxhbScpLCAoJ21uJywgJ01vbmdvbGlhbicpLCAoJ21yJywgJ01hcmF0aGknKSwgKCdteScsICdCdXJtZXNlJyksICgnbmInLCAnTm9yd2VnaWFuIEJva23DpWwnKSwgKCduZScsICdOZXBhbGknKSwgKCdubCcsICdEdXRjaCcpLCAoJ25uJywgJ05vcndlZ2lhbiBOeW5vcnNrJyksICgnb3MnLCAnT3NzZXRpYycpLCAoJ3BhJywgJ1B1bmphYmknKSwgKCdwbCcsICdQb2xpc2gnKSwgKCdwdCcsICdQb3J0dWd1ZXNlJyksICgncHQtYnInLCAnQnJhemlsaWFuIFBvcnR1Z3Vlc2UnKSwgKCdybycsICdSb21hbmlhbicpLCAoJ3J1JywgJ1J1c3NpYW4nKSwgKCdzaycsICdTbG92YWsnKSwgKCdzbCcsICdTbG92ZW5pYW4nKSwgKCdzcScsICdBbGJhbmlhbicpLCAoJ3NyJywgJ1NlcmJpYW4nKSwgKCdzci1sYXRuJywgJ1NlcmJpYW4gTGF0aW4nKSwgKCdzdicsICdTd2VkaXNoJyksICgnc3cnLCAnU3dhaGlsaScpLCAoJ3RhJywgJ1RhbWlsJyksICgndGUnLCAnVGVsdWd1JyksICgndGgnLCAnVGhhaScpLCAoJ3RyJywgJ1R1cmtpc2gnKSwgKCd0dCcsICdUYXRhcicpLCAoJ3VkbScsICdVZG11cnQnKSwgKCd1aycsICdVa3JhaW5pYW4nKSwgKCd1cicsICdVcmR1JyksICgndmknLCAnVmlldG5hbWVzZScpLCAoJ3poLWhhbnMnLCAnU2ltcGxpZmllZCBDaGluZXNlJyksICgnemgtaGFudCcsICdUcmFkaXRpb25hbCBDaGluZXNlJyldCkxBTkdVQUdFU19CSURJID0gWydoZScsICdhcicsICdmYScsICd1ciddCkxBTkdVQUdFX0NPREUgPSAnZW4tdXMnCkxBTkdVQUdFX0NPT0tJRV9BR0UgPSBOb25lCkxBTkdVQUdFX0NPT0tJRV9ET01BSU4gPSBOb25lCkxBTkdVQUdFX0NPT0tJRV9OQU1FID0gJ2RqYW5nb19sYW5ndWFnZScKTEFOR1VBR0VfQ09PS0lFX1BBVEggPSAnLycKTE9DQUxFX1BBVEhTID0gW10KTE9HR0lORyA9IHt9CkxPR0dJTkdfQ09ORklHID0gJ2xvZ2dpbmcuY29uZmlnLmRpY3RDb25maWcnCkxPR0lOX1JFRElSRUNUX1VSTCA9ICcvYWNjb3VudHMvcHJvZmlsZS8nCkxPR0lOX1VSTCA9ICcvYWNjb3VudHMvbG9naW4vJwpMT0dPVVRfUkVESVJFQ1RfVVJMID0gTm9uZQpNQU5BR0VSUyA9IFtdCk1FRElBX1JPT1QgPSAnL2hvbWUvZmlsZXMnCk1FRElBX1VSTCA9ICcvZmlsZXMvJwpNRVNTQUdFX1NUT1JBR0UgPSAnZGphbmdvLmNvbnRyaWIubWVzc2FnZXMuc3RvcmFnZS5mYWxsYmFjay5GYWxsYmFja1N0b3JhZ2UnCk1JRERMRVdBUkUgPSBbJ2RqYW5nby5taWRkbGV3YXJlLnNlY3VyaXR5LlNlY3VyaXR5TWlkZGxld2FyZScsICdkamFuZ28uY29udHJpYi5zZXNzaW9ucy5taWRkbGV3YXJlLlNlc3Npb25NaWRkbGV3YXJlJywgJ2RqYW5nby5taWRkbGV3YXJlLmNvbW1vbi5Db21tb25NaWRkbGV3YXJlJywgJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJywgJ2RqYW5nby5jb250cmliLmF1dGgubWlkZGxld2FyZS5BdXRoZW50aWNhdGlvbk1pZGRsZXdhcmUnLCAnZGphbmdvLmNvbnRyaWIubWVzc2FnZXMubWlkZGxld2FyZS5NZXNzYWdlTWlkZGxld2FyZScsICdkamFuZ28ubWlkZGxld2FyZS5jbGlja2phY2tpbmcuWEZyYW1lT3B0aW9uc01pZGRsZXdhcmUnLCAnc2lsay5taWRkbGV3YXJlLlNpbGt5TWlkZGxld2FyZSddCk1JRERMRVdBUkVfQ0xBU1NFUyA9IFsnZGphbmdvLm1pZGRsZXdhcmUuY29tbW9uLkNvbW1vbk1pZGRsZXdhcmUnLCAnZGphbmdvLm1pZGRsZXdhcmUuY3NyZi5Dc3JmVmlld01pZGRsZXdhcmUnXQpNSUdSQVRJT05fTU9EVUxFUyA9IHt9Ck1PTlRIX0RBWV9GT1JNQVQgPSAnRiBqJwpOT1NFX0FSR1MgPSBbJy0td2l0aC1jb3ZlcmFnZScsICctLWNvdmVyLXBhY2thZ2U9Y29yZS52aWV3cycsICctLWNvdmVyLWh0bWwtZGlyPXRlc3QvYmFja2VuZCcsICctLWNvdmVyLWh0bWwnXQpOVU1CRVJfR1JPVVBJTkcgPSAwClBBU1NXT1JEX0hBU0hFUlMgPSAnKioqKioqKioqKioqKioqKioqKionClBBU1NXT1JEX1JFU0VUX1RJTUVPVVRfREFZUyA9ICcqKioqKioqKioqKioqKioqKioqKicKUFJFUEVORF9XV1cgPSBGYWxzZQpSRVNUX0ZSQU1FV09SSyA9IHsnREVGQVVMVF9QRVJNSVNTSU9OX0NMQVNTRVMnOiBbJ3Jlc3RfZnJhbWV3b3JrLnBlcm1pc3Npb25zLkRqYW5nb01vZGVsUGVybWlzc2lvbnNPckFub25SZWFkT25seSddfQpST09UX1VSTENPTkYgPSAna2FwZS51cmxzJwpSVU5OSU5HX0RFVlNFUlZFUiA9IFRydWUKU0VDUkVUX0tFWSA9ICcqKioqKioqKioqKioqKioqKioqKicKU0VDVVJFX0JST1dTRVJfWFNTX0ZJTFRFUiA9IEZhbHNlClNFQ1VSRV9DT05URU5UX1RZUEVfTk9TTklGRiA9IEZhbHNlClNFQ1VSRV9IU1RTX0lOQ0xVREVfU1VCRE9NQUlOUyA9IEZhbHNlClNFQ1VSRV9IU1RTX1NFQ09ORFMgPSAwClNFQ1VSRV9QUk9YWV9TU0xfSEVBREVSID0gTm9uZQpTRUNVUkVfUkVESVJFQ1RfRVhFTVBUID0gW10KU0VDVVJFX1NTTF9IT1NUID0gTm9uZQpTRUNVUkVfU1NMX1JFRElSRUNUID0gRmFsc2UKU0VSVkVSX0VNQUlMID0gJ3Jvb3RAbG9jYWxob3N0JwpTRVNTSU9OX0NBQ0hFX0FMSUFTID0gJ2RlZmF1bHQnClNFU1NJT05fQ09PS0lFX0FHRSA9IDEyMDk2MDAKU0VTU0lPTl9DT09LSUVfRE9NQUlOID0gTm9uZQpTRVNTSU9OX0NPT0tJRV9IVFRQT05MWSA9IEZhbHNlClNFU1NJT05fQ09PS0lFX05BTUUgPSAnc2Vzc2lvbmlkJwpTRVNTSU9OX0NPT0tJRV9QQVRIID0gJy8nClNFU1NJT05fQ09PS0lFX1NFQ1VSRSA9IEZhbHNlClNFU1NJT05fRU5HSU5FID0gJ2RqYW5nby5jb250cmliLnNlc3Npb25zLmJhY2tlbmRzLmRiJwpTRVNTSU9OX0VYUElSRV9BVF9CUk9XU0VSX0NMT1NFID0gRmFsc2UKU0VTU0lPTl9GSUxFX1BBVEggPSBOb25lClNFU1NJT05fU0FWRV9FVkVSWV9SRVFVRVNUID0gRmFsc2UKU0VTU0lPTl9TRVJJQUxJWkVSID0gJ2RqYW5nby5jb250cmliLnNlc3Npb25zLnNlcmlhbGl6ZXJzLkpTT05TZXJpYWxpemVyJwpTRVRUSU5HU19NT0RVTEUgPSAna2FwZS5zZXR0aW5ncycKU0hPUlRfREFURVRJTUVfRk9STUFUID0gJ20vZC9ZIFAnClNIT1JUX0RBVEVfRk9STUFUID0gJ20vZC9ZJwpTSUdOSU5HX0JBQ0tFTkQgPSAnZGphbmdvLmNvcmUuc2lnbmluZy5UaW1lc3RhbXBTaWduZXInClNJTEVOQ0VEX1NZU1RFTV9DSEVDS1MgPSBbXQpTVEFUSUNGSUxFU19ESVJTID0gJ0Q6XFxQUExBXFxhc3NldHMnClNUQVRJQ0ZJTEVTX0ZJTkRFUlMgPSBbJ2RqYW5nby5jb250cmliLnN0YXRpY2ZpbGVzLmZpbmRlcnMuRmlsZVN5c3RlbUZpbmRlcicsICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcy5maW5kZXJzLkFwcERpcmVjdG9yaWVzRmluZGVyJ10KU1RBVElDRklMRVNfU1RPUkFHRSA9ICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcy5zdG9yYWdlLlN0YXRpY0ZpbGVzU3RvcmFnZScKU1RBVElDX1JPT1QgPSAnL2hvbWUvYXNzZXRzJwpTVEFUSUNfVVJMID0gJy9hc3NldHMvJwpURU1QTEFURVMgPSBbeydCQUNLRU5EJzogJ2RqYW5nby50ZW1wbGF0ZS5iYWNrZW5kcy5kamFuZ28uRGphbmdvVGVtcGxhdGVzJywgJ0RJUlMnOiBbXSwgJ0FQUF9ESVJTJzogVHJ1ZSwgJ09QVElPTlMnOiB7J2NvbnRleHRfcHJvY2Vzc29ycyc6IFsnZGphbmdvLnRlbXBsYXRlLmNvbnRleHRfcHJvY2Vzc29ycy5kZWJ1ZycsICdkamFuZ28udGVtcGxhdGUuY29udGV4dF9wcm9jZXNzb3JzLnJlcXVlc3QnLCAnZGphbmdvLmNvbnRyaWIuYXV0aC5jb250ZXh0X3Byb2Nlc3NvcnMuYXV0aCcsICdkamFuZ28uY29udHJpYi5tZXNzYWdlcy5jb250ZXh0X3Byb2Nlc3NvcnMubWVzc2FnZXMnXX19XQpURVNUX05PTl9TRVJJQUxJWkVEX0FQUFMgPSBbXQpURVNUX1JVTk5FUiA9ICdkamFuZ29fbm9zZS5Ob3NlVGVzdFN1aXRlUnVubmVyJwpUSE9VU0FORF9TRVBBUkFUT1IgPSAnLCcKVElNRV9GT1JNQVQgPSAnUCcKVElNRV9JTlBVVF9GT1JNQVRTID0gWyclSDolTTolUycsICclSDolTTolUy4lZicsICclSDolTSddClRJTUVfWk9ORSA9ICdVVEMnClVTRV9FVEFHUyA9IEZhbHNlClVTRV9JMThOID0gVHJ1ZQpVU0VfTDEwTiA9IFRydWUKVVNFX1RIT1VTQU5EX1NFUEFSQVRPUiA9IEZhbHNlClVTRV9UWiA9IFRydWUKVVNFX1hfRk9SV0FSREVEX0hPU1QgPSBGYWxzZQpVU0VfWF9GT1JXQVJERURfUE9SVCA9IEZhbHNlCldFQlBBQ0tfTE9BREVSID0geydERUZBVUxUJzogeydCVU5ETEVfRElSX05BTUUnOiAnYnVuZGxlcy8nLCAnU1RBVFNfRklMRSc6ICdEOlxcUFBMQVxcd2VicGFjay1zdGF0cy5qc29uJ319CldTR0lfQVBQTElDQVRJT04gPSAna2FwZS53c2dpLmFwcGxpY2F0aW9uJwpYX0ZSQU1FX09QVElPTlMgPSAnU0FNRU9SSUdJTicKWUVBUl9NT05USF9GT1JNQVQgPSAnRiBZJwoKCllvdSdyZSBzZWVpbmcgdGhpcyBlcnJvciBiZWNhdXNlIHlvdSBoYXZlIERFQlVHID0gVHJ1ZSBpbiB5b3VyCkRqYW5nbyBzZXR0aW5ncyBmaWxlLiBDaGFuZ2UgdGhhdCB0byBGYWxzZSwgYW5kIERqYW5nbyB3aWxsCmRpc3BsYXkgYSBzdGFuZGFyZCBwYWdlIGdlbmVyYXRlZCBieSB0aGUgaGFuZGxlciBmb3IgdGhpcyBzdGF0dXMgY29kZS4KCg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/plain\"}" - } -}, -{ - "model": "silk.response", - "pk": "f156a2aa-f659-4c7e-9a58-b3fdb5203a8d", - "fields": { - "request": "4b5d1449-118f-44cc-8013-061d1911675b", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPkNoYW5nZSB1c2VyIHwgRGphbmdvIHNpdGUgYWRtaW48L3RpdGxlPgo8bGluayByZWw9InN0eWxlc2hlZXQiIHR5cGU9InRleHQvY3NzIiBocmVmPSIvYXNzZXRzL2FkbWluL2Nzcy9iYXNlLmNzcyIgLz4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvZm9ybXMuY3NzIiAvPgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9jb3JlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IvanF1ZXJ5L2pxdWVyeS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvanF1ZXJ5LmluaXQuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2FkbWluL1JlbGF0ZWRPYmplY3RMb29rdXBzLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hY3Rpb25zLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy91cmxpZnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL3ByZXBvcHVsYXRlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IveHJlZ2V4cC94cmVnZXhwLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9TZWxlY3RCb3guanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL1NlbGVjdEZpbHRlcjIuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2NhbGVuZGFyLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hZG1pbi9EYXRlVGltZVNob3J0Y3V0cy5qcyI+PC9zY3JpcHQ+Cgo8bWV0YSBuYW1lPSJyb2JvdHMiIGNvbnRlbnQ9Ik5PTkUsTk9BUkNISVZFIiAvPgo8L2hlYWQ+CgoKPGJvZHkgY2xhc3M9IiBhcHAtYXV0aCBtb2RlbC11c2VyIGNoYW5nZS1mb3JtIgogIGRhdGEtYWRtaW4tdXRjLW9mZnNldD0iMCI+Cgo8IS0tIENvbnRhaW5lciAtLT4KPGRpdiBpZD0iY29udGFpbmVyIj4KCiAgICAKICAgIDwhLS0gSGVhZGVyIC0tPgogICAgPGRpdiBpZD0iaGVhZGVyIj4KICAgICAgICA8ZGl2IGlkPSJicmFuZGluZyI+CiAgICAgICAgCjxoMSBpZD0ic2l0ZS1uYW1lIj48YSBocmVmPSIvYWRtaW4vIj5EamFuZ28gYWRtaW5pc3RyYXRpb248L2E+PC9oMT4KCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgPGRpdiBpZD0idXNlci10b29scyI+CiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgV2VsY29tZSwKICAgICAgICAgICAgICAgIDxzdHJvbmc+a2FwZTwvc3Ryb25nPi4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj0iLyI+VmlldyBzaXRlPC9hPiAvCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxhIGhyZWY9Ii9hZG1pbi9wYXNzd29yZF9jaGFuZ2UvIj5DaGFuZ2UgcGFzc3dvcmQ8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL2xvZ291dC8iPkxvZyBvdXQ8L2E+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgICAgIAogICAgICAgIAogICAgICAgIAogICAgPC9kaXY+CiAgICA8IS0tIEVORCBIZWFkZXIgLS0+CiAgICAKPGRpdiBjbGFzcz0iYnJlYWRjcnVtYnMiPgo8YSBocmVmPSIvYWRtaW4vIj5Ib21lPC9hPgomcnNhcXVvOyA8YSBocmVmPSIvYWRtaW4vYXV0aC8iPkF1dGhlbnRpY2F0aW9uIGFuZCBBdXRob3JpemF0aW9uPC9hPgomcnNhcXVvOyA8YSBocmVmPSIvYWRtaW4vYXV0aC91c2VyLyI+VXNlcnM8L2E+CiZyc2FxdW87IGZhcmhhbmNvcnAKPC9kaXY+CgogICAgCgogICAgCiAgICAgICAgCiAgICAgICAgPHVsIGNsYXNzPSJtZXNzYWdlbGlzdCI+CiAgICAgICAgICA8bGkgY2xhc3M9InN1Y2Nlc3MiPlRoZSB1c2VyICI8YSBocmVmPSIvYWRtaW4vYXV0aC91c2VyLzMvY2hhbmdlLyI+ZmFyaGFuY29ycDwvYT4iIHdhcyBhZGRlZCBzdWNjZXNzZnVsbHkuIFlvdSBtYXkgZWRpdCBpdCBhZ2FpbiBiZWxvdy48L2xpPgogICAgICAgIDwvdWw+CiAgICAgICAgCiAgICAKCiAgICA8IS0tIENvbnRlbnQgLS0+CiAgICA8ZGl2IGlkPSJjb250ZW50IiBjbGFzcz0iY29sTSI+CiAgICAgICAgCiAgICAgICAgPGgxPkNoYW5nZSB1c2VyPC9oMT4KICAgICAgICA8ZGl2IGlkPSJjb250ZW50LW1haW4iPgoKCiAgPHVsIGNsYXNzPSJvYmplY3QtdG9vbHMiPgogICAgCiAgICA8bGk+CiAgICAgICAgCiAgICAgICAgPGEgaHJlZj0iL2FkbWluL2F1dGgvdXNlci8zL2hpc3RvcnkvIiBjbGFzcz0iaGlzdG9yeWxpbmsiPkhpc3Rvcnk8L2E+CiAgICA8L2xpPgogICAgCiAgICAKICA8L3VsPgoKCjxmb3JtIGVuY3R5cGU9Im11bHRpcGFydC9mb3JtLWRhdGEiIGFjdGlvbj0iIiBtZXRob2Q9InBvc3QiIGlkPSJ1c2VyX2Zvcm0iIG5vdmFsaWRhdGU+PGlucHV0IHR5cGU9J2hpZGRlbicgbmFtZT0nY3NyZm1pZGRsZXdhcmV0b2tlbicgdmFsdWU9J1g3OWxYcEZtTzFVSE5BYmF5Ukp5TjlLSGlOaGNSQm5xbWRnYTlWeGhCWTU2YUlkQ2hpZTBGUXJyZ0luMWJCamYnIC8+CjxkaXY+CgoKCgoKCgogIDxmaWVsZHNldCBjbGFzcz0ibW9kdWxlIGFsaWduZWQgIj4KICAgIAogICAgCiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC11c2VybmFtZSI+CiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXY+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxsYWJlbCBjbGFzcz0icmVxdWlyZWQiIGZvcj0iaWRfdXNlcm5hbWUiPlVzZXJuYW1lOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgPGlucHV0IGNsYXNzPSJ2VGV4dEZpZWxkIiBpZD0iaWRfdXNlcm5hbWUiIG1heGxlbmd0aD0iMTUwIiBuYW1lPSJ1c2VybmFtZSIgdHlwZT0idGV4dCIgdmFsdWU9ImZhcmhhbmNvcnAiIHJlcXVpcmVkIC8+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8cCBjbGFzcz0iaGVscCI+UmVxdWlyZWQuIDE1MCBjaGFyYWN0ZXJzIG9yIGZld2VyLiBMZXR0ZXJzLCBkaWdpdHMgYW5kIEAvLi8rLy0vXyBvbmx5LjwvcD4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDwvZGl2PgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImZvcm0tcm93IGZpZWxkLXBhc3N3b3JkIj4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGRpdj4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPGxhYmVsIGZvcj0iaWRfcGFzc3dvcmQiPlBhc3N3b3JkOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgPGRpdiBpZD0iaWRfcGFzc3dvcmQiPjxzdHJvbmc+YWxnb3JpdGhtPC9zdHJvbmc+OiBwYmtkZjJfc2hhMjU2IDxzdHJvbmc+aXRlcmF0aW9uczwvc3Ryb25nPjogMzAwMDAgPHN0cm9uZz5zYWx0PC9zdHJvbmc+OiB0SU56M2gqKioqKiogPHN0cm9uZz5oYXNoPC9zdHJvbmc+OiBrV2ZoWk4qKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKiA8L2Rpdj4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxwIGNsYXNzPSJoZWxwIj5SYXcgcGFzc3dvcmRzIGFyZSBub3Qgc3RvcmVkLCBzbyB0aGVyZSBpcyBubyB3YXkgdG8gc2VlIHRoaXMgdXNlcidzIHBhc3N3b3JkLCBidXQgeW91IGNhbiBjaGFuZ2UgdGhlIHBhc3N3b3JkIHVzaW5nIDxhIGhyZWY9Ii4uL3Bhc3N3b3JkLyI+dGhpcyBmb3JtPC9hPi48L3A+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKPC9maWVsZHNldD4KCgogIDxmaWVsZHNldCBjbGFzcz0ibW9kdWxlIGFsaWduZWQgIj4KICAgIDxoMj5QZXJzb25hbCBpbmZvPC9oMj4KICAgIAogICAgCiAgICAgICAgPGRpdiBjbGFzcz0iZm9ybS1yb3cgZmllbGQtZmlyc3RfbmFtZSI+CiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXY+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxsYWJlbCBmb3I9ImlkX2ZpcnN0X25hbWUiPkZpcnN0IG5hbWU6PC9sYWJlbD4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8aW5wdXQgY2xhc3M9InZUZXh0RmllbGQiIGlkPSJpZF9maXJzdF9uYW1lIiBtYXhsZW5ndGg9IjMwIiBuYW1lPSJmaXJzdF9uYW1lIiB0eXBlPSJ0ZXh0IiAvPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDwvZGl2PgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImZvcm0tcm93IGZpZWxkLWxhc3RfbmFtZSI+CiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXY+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxsYWJlbCBmb3I9ImlkX2xhc3RfbmFtZSI+TGFzdCBuYW1lOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgPGlucHV0IGNsYXNzPSJ2VGV4dEZpZWxkIiBpZD0iaWRfbGFzdF9uYW1lIiBtYXhsZW5ndGg9IjMwIiBuYW1lPSJsYXN0X25hbWUiIHR5cGU9InRleHQiIC8+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPC9kaXY+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgCiAgICAgICAgPGRpdiBjbGFzcz0iZm9ybS1yb3cgZmllbGQtZW1haWwiPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgZm9yPSJpZF9lbWFpbCI+RW1haWwgYWRkcmVzczo8L2xhYmVsPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxpbnB1dCBjbGFzcz0idlRleHRGaWVsZCIgaWQ9ImlkX2VtYWlsIiBtYXhsZW5ndGg9IjI1NCIgbmFtZT0iZW1haWwiIHR5cGU9ImVtYWlsIiAvPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDwvZGl2PgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgIAo8L2ZpZWxkc2V0PgoKCiAgPGZpZWxkc2V0IGNsYXNzPSJtb2R1bGUgYWxpZ25lZCAiPgogICAgPGgyPlBlcm1pc3Npb25zPC9oMj4KICAgIAogICAgCiAgICAgICAgPGRpdiBjbGFzcz0iZm9ybS1yb3cgZmllbGQtaXNfYWN0aXZlIj4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGRpdiBjbGFzcz0iY2hlY2tib3gtcm93Ij4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPGlucHV0IGNoZWNrZWQ9ImNoZWNrZWQiIGlkPSJpZF9pc19hY3RpdmUiIG5hbWU9ImlzX2FjdGl2ZSIgdHlwZT0iY2hlY2tib3giIC8+PGxhYmVsIGNsYXNzPSJ2Q2hlY2tib3hMYWJlbCIgZm9yPSJpZF9pc19hY3RpdmUiPkFjdGl2ZTwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxwIGNsYXNzPSJoZWxwIj5EZXNpZ25hdGVzIHdoZXRoZXIgdGhpcyB1c2VyIHNob3VsZCBiZSB0cmVhdGVkIGFzIGFjdGl2ZS4gVW5zZWxlY3QgdGhpcyBpbnN0ZWFkIG9mIGRlbGV0aW5nIGFjY291bnRzLjwvcD4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDwvZGl2PgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImZvcm0tcm93IGZpZWxkLWlzX3N0YWZmIj4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGRpdiBjbGFzcz0iY2hlY2tib3gtcm93Ij4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPGlucHV0IGlkPSJpZF9pc19zdGFmZiIgbmFtZT0iaXNfc3RhZmYiIHR5cGU9ImNoZWNrYm94IiAvPjxsYWJlbCBjbGFzcz0idkNoZWNrYm94TGFiZWwiIGZvcj0iaWRfaXNfc3RhZmYiPlN0YWZmIHN0YXR1czwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxwIGNsYXNzPSJoZWxwIj5EZXNpZ25hdGVzIHdoZXRoZXIgdGhlIHVzZXIgY2FuIGxvZyBpbnRvIHRoaXMgYWRtaW4gc2l0ZS48L3A+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC1pc19zdXBlcnVzZXIiPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPSJjaGVja2JveC1yb3ciPgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8aW5wdXQgaWQ9ImlkX2lzX3N1cGVydXNlciIgbmFtZT0iaXNfc3VwZXJ1c2VyIiB0eXBlPSJjaGVja2JveCIgLz48bGFiZWwgY2xhc3M9InZDaGVja2JveExhYmVsIiBmb3I9ImlkX2lzX3N1cGVydXNlciI+U3VwZXJ1c2VyIHN0YXR1czwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxwIGNsYXNzPSJoZWxwIj5EZXNpZ25hdGVzIHRoYXQgdGhpcyB1c2VyIGhhcyBhbGwgcGVybWlzc2lvbnMgd2l0aG91dCBleHBsaWNpdGx5IGFzc2lnbmluZyB0aGVtLjwvcD4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDwvZGl2PgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImZvcm0tcm93IGZpZWxkLWdyb3VwcyI+CiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXY+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxsYWJlbCBmb3I9ImlkX2dyb3VwcyI+R3JvdXBzOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgCjxkaXYgY2xhc3M9InJlbGF0ZWQtd2lkZ2V0LXdyYXBwZXIiPgogICAgPHNlbGVjdCBtdWx0aXBsZT0ibXVsdGlwbGUiIGNsYXNzPSJzZWxlY3RmaWx0ZXIiIGRhdGEtZmllbGQtbmFtZT0iZ3JvdXBzIiBkYXRhLWlzLXN0YWNrZWQ9IjAiIGlkPSJpZF9ncm91cHMiIG5hbWU9Imdyb3VwcyI+Cjwvc2VsZWN0PgogICAgCiAgICAgICAgCiAgICAgICAgCiAgICAgICAgPGEgY2xhc3M9InJlbGF0ZWQtd2lkZ2V0LXdyYXBwZXItbGluayBhZGQtcmVsYXRlZCIgaWQ9ImFkZF9pZF9ncm91cHMiCiAgICAgICAgICAgIGhyZWY9Ii9hZG1pbi9hdXRoL2dyb3VwL2FkZC8/X3RvX2ZpZWxkPWlkJmFtcDtfcG9wdXA9MSIKICAgICAgICAgICAgdGl0bGU9IkFkZCBhbm90aGVyIGdyb3VwIj4KICAgICAgICAgICAgPGltZyBzcmM9Ii9hc3NldHMvYWRtaW4vaW1nL2ljb24tYWRkbGluay5zdmciIGFsdD0iQWRkIi8+CiAgICAgICAgPC9hPgogICAgICAgIAogICAgICAgIAogICAgCjwvZGl2PgoKICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxwIGNsYXNzPSJoZWxwIj5UaGUgZ3JvdXBzIHRoaXMgdXNlciBiZWxvbmdzIHRvLiBBIHVzZXIgd2lsbCBnZXQgYWxsIHBlcm1pc3Npb25zIGdyYW50ZWQgdG8gZWFjaCBvZiB0aGVpciBncm91cHMuIEhvbGQgZG93biAiQ29udHJvbCIsIG9yICJDb21tYW5kIiBvbiBhIE1hYywgdG8gc2VsZWN0IG1vcmUgdGhhbiBvbmUuPC9wPgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPC9kaXY+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgCiAgICAgICAgPGRpdiBjbGFzcz0iZm9ybS1yb3cgZmllbGQtdXNlcl9wZXJtaXNzaW9ucyI+CiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXY+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxsYWJlbCBmb3I9ImlkX3VzZXJfcGVybWlzc2lvbnMiPlVzZXIgcGVybWlzc2lvbnM6PC9sYWJlbD4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAKPGRpdiBjbGFzcz0icmVsYXRlZC13aWRnZXQtd3JhcHBlciI+CiAgICA8c2VsZWN0IG11bHRpcGxlPSJtdWx0aXBsZSIgY2xhc3M9InNlbGVjdGZpbHRlciIgZGF0YS1maWVsZC1uYW1lPSJ1c2VyIHBlcm1pc3Npb25zIiBkYXRhLWlzLXN0YWNrZWQ9IjAiIGlkPSJpZF91c2VyX3Blcm1pc3Npb25zIiBuYW1lPSJ1c2VyX3Blcm1pc3Npb25zIj4KPG9wdGlvbiB2YWx1ZT0iMSI+YWRtaW4gfCBsb2cgZW50cnkgfCBDYW4gYWRkIGxvZyBlbnRyeTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIyIj5hZG1pbiB8IGxvZyBlbnRyeSB8IENhbiBjaGFuZ2UgbG9nIGVudHJ5PC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjMiPmFkbWluIHwgbG9nIGVudHJ5IHwgQ2FuIGRlbGV0ZSBsb2cgZW50cnk8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMTAiPmF1dGggfCBncm91cCB8IENhbiBhZGQgZ3JvdXA8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMTEiPmF1dGggfCBncm91cCB8IENhbiBjaGFuZ2UgZ3JvdXA8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMTIiPmF1dGggfCBncm91cCB8IENhbiBkZWxldGUgZ3JvdXA8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iNCI+YXV0aCB8IHBlcm1pc3Npb24gfCBDYW4gYWRkIHBlcm1pc3Npb248L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iNSI+YXV0aCB8IHBlcm1pc3Npb24gfCBDYW4gY2hhbmdlIHBlcm1pc3Npb248L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iNiI+YXV0aCB8IHBlcm1pc3Npb24gfCBDYW4gZGVsZXRlIHBlcm1pc3Npb248L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iNyI+YXV0aCB8IHVzZXIgfCBDYW4gYWRkIHVzZXI8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iOCI+YXV0aCB8IHVzZXIgfCBDYW4gY2hhbmdlIHVzZXI8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iOSI+YXV0aCB8IHVzZXIgfCBDYW4gZGVsZXRlIHVzZXI8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMTMiPmNvbnRlbnR0eXBlcyB8IGNvbnRlbnQgdHlwZSB8IENhbiBhZGQgY29udGVudCB0eXBlPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjE0Ij5jb250ZW50dHlwZXMgfCBjb250ZW50IHR5cGUgfCBDYW4gY2hhbmdlIGNvbnRlbnQgdHlwZTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIxNSI+Y29udGVudHR5cGVzIHwgY29udGVudCB0eXBlIHwgQ2FuIGRlbGV0ZSBjb250ZW50IHR5cGU8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMjUiPmNvcmUgfCBhcHBsaWNhdGlvbiB8IENhbiBhZGQgYXBwbGljYXRpb248L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMjYiPmNvcmUgfCBhcHBsaWNhdGlvbiB8IENhbiBjaGFuZ2UgYXBwbGljYXRpb248L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMjciPmNvcmUgfCBhcHBsaWNhdGlvbiB8IENhbiBkZWxldGUgYXBwbGljYXRpb248L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMTkiPmNvcmUgfCBjb21wYW55IHwgQ2FuIGFkZCBjb21wYW55PC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjIwIj5jb3JlIHwgY29tcGFueSB8IENhbiBjaGFuZ2UgY29tcGFueTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIyMSI+Y29yZSB8IGNvbXBhbnkgfCBDYW4gZGVsZXRlIGNvbXBhbnk8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMjIiPmNvcmUgfCBzdHVkZW50IHwgQ2FuIGFkZCBzdHVkZW50PC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjIzIj5jb3JlIHwgc3R1ZGVudCB8IENhbiBjaGFuZ2Ugc3R1ZGVudDwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIyNCI+Y29yZSB8IHN0dWRlbnQgfCBDYW4gZGVsZXRlIHN0dWRlbnQ8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMjgiPmNvcmUgfCBzdXBlcnZpc29yIHwgQ2FuIGFkZCBzdXBlcnZpc29yPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjI5Ij5jb3JlIHwgc3VwZXJ2aXNvciB8IENhbiBjaGFuZ2Ugc3VwZXJ2aXNvcjwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIzMCI+Y29yZSB8IHN1cGVydmlzb3IgfCBDYW4gZGVsZXRlIHN1cGVydmlzb3I8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMzEiPmNvcmUgfCB2YWNhbmN5IHwgQ2FuIGFkZCB2YWNhbmN5PC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjMyIj5jb3JlIHwgdmFjYW5jeSB8IENhbiBjaGFuZ2UgdmFjYW5jeTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIzMyI+Y29yZSB8IHZhY2FuY3kgfCBDYW4gZGVsZXRlIHZhY2FuY3k8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMTYiPnNlc3Npb25zIHwgc2Vzc2lvbiB8IENhbiBhZGQgc2Vzc2lvbjwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIxNyI+c2Vzc2lvbnMgfCBzZXNzaW9uIHwgQ2FuIGNoYW5nZSBzZXNzaW9uPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjE4Ij5zZXNzaW9ucyB8IHNlc3Npb24gfCBDYW4gZGVsZXRlIHNlc3Npb248L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iNDMiPnNpbGsgfCBwcm9maWxlIHwgQ2FuIGFkZCBwcm9maWxlPC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjQ0Ij5zaWxrIHwgcHJvZmlsZSB8IENhbiBjaGFuZ2UgcHJvZmlsZTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSI0NSI+c2lsayB8IHByb2ZpbGUgfCBDYW4gZGVsZXRlIHByb2ZpbGU8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMzQiPnNpbGsgfCByZXF1ZXN0IHwgQ2FuIGFkZCByZXF1ZXN0PC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjM1Ij5zaWxrIHwgcmVxdWVzdCB8IENhbiBjaGFuZ2UgcmVxdWVzdDwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIzNiI+c2lsayB8IHJlcXVlc3QgfCBDYW4gZGVsZXRlIHJlcXVlc3Q8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iNDAiPnNpbGsgfCByZXNwb25zZSB8IENhbiBhZGQgcmVzcG9uc2U8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iNDEiPnNpbGsgfCByZXNwb25zZSB8IENhbiBjaGFuZ2UgcmVzcG9uc2U8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iNDIiPnNpbGsgfCByZXNwb25zZSB8IENhbiBkZWxldGUgcmVzcG9uc2U8L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMzciPnNpbGsgfCBzcWwgcXVlcnkgfCBDYW4gYWRkIHNxbCBxdWVyeTwvb3B0aW9uPgo8b3B0aW9uIHZhbHVlPSIzOCI+c2lsayB8IHNxbCBxdWVyeSB8IENhbiBjaGFuZ2Ugc3FsIHF1ZXJ5PC9vcHRpb24+CjxvcHRpb24gdmFsdWU9IjM5Ij5zaWxrIHwgc3FsIHF1ZXJ5IHwgQ2FuIGRlbGV0ZSBzcWwgcXVlcnk8L29wdGlvbj4KPC9zZWxlY3Q+CiAgICAKICAgICAgICAKICAgICAgICAKICAgICAgICAKICAgIAo8L2Rpdj4KCiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8cCBjbGFzcz0iaGVscCI+U3BlY2lmaWMgcGVybWlzc2lvbnMgZm9yIHRoaXMgdXNlci4gSG9sZCBkb3duICJDb250cm9sIiwgb3IgIkNvbW1hbmQiIG9uIGEgTWFjLCB0byBzZWxlY3QgbW9yZSB0aGFuIG9uZS48L3A+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKPC9maWVsZHNldD4KCgogIDxmaWVsZHNldCBjbGFzcz0ibW9kdWxlIGFsaWduZWQgIj4KICAgIDxoMj5JbXBvcnRhbnQgZGF0ZXM8L2gyPgogICAgCiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC1sYXN0X2xvZ2luIj4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGRpdj4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPGxhYmVsIGZvcj0iaWRfbGFzdF9sb2dpbl8wIj5MYXN0IGxvZ2luOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgPHAgY2xhc3M9ImRhdGV0aW1lIj5EYXRlOiA8aW5wdXQgY2xhc3M9InZEYXRlRmllbGQiIGlkPSJpZF9sYXN0X2xvZ2luXzAiIG5hbWU9Imxhc3RfbG9naW5fMCIgc2l6ZT0iMTAiIHR5cGU9InRleHQiIC8+PGJyIC8+VGltZTogPGlucHV0IGNsYXNzPSJ2VGltZUZpZWxkIiBpZD0iaWRfbGFzdF9sb2dpbl8xIiBuYW1lPSJsYXN0X2xvZ2luXzEiIHNpemU9IjgiIHR5cGU9InRleHQiIC8+PC9wPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIDwvZGl2PgogICAgICAgICAgICAKICAgICAgICA8L2Rpdj4KICAgIAogICAgICAgIDxkaXYgY2xhc3M9ImZvcm0tcm93IGZpZWxkLWRhdGVfam9pbmVkIj4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGRpdj4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPGxhYmVsIGNsYXNzPSJyZXF1aXJlZCIgZm9yPSJpZF9kYXRlX2pvaW5lZF8wIj5EYXRlIGpvaW5lZDo8L2xhYmVsPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxwIGNsYXNzPSJkYXRldGltZSI+RGF0ZTogPGlucHV0IGNsYXNzPSJ2RGF0ZUZpZWxkIiBpZD0iaWRfZGF0ZV9qb2luZWRfMCIgbmFtZT0iZGF0ZV9qb2luZWRfMCIgc2l6ZT0iMTAiIHR5cGU9InRleHQiIHZhbHVlPSIyMDE3LTAzLTI3IiByZXF1aXJlZCAvPjxiciAvPlRpbWU6IDxpbnB1dCBjbGFzcz0idlRpbWVGaWVsZCIgaWQ9ImlkX2RhdGVfam9pbmVkXzEiIG5hbWU9ImRhdGVfam9pbmVkXzEiIHNpemU9IjgiIHR5cGU9InRleHQiIHZhbHVlPSIxNDo1MzozOSIgcmVxdWlyZWQgLz48L3A+PGlucHV0IGlkPSJpbml0aWFsLWlkX2RhdGVfam9pbmVkXzAiIG5hbWU9ImluaXRpYWwtZGF0ZV9qb2luZWRfMCIgdHlwZT0iaGlkZGVuIiB2YWx1ZT0iMjAxNy0wMy0yNyIgLz48aW5wdXQgaWQ9ImluaXRpYWwtaWRfZGF0ZV9qb2luZWRfMSIgbmFtZT0iaW5pdGlhbC1kYXRlX2pvaW5lZF8xIiB0eXBlPSJoaWRkZW4iIHZhbHVlPSIxNDo1MzozOSIgLz4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKPC9maWVsZHNldD4KCgoKCgoKCgoKCgoKCjxkaXYgY2xhc3M9InN1Ym1pdC1yb3ciPgo8aW5wdXQgdHlwZT0ic3VibWl0IiB2YWx1ZT0iU2F2ZSIgY2xhc3M9ImRlZmF1bHQiIG5hbWU9Il9zYXZlIiAvPgoKICAgIAogICAgPHAgY2xhc3M9ImRlbGV0ZWxpbmstYm94Ij48YSBocmVmPSIvYWRtaW4vYXV0aC91c2VyLzMvZGVsZXRlLyIgY2xhc3M9ImRlbGV0ZWxpbmsiPkRlbGV0ZTwvYT48L3A+CgoKPGlucHV0IHR5cGU9InN1Ym1pdCIgdmFsdWU9IlNhdmUgYW5kIGFkZCBhbm90aGVyIiBuYW1lPSJfYWRkYW5vdGhlciIgLz4KPGlucHV0IHR5cGU9InN1Ym1pdCIgdmFsdWU9IlNhdmUgYW5kIGNvbnRpbnVlIGVkaXRpbmciIG5hbWU9Il9jb250aW51ZSIgLz4KPC9kaXY+CgoKCiAgICA8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIKICAgICAgICAgICAgaWQ9ImRqYW5nby1hZG1pbi1mb3JtLWFkZC1jb25zdGFudHMiCiAgICAgICAgICAgIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9jaGFuZ2VfZm9ybS5qcyIKICAgICAgICAgICAgPgogICAgPC9zY3JpcHQ+CgoKCgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIKICAgICAgICBpZD0iZGphbmdvLWFkbWluLXByZXBvcHVsYXRlZC1maWVsZHMtY29uc3RhbnRzIgogICAgICAgIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9wcmVwb3B1bGF0ZV9pbml0LmpzIgogICAgICAgIGRhdGEtcHJlcG9wdWxhdGVkLWZpZWxkcz0iW10iPgo8L3NjcmlwdD4KCgo8L2Rpdj4KPC9mb3JtPjwvZGl2PgoKICAgICAgICAKICAgICAgICA8YnIgY2xhc3M9ImNsZWFyIiAvPgogICAgPC9kaXY+CiAgICA8IS0tIEVORCBDb250ZW50IC0tPgoKICAgIDxkaXYgaWQ9ImZvb3RlciI+PC9kaXY+CjwvZGl2Pgo8IS0tIEVORCBDb250YWluZXIgLS0+Cgo8L2JvZHk+CjwvaHRtbD4K", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 14:53:39 GMT\", \"Expires\": \"Mon, 27 Mar 2017 14:53:39 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "f2923a17-40b2-4b67-8ee4-3c42c93674d1", - "fields": { - "request": "de2a5568-1762-4d7d-afe1-733d9f7f985a", - "status_code": 200, - "raw_body": "PCFET0NUWVBFIGh0bWw+Cgo8aHRtbCBsYW5nPSJlbi11cyIgPgo8aGVhZD4KPHRpdGxlPkFkZCBjb21wYW55IHwgRGphbmdvIHNpdGUgYWRtaW48L3RpdGxlPgo8bGluayByZWw9InN0eWxlc2hlZXQiIHR5cGU9InRleHQvY3NzIiBocmVmPSIvYXNzZXRzL2FkbWluL2Nzcy9iYXNlLmNzcyIgLz4KPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiB0eXBlPSJ0ZXh0L2NzcyIgaHJlZj0iL2Fzc2V0cy9hZG1pbi9jc3MvZm9ybXMuY3NzIiAvPgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hZG1pbi9qc2kxOG4vIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9jb3JlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IvanF1ZXJ5L2pxdWVyeS5qcyI+PC9zY3JpcHQ+CjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYWRtaW4vanMvanF1ZXJ5LmluaXQuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL2FkbWluL1JlbGF0ZWRPYmplY3RMb29rdXBzLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy9hY3Rpb25zLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy91cmxpZnkuanMiPjwvc2NyaXB0Pgo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCIgc3JjPSIvYXNzZXRzL2FkbWluL2pzL3ByZXBvcHVsYXRlLmpzIj48L3NjcmlwdD4KPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiIHNyYz0iL2Fzc2V0cy9hZG1pbi9qcy92ZW5kb3IveHJlZ2V4cC94cmVnZXhwLmpzIj48L3NjcmlwdD4KCjxtZXRhIG5hbWU9InJvYm90cyIgY29udGVudD0iTk9ORSxOT0FSQ0hJVkUiIC8+CjwvaGVhZD4KCgo8Ym9keSBjbGFzcz0iIGFwcC1jb3JlIG1vZGVsLWNvbXBhbnkgY2hhbmdlLWZvcm0iCiAgZGF0YS1hZG1pbi11dGMtb2Zmc2V0PSIwIj4KCjwhLS0gQ29udGFpbmVyIC0tPgo8ZGl2IGlkPSJjb250YWluZXIiPgoKICAgIAogICAgPCEtLSBIZWFkZXIgLS0+CiAgICA8ZGl2IGlkPSJoZWFkZXIiPgogICAgICAgIDxkaXYgaWQ9ImJyYW5kaW5nIj4KICAgICAgICAKPGgxIGlkPSJzaXRlLW5hbWUiPjxhIGhyZWY9Ii9hZG1pbi8iPkRqYW5nbyBhZG1pbmlzdHJhdGlvbjwvYT48L2gxPgoKICAgICAgICA8L2Rpdj4KICAgICAgICAKICAgICAgICAKICAgICAgICA8ZGl2IGlkPSJ1c2VyLXRvb2xzIj4KICAgICAgICAgICAgCiAgICAgICAgICAgICAgICBXZWxjb21lLAogICAgICAgICAgICAgICAgPHN0cm9uZz5rYXBlPC9zdHJvbmc+LgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICA8YSBocmVmPSIvIj5WaWV3IHNpdGU8L2E+IC8KICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGEgaHJlZj0iL2FkbWluL3Bhc3N3b3JkX2NoYW5nZS8iPkNoYW5nZSBwYXNzd29yZDwvYT4gLwogICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8YSBocmVmPSIvYWRtaW4vbG9nb3V0LyI+TG9nIG91dDwvYT4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgCiAgICA8L2Rpdj4KICAgIDwhLS0gRU5EIEhlYWRlciAtLT4KICAgIAo8ZGl2IGNsYXNzPSJicmVhZGNydW1icyI+CjxhIGhyZWY9Ii9hZG1pbi8iPkhvbWU8L2E+CiZyc2FxdW87IDxhIGhyZWY9Ii9hZG1pbi9jb3JlLyI+Q29yZTwvYT4KJnJzYXF1bzsgPGEgaHJlZj0iL2FkbWluL2NvcmUvY29tcGFueS8iPkNvbXBhbnlzPC9hPgomcnNhcXVvOyBBZGQgY29tcGFueQo8L2Rpdj4KCiAgICAKCiAgICAKICAgICAgICAKICAgIAoKICAgIDwhLS0gQ29udGVudCAtLT4KICAgIDxkaXYgaWQ9ImNvbnRlbnQiIGNsYXNzPSJjb2xNIj4KICAgICAgICAKICAgICAgICA8aDE+QWRkIGNvbXBhbnk8L2gxPgogICAgICAgIDxkaXYgaWQ9ImNvbnRlbnQtbWFpbiI+CgoKCjxmb3JtIGVuY3R5cGU9Im11bHRpcGFydC9mb3JtLWRhdGEiIGFjdGlvbj0iIiBtZXRob2Q9InBvc3QiIGlkPSJjb21wYW55X2Zvcm0iIG5vdmFsaWRhdGU+PGlucHV0IHR5cGU9J2hpZGRlbicgbmFtZT0nY3NyZm1pZGRsZXdhcmV0b2tlbicgdmFsdWU9J0V0ZzFQSEEzNVhxbmZ3S0xNTFJPVWpvRVNINFVJSDc1SHN6QnFvOFNuNURmZ0ZnS2t0MnJudVRjN0NUdTlhVm8nIC8+CjxkaXY+CgoKCgoKCgogIDxmaWVsZHNldCBjbGFzcz0ibW9kdWxlIGFsaWduZWQgIj4KICAgIAogICAgCiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC11c2VyIj4KICAgICAgICAgICAgCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPGRpdj4KICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgPGxhYmVsIGNsYXNzPSJyZXF1aXJlZCIgZm9yPSJpZF91c2VyIj5Vc2VyOjwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgCjxkaXYgY2xhc3M9InJlbGF0ZWQtd2lkZ2V0LXdyYXBwZXIiPgogICAgPHNlbGVjdCBpZD0iaWRfdXNlciIgbmFtZT0idXNlciIgcmVxdWlyZWQ+CjxvcHRpb24gdmFsdWU9IiIgc2VsZWN0ZWQ9InNlbGVjdGVkIj4tLS0tLS0tLS08L29wdGlvbj4KPG9wdGlvbiB2YWx1ZT0iMSI+a2FwZTwvb3B0aW9uPgo8L3NlbGVjdD4KICAgIAogICAgICAgIAogICAgICAgIDxhIGNsYXNzPSJyZWxhdGVkLXdpZGdldC13cmFwcGVyLWxpbmsgY2hhbmdlLXJlbGF0ZWQiIGlkPSJjaGFuZ2VfaWRfdXNlciIKICAgICAgICAgICAgZGF0YS1ocmVmLXRlbXBsYXRlPSIvYWRtaW4vYXV0aC91c2VyL19fZmtfXy9jaGFuZ2UvP190b19maWVsZD1pZCZhbXA7X3BvcHVwPTEiCiAgICAgICAgICAgIHRpdGxlPSJDaGFuZ2Ugc2VsZWN0ZWQgdXNlciI+CiAgICAgICAgICAgIDxpbWcgc3JjPSIvYXNzZXRzL2FkbWluL2ltZy9pY29uLWNoYW5nZWxpbmsuc3ZnIiBhbHQ9IkNoYW5nZSIvPgogICAgICAgIDwvYT4KICAgICAgICAKICAgICAgICAKICAgICAgICA8YSBjbGFzcz0icmVsYXRlZC13aWRnZXQtd3JhcHBlci1saW5rIGFkZC1yZWxhdGVkIiBpZD0iYWRkX2lkX3VzZXIiCiAgICAgICAgICAgIGhyZWY9Ii9hZG1pbi9hdXRoL3VzZXIvYWRkLz9fdG9fZmllbGQ9aWQmYW1wO19wb3B1cD0xIgogICAgICAgICAgICB0aXRsZT0iQWRkIGFub3RoZXIgdXNlciI+CiAgICAgICAgICAgIDxpbWcgc3JjPSIvYXNzZXRzL2FkbWluL2ltZy9pY29uLWFkZGxpbmsuc3ZnIiBhbHQ9IkFkZCIvPgogICAgICAgIDwvYT4KICAgICAgICAKICAgICAgICAKICAgIAo8L2Rpdj4KCiAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgPC9kaXY+CiAgICAgICAgICAgIAogICAgICAgIDwvZGl2PgogICAgCiAgICAgICAgPGRpdiBjbGFzcz0iZm9ybS1yb3cgZmllbGQtZGVzY3JpcHRpb24iPgogICAgICAgICAgICAKICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8ZGl2PgogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWwgY2xhc3M9InJlcXVpcmVkIiBmb3I9ImlkX2Rlc2NyaXB0aW9uIj5EZXNjcmlwdGlvbjo8L2xhYmVsPgogICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0ZXh0YXJlYSBjbGFzcz0idkxhcmdlVGV4dEZpZWxkIiBjb2xzPSI0MCIgaWQ9ImlkX2Rlc2NyaXB0aW9uIiBuYW1lPSJkZXNjcmlwdGlvbiIgcm93cz0iMTAiIHJlcXVpcmVkPg0KPC90ZXh0YXJlYT4KICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKICAgICAgICA8ZGl2IGNsYXNzPSJmb3JtLXJvdyBmaWVsZC12ZXJpZmllZCI+CiAgICAgICAgICAgIAogICAgICAgICAgICAKICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9ImNoZWNrYm94LXJvdyI+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgIDxpbnB1dCBpZD0iaWRfdmVyaWZpZWQiIG5hbWU9InZlcmlmaWVkIiB0eXBlPSJjaGVja2JveCIgLz48bGFiZWwgY2xhc3M9InZDaGVja2JveExhYmVsIiBmb3I9ImlkX3ZlcmlmaWVkIj5WZXJpZmllZDwvbGFiZWw+CiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICA8L2Rpdj4KICAgICAgICAgICAgCiAgICAgICAgPC9kaXY+CiAgICAKPC9maWVsZHNldD4KCgoKCgoKCgoKCgoKCjxkaXYgY2xhc3M9InN1Ym1pdC1yb3ciPgo8aW5wdXQgdHlwZT0ic3VibWl0IiB2YWx1ZT0iU2F2ZSIgY2xhc3M9ImRlZmF1bHQiIG5hbWU9Il9zYXZlIiAvPgoKCjxpbnB1dCB0eXBlPSJzdWJtaXQiIHZhbHVlPSJTYXZlIGFuZCBhZGQgYW5vdGhlciIgbmFtZT0iX2FkZGFub3RoZXIiIC8+CjxpbnB1dCB0eXBlPSJzdWJtaXQiIHZhbHVlPSJTYXZlIGFuZCBjb250aW51ZSBlZGl0aW5nIiBuYW1lPSJfY29udGludWUiIC8+CjwvZGl2PgoKCgogICAgPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiCiAgICAgICAgICAgIGlkPSJkamFuZ28tYWRtaW4tZm9ybS1hZGQtY29uc3RhbnRzIgogICAgICAgICAgICBzcmM9Ii9hc3NldHMvYWRtaW4vanMvY2hhbmdlX2Zvcm0uanMiCiAgICAgICAgICAgIAogICAgICAgICAgICAgICAgZGF0YS1tb2RlbC1uYW1lPSJjb21wYW55IgogICAgICAgICAgICA+CiAgICA8L3NjcmlwdD4KCgoKCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IgogICAgICAgIGlkPSJkamFuZ28tYWRtaW4tcHJlcG9wdWxhdGVkLWZpZWxkcy1jb25zdGFudHMiCiAgICAgICAgc3JjPSIvYXNzZXRzL2FkbWluL2pzL3ByZXBvcHVsYXRlX2luaXQuanMiCiAgICAgICAgZGF0YS1wcmVwb3B1bGF0ZWQtZmllbGRzPSJbXSI+Cjwvc2NyaXB0PgoKCjwvZGl2Pgo8L2Zvcm0+PC9kaXY+CgogICAgICAgIAogICAgICAgIDxiciBjbGFzcz0iY2xlYXIiIC8+CiAgICA8L2Rpdj4KICAgIDwhLS0gRU5EIENvbnRlbnQgLS0+CgogICAgPGRpdiBpZD0iZm9vdGVyIj48L2Rpdj4KPC9kaXY+CjwhLS0gRU5EIENvbnRhaW5lciAtLT4KCjwvYm9keT4KPC9odG1sPgo=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Last-Modified\": \"Mon, 27 Mar 2017 14:33:39 GMT\", \"Expires\": \"Mon, 27 Mar 2017 14:33:39 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "f2b95faa-0cff-4cda-9693-36e9e5bb7781", - "fields": { - "request": "3f70cfc7-2eb6-4ca0-bb1e-357de168cce2", - "status_code": 302, - "raw_body": "", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Location\": \"/admin/core/company/\", \"Last-Modified\": \"Mon, 27 Mar 2017 14:55:26 GMT\", \"Expires\": \"Mon, 27 Mar 2017 14:55:26 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\"}" - } -}, -{ - "model": "silk.response", - "pk": "f38b1346-a29a-47bf-a957-cc9f27b65392", - "fields": { - "request": "25180dbf-2083-4a9a-a3da-174ffbb7213a", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "f4b1a3d6-f010-42db-8c49-eb7a69bc31e3", - "fields": { - "request": "4d09d335-eb1f-404b-91db-050904a6f3ce", - "status_code": 500, - "raw_body": "QXR0cmlidXRlRXJyb3IgYXQgL2FwaS9zdHVkZW50cy8yL2Jvb2ttYXJrZWQtdmFjYW5jaWVzLwonZGljdCcgb2JqZWN0IGhhcyBubyBhdHRyaWJ1dGUgJ2lkJwoKUmVxdWVzdCBNZXRob2Q6IFBPU1QKUmVxdWVzdCBVUkw6IGh0dHA6Ly8xMjcuMC4wLjE6ODAwMC9hcGkvc3R1ZGVudHMvMi9ib29rbWFya2VkLXZhY2FuY2llcy8KRGphbmdvIFZlcnNpb246IDEuMTAuNQpQeXRob24gRXhlY3V0YWJsZTogQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXHB5dGhvbi5leGUKUHl0aG9uIFZlcnNpb246IDMuNi4wClB5dGhvbiBQYXRoOiBbJ0Q6XFxQUExBJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXHB5dGhvbjM2LnppcCcsICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyXFxETExzJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXGxpYicsICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXGxpYlxcc2l0ZS1wYWNrYWdlcyddClNlcnZlciB0aW1lOiBNb24sIDI3IE1hciAyMDE3IDE1OjQ2OjE0ICswMDAwCkluc3RhbGxlZCBBcHBsaWNhdGlvbnM6ClsnZGphbmdvLmNvbnRyaWIuYWRtaW4nLAogJ2RqYW5nby5jb250cmliLmF1dGgnLAogJ2RqYW5nby5jb250cmliLmNvbnRlbnR0eXBlcycsCiAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMnLAogJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzJywKICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcycsCiAnd2VicGFja19sb2FkZXInLAogJ2NvcmUnLAogJ3Jlc3RfZnJhbWV3b3JrJywKICdkamFuZ29fbm9zZScsCiAncmVzdF9mcmFtZXdvcmtfc3dhZ2dlcicsCiAnc2lsayddCkluc3RhbGxlZCBNaWRkbGV3YXJlOgpbJ2RqYW5nby5taWRkbGV3YXJlLnNlY3VyaXR5LlNlY3VyaXR5TWlkZGxld2FyZScsCiAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMubWlkZGxld2FyZS5TZXNzaW9uTWlkZGxld2FyZScsCiAnZGphbmdvLm1pZGRsZXdhcmUuY29tbW9uLkNvbW1vbk1pZGRsZXdhcmUnLAogJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5hdXRoLm1pZGRsZXdhcmUuQXV0aGVudGljYXRpb25NaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5tZXNzYWdlcy5taWRkbGV3YXJlLk1lc3NhZ2VNaWRkbGV3YXJlJywKICdkamFuZ28ubWlkZGxld2FyZS5jbGlja2phY2tpbmcuWEZyYW1lT3B0aW9uc01pZGRsZXdhcmUnLAogJ3NpbGsubWlkZGxld2FyZS5TaWxreU1pZGRsZXdhcmUnXQoKClRyYWNlYmFjazogIAoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXGRqYW5nb1xjb3JlXGhhbmRsZXJzXGV4Y2VwdGlvbi5weSIgaW4gaW5uZXIKICAzOS4gICAgICAgICAgICAgcmVzcG9uc2UgPSBnZXRfcmVzcG9uc2UocmVxdWVzdCkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cY29yZVxoYW5kbGVyc1xiYXNlLnB5IiBpbiBfZ2V0X3Jlc3BvbnNlCiAgMTg3LiAgICAgICAgICAgICAgICAgcmVzcG9uc2UgPSBzZWxmLnByb2Nlc3NfZXhjZXB0aW9uX2J5X21pZGRsZXdhcmUoZSwgcmVxdWVzdCkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cY29yZVxoYW5kbGVyc1xiYXNlLnB5IiBpbiBfZ2V0X3Jlc3BvbnNlCiAgMTg1LiAgICAgICAgICAgICAgICAgcmVzcG9uc2UgPSB3cmFwcGVkX2NhbGxiYWNrKHJlcXVlc3QsICpjYWxsYmFja19hcmdzLCAqKmNhbGxiYWNrX2t3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cdmlld3NcZGVjb3JhdG9yc1xjc3JmLnB5IiBpbiB3cmFwcGVkX3ZpZXcKICA1OC4gICAgICAgICByZXR1cm4gdmlld19mdW5jKCphcmdzLCAqKmt3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3c2V0cy5weSIgaW4gdmlldwogIDgzLiAgICAgICAgICAgICByZXR1cm4gc2VsZi5kaXNwYXRjaChyZXF1ZXN0LCAqYXJncywgKiprd2FyZ3MpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNccmVzdF9mcmFtZXdvcmtcdmlld3MucHkiIGluIGRpc3BhdGNoCiAgNDgzLiAgICAgICAgICAgICByZXNwb25zZSA9IHNlbGYuaGFuZGxlX2V4Y2VwdGlvbihleGMpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNccmVzdF9mcmFtZXdvcmtcdmlld3MucHkiIGluIGhhbmRsZV9leGNlcHRpb24KICA0NDMuICAgICAgICAgICAgIHNlbGYucmFpc2VfdW5jYXVnaHRfZXhjZXB0aW9uKGV4YykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3cy5weSIgaW4gZGlzcGF0Y2gKICA0ODAuICAgICAgICAgICAgIHJlc3BvbnNlID0gaGFuZGxlcihyZXF1ZXN0LCAqYXJncywgKiprd2FyZ3MpCgpGaWxlICJEOlxQUExBXGNvcmVcdmlld3NcYWNjb3VudHMucHkiIGluIGJvb2ttYXJrX3ZhY2FuY2llcwogIDMwLiAgICAgICAgIHZhY2FuY3kgPSBnZXRfb2JqZWN0X29yXzQwNChWYWNhbmN5Lm9iamVjdHMuYWxsKCksIHBrPXJlcXVlc3QuZGF0YS5pZCkKCkV4Y2VwdGlvbiBUeXBlOiBBdHRyaWJ1dGVFcnJvciBhdCAvYXBpL3N0dWRlbnRzLzIvYm9va21hcmtlZC12YWNhbmNpZXMvCkV4Y2VwdGlvbiBWYWx1ZTogJ2RpY3QnIG9iamVjdCBoYXMgbm8gYXR0cmlidXRlICdpZCcKUmVxdWVzdCBpbmZvcm1hdGlvbjoKVVNFUjoga2FwZQoKR0VUOiBObyBHRVQgZGF0YQoKUE9TVDogTm8gUE9TVCBkYXRhCgpGSUxFUzogTm8gRklMRVMgZGF0YQoKQ09PS0lFUzoKc2Vzc2lvbmlkID0gJ2JsdDg3N2c1ZmptdWN4eTNkZDV1eGNpemF2YjlvcG92Jwpjc3JmdG9rZW4gPSAnMUVFUDJTd0t0MUs5UWJXbkZQU3lXUElpYnRPN01BYVZxS0xFZW9vRmdZVnlkallQb2duME93cDI5b1VXNkE2SycKCk1FVEE6CkFMTFVTRVJTUFJPRklMRSA9ICdDOlxcUHJvZ3JhbURhdGEnCkFQUERBVEEgPSAnQzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmcnCkNPTU1PTlBST0dSQU1GSUxFUyA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcQ29tbW9uIEZpbGVzJwpDT01NT05QUk9HUkFNRklMRVMoWDg2KSA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcQ29tbW9uIEZpbGVzJwpDT01NT05QUk9HUkFNVzY0MzIgPSAnQzpcXFByb2dyYW0gRmlsZXNcXENvbW1vbiBGaWxlcycKQ09NUFVURVJOQU1FID0gJ0ZBUkhBTicKQ09NU1BFQyA9ICdDOlxcV0lORE9XU1xcc3lzdGVtMzJcXGNtZC5leGUnCkNPTlRFTlRfTEVOR1RIID0gJzEyOCcKQ09OVEVOVF9UWVBFID0gJ2FwcGxpY2F0aW9uL2pzb24nCkNTUkZfQ09PS0lFID0gJzFFRVAyU3dLdDFLOVFiV25GUFN5V1BJaWJ0TzdNQWFWcUtMRWVvb0ZnWVZ5ZGpZUG9nbjBPd3AyOW9VVzZBNksnCkRKQU5HT19TRVRUSU5HU19NT0RVTEUgPSAna2FwZS5zZXR0aW5ncycKRlBTX0JST1dTRVJfQVBQX1BST0ZJTEVfU1RSSU5HID0gJ0ludGVybmV0IEV4cGxvcmVyJwpGUFNfQlJPV1NFUl9VU0VSX1BST0ZJTEVfU1RSSU5HID0gJ0RlZmF1bHQnCkZQX05PX0hPU1RfQ0hFQ0sgPSAnTk8nCkdBVEVXQVlfSU5URVJGQUNFID0gJ0NHSS8xLjEnCkhPTUVEUklWRSA9ICdDOicKSE9NRVBBVEggPSAnXFxVc2Vyc1xcZmFyaGFfMDAwJwpIVFRQX0FDQ0VQVCA9ICdhcHBsaWNhdGlvbi9qc29uJwpIVFRQX0FDQ0VQVF9FTkNPRElORyA9ICdnemlwLCBkZWZsYXRlLCBicicKSFRUUF9BQ0NFUFRfTEFOR1VBR0UgPSAnaWQtSUQsaWQ7cT0wLjgsZW4tVVM7cT0wLjYsZW47cT0wLjQnCkhUVFBfQ09OTkVDVElPTiA9ICdrZWVwLWFsaXZlJwpIVFRQX0NPT0tJRSA9ICdzZXNzaW9uaWQ9Ymx0ODc3ZzVmam11Y3h5M2RkNXV4Y2l6YXZiOW9wb3Y7IGNzcmZ0b2tlbj0xRUVQMlN3S3QxSzlRYlduRlBTeVdQSWlidE83TUFhVnFLTEVlb29GZ1lWeWRqWVBvZ24wT3dwMjlvVVc2QTZLJwpIVFRQX0hPU1QgPSAnMTI3LjAuMC4xOjgwMDAnCkhUVFBfT1JJR0lOID0gJ2h0dHA6Ly8xMjcuMC4wLjE6ODAwMCcKSFRUUF9SRUZFUkVSID0gJ2h0dHA6Ly8xMjcuMC4wLjE6ODAwMC9hcGknCkhUVFBfVVNFUl9BR0VOVCA9ICdNb3ppbGxhLzUuMCAoV2luZG93cyBOVCAxMC4wOyBXT1c2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzU2LjAuMjkyNC44NyBTYWZhcmkvNTM3LjM2JwpIVFRQX1hfQ1NSRlRPS0VOID0gJ2pxOTFCdUY1ZTVSN1NqTUZSYzJUTmZ2V1U4bERPNnd5SXdnUU4weDAxMjJ3ZnJPN0FEeGxGV2NHUzNyczg2c24nCkxPQ0FMQVBQREFUQSA9ICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWwnCkxPR09OU0VSVkVSID0gJ1xcXFxGQVJIQU4nCk5VTUJFUl9PRl9QUk9DRVNTT1JTID0gJzInCk9ORURSSVZFID0gJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxPbmVEcml2ZScKT1MgPSAnV2luZG93c19OVCcKUEFUSCA9ICdDOlxcUHJvZ3JhbURhdGFcXE9yYWNsZVxcSmF2YVxcamF2YXBhdGg7QzpcXFByb2dyYW0gRmlsZXNcXEhhc2tlbGxcXGJpbjtDOlxcUHJvZ3JhbSBGaWxlc1xcSGFza2VsbCBQbGF0Zm9ybVxcNy4xMC4zXFxsaWJcXGV4dHJhbGlic1xcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxIYXNrZWxsIFBsYXRmb3JtXFw3LjEwLjNcXGJpbjtDOlxcV0lORE9XU1xcc3lzdGVtMzI7QzpcXFdJTkRPV1M7QzpcXFdJTkRPV1NcXFN5c3RlbTMyXFxXYmVtO0M6XFxXSU5ET1dTXFxTeXN0ZW0zMlxcV2luZG93c1Bvd2VyU2hlbGxcXHYxLjBcXDtDOlxcUHJvZ3JhbSBGaWxlc1xcSGFza2VsbCBQbGF0Zm9ybVxcNy4xMC4zXFxtaW5nd1xcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxKYXZhXFxqZGsxLjguMF83N1xcYmluO0M6XFxjeWd3aW42NFxcYmluOyVsb2NhbGFwcGRhdGElXFxNaWNyb3NvZnRcXFdpbmRvd3NBcHBzO0Q6XFxYQU1QUFxccGhwO0M6XFxQcm9ncmFtIEZpbGVzXFxHaXRcXGNtZDtDOlxceGFtcHBcXHBocDtDOlxcUHJvZ3JhbURhdGFcXENvbXBvc2VyU2V0dXBcXGJpbjtDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcbm9kZWpzXFw7QzpcXFByb2dyYW0gRmlsZXNcXFBvc3RncmVTUUxcXDkuNlxcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxNQVRMQUJcXFIyMDE3YVxcYmluO0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXFNjcmlwdHNcXDtDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyXFw7QzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmdcXGNhYmFsXFxiaW47RDpcXFhBTVBQXFxwaHA7QzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmdcXENvbXBvc2VyXFx2ZW5kb3JcXGJpbjtDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXE1pY3Jvc29mdFxcV2luZG93c0FwcHM7QzpcXHB5dGhvbi0zLjYuMCcKUEFUSEVYVCA9ICcuQ09NOy5FWEU7LkJBVDsuQ01EOy5WQlM7LlZCRTsuSlM7LkpTRTsuV1NGOy5XU0g7Lk1TQycKUEFUSF9JTkZPID0gJy9hcGkvc3R1ZGVudHMvMi9ib29rbWFya2VkLXZhY2FuY2llcy8nClBST0NFU1NPUl9BUkNISVRFQ1RVUkUgPSAneDg2JwpQUk9DRVNTT1JfQVJDSElURVc2NDMyID0gJ0FNRDY0JwpQUk9DRVNTT1JfSURFTlRJRklFUiA9ICdJbnRlbDY0IEZhbWlseSA2IE1vZGVsIDU4IFN0ZXBwaW5nIDksIEdlbnVpbmVJbnRlbCcKUFJPQ0VTU09SX0xFVkVMID0gJzYnClBST0NFU1NPUl9SRVZJU0lPTiA9ICczYTA5JwpQUk9HUkFNREFUQSA9ICdDOlxcUHJvZ3JhbURhdGEnClBST0dSQU1GSUxFUyA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KScKUFJPR1JBTUZJTEVTKFg4NikgPSAnQzpcXFByb2dyYW0gRmlsZXMgKHg4NiknClBST0dSQU1XNjQzMiA9ICdDOlxcUHJvZ3JhbSBGaWxlcycKUFJPTVBUID0gJyRQJEcnClBTTU9EVUxFUEFUSCA9ICdDOlxcV0lORE9XU1xcc3lzdGVtMzJcXFdpbmRvd3NQb3dlclNoZWxsXFx2MS4wXFxNb2R1bGVzXFwnClBVQkxJQyA9ICdDOlxcVXNlcnNcXFB1YmxpYycKUVVFUllfU1RSSU5HID0gJycKUkVNT1RFX0FERFIgPSAnMTI3LjAuMC4xJwpSRU1PVEVfSE9TVCA9ICcnClJFUVVFU1RfTUVUSE9EID0gJ1BPU1QnClJVTl9NQUlOID0gJ3RydWUnClNDUklQVF9OQU1FID0gJycKU0VSVkVSX05BTUUgPSAnRmFyaGFuJwpTRVJWRVJfUE9SVCA9ICc4MDAwJwpTRVJWRVJfUFJPVE9DT0wgPSAnSFRUUC8xLjEnClNFUlZFUl9TT0ZUV0FSRSA9ICdXU0dJU2VydmVyLzAuMicKU0VTU0lPTk5BTUUgPSAnQ29uc29sZScKU1lTVEVNRFJJVkUgPSAnQzonClNZU1RFTVJPT1QgPSAnQzpcXFdJTkRPV1MnClRFTVAgPSAnQzpcXFVzZXJzXFxGQVJIQV9+MVxcQXBwRGF0YVxcTG9jYWxcXFRlbXAnClRNUCA9ICdDOlxcVXNlcnNcXEZBUkhBX34xXFxBcHBEYXRhXFxMb2NhbFxcVGVtcCcKVVNFUkRPTUFJTiA9ICdGYXJoYW4nClVTRVJET01BSU5fUk9BTUlOR1BST0ZJTEUgPSAnRmFyaGFuJwpVU0VSTkFNRSA9ICdGYXJoYW4gRmFyYXNkYWsnClVTRVJQUk9GSUxFID0gJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwJwpWQk9YX01TSV9JTlNUQUxMX1BBVEggPSAnQzpcXFByb2dyYW0gRmlsZXNcXE9yYWNsZVxcVmlydHVhbEJveFxcJwpXSU5ESVIgPSAnQzpcXFdJTkRPV1MnCndzZ2kuZXJyb3JzID0gPF9pby5UZXh0SU9XcmFwcGVyIG5hbWU9JzxzdGRlcnI+JyBtb2RlPSd3JyBlbmNvZGluZz0ndXRmLTgnPgp3c2dpLmZpbGVfd3JhcHBlciA9ICcnCndzZ2kuaW5wdXQgPSA8X2lvLkJ1ZmZlcmVkUmVhZGVyIG5hbWU9NjY4Pgp3c2dpLm11bHRpcHJvY2VzcyA9IEZhbHNlCndzZ2kubXVsdGl0aHJlYWQgPSBUcnVlCndzZ2kucnVuX29uY2UgPSBGYWxzZQp3c2dpLnVybF9zY2hlbWUgPSAnaHR0cCcKd3NnaS52ZXJzaW9uID0gCgpTZXR0aW5nczoKVXNpbmcgc2V0dGluZ3MgbW9kdWxlIGthcGUuc2V0dGluZ3MKQUJTT0xVVEVfVVJMX09WRVJSSURFUyA9IHt9CkFETUlOUyA9IFtdCkFMTE9XRURfSE9TVFMgPSBbJ2JvdC5yZWNydWl0LmlkJywgJzEwNC4yMzYuNzYuMTYxJywgJ2xvY2FsaG9zdCcsICcxMjcuMC4wLjEnXQpBUFBFTkRfU0xBU0ggPSBUcnVlCkFVVEhFTlRJQ0FUSU9OX0JBQ0tFTkRTID0gWydkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCddCkFVVEhfUEFTU1dPUkRfVkFMSURBVE9SUyA9ICcqKioqKioqKioqKioqKioqKioqKicKQVVUSF9VU0VSX01PREVMID0gJ2F1dGguVXNlcicKQkFTRV9ESVIgPSAnRDpcXFBQTEEnCkNBQ0hFUyA9IHsnZGVmYXVsdCc6IHsnQkFDS0VORCc6ICdkamFuZ28uY29yZS5jYWNoZS5iYWNrZW5kcy5sb2NtZW0uTG9jTWVtQ2FjaGUnfX0KQ0FDSEVfTUlERExFV0FSRV9BTElBUyA9ICdkZWZhdWx0JwpDQUNIRV9NSURETEVXQVJFX0tFWV9QUkVGSVggPSAnKioqKioqKioqKioqKioqKioqKionCkNBQ0hFX01JRERMRVdBUkVfU0VDT05EUyA9IDYwMApDU1JGX0NPT0tJRV9BR0UgPSAzMTQ0OTYwMApDU1JGX0NPT0tJRV9ET01BSU4gPSBOb25lCkNTUkZfQ09PS0lFX0hUVFBPTkxZID0gRmFsc2UKQ1NSRl9DT09LSUVfTkFNRSA9ICdjc3JmdG9rZW4nCkNTUkZfQ09PS0lFX1BBVEggPSAnLycKQ1NSRl9DT09LSUVfU0VDVVJFID0gRmFsc2UKQ1NSRl9GQUlMVVJFX1ZJRVcgPSAnZGphbmdvLnZpZXdzLmNzcmYuY3NyZl9mYWlsdXJlJwpDU1JGX0hFQURFUl9OQU1FID0gJ0hUVFBfWF9DU1JGVE9LRU4nCkNTUkZfVFJVU1RFRF9PUklHSU5TID0gW10KREFUQUJBU0VTID0geydkZWZhdWx0JzogeydFTkdJTkUnOiAnZGphbmdvLmRiLmJhY2tlbmRzLnBvc3RncmVzcWxfcHN5Y29wZzInLCAnTkFNRSc6ICdrYXBlJywgJ1VTRVInOiAna2FwZScsICdQQVNTV09SRCc6ICcqKioqKioqKioqKioqKioqKioqKicsICdIT1NUJzogJ2xvY2FsaG9zdCcsICdQT1JUJzogJycsICdBVE9NSUNfUkVRVUVTVFMnOiBGYWxzZSwgJ0FVVE9DT01NSVQnOiBUcnVlLCAnQ09OTl9NQVhfQUdFJzogMCwgJ09QVElPTlMnOiB7fSwgJ1RJTUVfWk9ORSc6IE5vbmUsICdURVNUJzogeydDSEFSU0VUJzogTm9uZSwgJ0NPTExBVElPTic6IE5vbmUsICdOQU1FJzogTm9uZSwgJ01JUlJPUic6IE5vbmV9fX0KREFUQUJBU0VfUk9VVEVSUyA9IFtdCkRBVEFfVVBMT0FEX01BWF9NRU1PUllfU0laRSA9IDI2MjE0NDAKREFUQV9VUExPQURfTUFYX05VTUJFUl9GSUVMRFMgPSAxMDAwCkRBVEVUSU1FX0ZPUk1BVCA9ICdOIGosIFksIFAnCkRBVEVUSU1FX0lOUFVUX0ZPUk1BVFMgPSBbJyVZLSVtLSVkICVIOiVNOiVTJywgJyVZLSVtLSVkICVIOiVNOiVTLiVmJywgJyVZLSVtLSVkICVIOiVNJywgJyVZLSVtLSVkJywgJyVtLyVkLyVZICVIOiVNOiVTJywgJyVtLyVkLyVZICVIOiVNOiVTLiVmJywgJyVtLyVkLyVZICVIOiVNJywgJyVtLyVkLyVZJywgJyVtLyVkLyV5ICVIOiVNOiVTJywgJyVtLyVkLyV5ICVIOiVNOiVTLiVmJywgJyVtLyVkLyV5ICVIOiVNJywgJyVtLyVkLyV5J10KREFURV9GT1JNQVQgPSAnTiBqLCBZJwpEQVRFX0lOUFVUX0ZPUk1BVFMgPSBbJyVZLSVtLSVkJywgJyVtLyVkLyVZJywgJyVtLyVkLyV5JywgJyViICVkICVZJywgJyViICVkLCAlWScsICclZCAlYiAlWScsICclZCAlYiwgJVknLCAnJUIgJWQgJVknLCAnJUIgJWQsICVZJywgJyVkICVCICVZJywgJyVkICVCLCAlWSddCkRFQlVHID0gVHJ1ZQpERUJVR19QUk9QQUdBVEVfRVhDRVBUSU9OUyA9IEZhbHNlCkRFQ0lNQUxfU0VQQVJBVE9SID0gJy4nCkRFRkFVTFRfQ0hBUlNFVCA9ICd1dGYtOCcKREVGQVVMVF9DT05URU5UX1RZUEUgPSAndGV4dC9odG1sJwpERUZBVUxUX0VYQ0VQVElPTl9SRVBPUlRFUl9GSUxURVIgPSAnZGphbmdvLnZpZXdzLmRlYnVnLlNhZmVFeGNlcHRpb25SZXBvcnRlckZpbHRlcicKREVGQVVMVF9GSUxFX1NUT1JBR0UgPSAnZGphbmdvLmNvcmUuZmlsZXMuc3RvcmFnZS5GaWxlU3lzdGVtU3RvcmFnZScKREVGQVVMVF9GUk9NX0VNQUlMID0gJ3dlYm1hc3RlckBsb2NhbGhvc3QnCkRFRkFVTFRfSU5ERVhfVEFCTEVTUEFDRSA9ICcnCkRFRkFVTFRfVEFCTEVTUEFDRSA9ICcnCkRJU0FMTE9XRURfVVNFUl9BR0VOVFMgPSBbXQpFTUFJTF9CQUNLRU5EID0gJ2RqYW5nby5jb3JlLm1haWwuYmFja2VuZHMuc210cC5FbWFpbEJhY2tlbmQnCkVNQUlMX0hPU1QgPSAnbG9jYWxob3N0JwpFTUFJTF9IT1NUX1BBU1NXT1JEID0gJyoqKioqKioqKioqKioqKioqKioqJwpFTUFJTF9IT1NUX1VTRVIgPSAnJwpFTUFJTF9QT1JUID0gMjUKRU1BSUxfU1NMX0NFUlRGSUxFID0gTm9uZQpFTUFJTF9TU0xfS0VZRklMRSA9ICcqKioqKioqKioqKioqKioqKioqKicKRU1BSUxfU1VCSkVDVF9QUkVGSVggPSAnW0RqYW5nb10gJwpFTUFJTF9USU1FT1VUID0gTm9uZQpFTUFJTF9VU0VfU1NMID0gRmFsc2UKRU1BSUxfVVNFX1RMUyA9IEZhbHNlCkZJTEVfQ0hBUlNFVCA9ICd1dGYtOCcKRklMRV9VUExPQURfRElSRUNUT1JZX1BFUk1JU1NJT05TID0gTm9uZQpGSUxFX1VQTE9BRF9IQU5ETEVSUyA9IFsnZGphbmdvLmNvcmUuZmlsZXMudXBsb2FkaGFuZGxlci5NZW1vcnlGaWxlVXBsb2FkSGFuZGxlcicsICdkamFuZ28uY29yZS5maWxlcy51cGxvYWRoYW5kbGVyLlRlbXBvcmFyeUZpbGVVcGxvYWRIYW5kbGVyJ10KRklMRV9VUExPQURfTUFYX01FTU9SWV9TSVpFID0gMjYyMTQ0MApGSUxFX1VQTE9BRF9QRVJNSVNTSU9OUyA9IE5vbmUKRklMRV9VUExPQURfVEVNUF9ESVIgPSBOb25lCkZJUlNUX0RBWV9PRl9XRUVLID0gMApGSVhUVVJFX0RJUlMgPSBbXQpGT1JDRV9TQ1JJUFRfTkFNRSA9IE5vbmUKRk9STUFUX01PRFVMRV9QQVRIID0gTm9uZQpHWklQX0NPTlRFTlRfVFlQRVMgPSAKSUdOT1JBQkxFXzQwNF9VUkxTID0gW10KSU5TVEFMTEVEX0FQUFMgPSBbJ2RqYW5nby5jb250cmliLmFkbWluJywgJ2RqYW5nby5jb250cmliLmF1dGgnLCAnZGphbmdvLmNvbnRyaWIuY29udGVudHR5cGVzJywgJ2RqYW5nby5jb250cmliLnNlc3Npb25zJywgJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzJywgJ2RqYW5nby5jb250cmliLnN0YXRpY2ZpbGVzJywgJ3dlYnBhY2tfbG9hZGVyJywgJ2NvcmUnLCAncmVzdF9mcmFtZXdvcmsnLCAnZGphbmdvX25vc2UnLCAncmVzdF9mcmFtZXdvcmtfc3dhZ2dlcicsICdzaWxrJ10KSU5URVJOQUxfSVBTID0gW10KTEFOR1VBR0VTID0gWygnYWYnLCAnQWZyaWthYW5zJyksICgnYXInLCAnQXJhYmljJyksICgnYXN0JywgJ0FzdHVyaWFuJyksICgnYXonLCAnQXplcmJhaWphbmknKSwgKCdiZycsICdCdWxnYXJpYW4nKSwgKCdiZScsICdCZWxhcnVzaWFuJyksICgnYm4nLCAnQmVuZ2FsaScpLCAoJ2JyJywgJ0JyZXRvbicpLCAoJ2JzJywgJ0Jvc25pYW4nKSwgKCdjYScsICdDYXRhbGFuJyksICgnY3MnLCAnQ3plY2gnKSwgKCdjeScsICdXZWxzaCcpLCAoJ2RhJywgJ0RhbmlzaCcpLCAoJ2RlJywgJ0dlcm1hbicpLCAoJ2RzYicsICdMb3dlciBTb3JiaWFuJyksICgnZWwnLCAnR3JlZWsnKSwgKCdlbicsICdFbmdsaXNoJyksICgnZW4tYXUnLCAnQXVzdHJhbGlhbiBFbmdsaXNoJyksICgnZW4tZ2InLCAnQnJpdGlzaCBFbmdsaXNoJyksICgnZW8nLCAnRXNwZXJhbnRvJyksICgnZXMnLCAnU3BhbmlzaCcpLCAoJ2VzLWFyJywgJ0FyZ2VudGluaWFuIFNwYW5pc2gnKSwgKCdlcy1jbycsICdDb2xvbWJpYW4gU3BhbmlzaCcpLCAoJ2VzLW14JywgJ01leGljYW4gU3BhbmlzaCcpLCAoJ2VzLW5pJywgJ05pY2FyYWd1YW4gU3BhbmlzaCcpLCAoJ2VzLXZlJywgJ1ZlbmV6dWVsYW4gU3BhbmlzaCcpLCAoJ2V0JywgJ0VzdG9uaWFuJyksICgnZXUnLCAnQmFzcXVlJyksICgnZmEnLCAnUGVyc2lhbicpLCAoJ2ZpJywgJ0Zpbm5pc2gnKSwgKCdmcicsICdGcmVuY2gnKSwgKCdmeScsICdGcmlzaWFuJyksICgnZ2EnLCAnSXJpc2gnKSwgKCdnZCcsICdTY290dGlzaCBHYWVsaWMnKSwgKCdnbCcsICdHYWxpY2lhbicpLCAoJ2hlJywgJ0hlYnJldycpLCAoJ2hpJywgJ0hpbmRpJyksICgnaHInLCAnQ3JvYXRpYW4nKSwgKCdoc2InLCAnVXBwZXIgU29yYmlhbicpLCAoJ2h1JywgJ0h1bmdhcmlhbicpLCAoJ2lhJywgJ0ludGVybGluZ3VhJyksICgnaWQnLCAnSW5kb25lc2lhbicpLCAoJ2lvJywgJ0lkbycpLCAoJ2lzJywgJ0ljZWxhbmRpYycpLCAoJ2l0JywgJ0l0YWxpYW4nKSwgKCdqYScsICdKYXBhbmVzZScpLCAoJ2thJywgJ0dlb3JnaWFuJyksICgna2snLCAnS2F6YWtoJyksICgna20nLCAnS2htZXInKSwgKCdrbicsICdLYW5uYWRhJyksICgna28nLCAnS29yZWFuJyksICgnbGInLCAnTHV4ZW1ib3VyZ2lzaCcpLCAoJ2x0JywgJ0xpdGh1YW5pYW4nKSwgKCdsdicsICdMYXR2aWFuJyksICgnbWsnLCAnTWFjZWRvbmlhbicpLCAoJ21sJywgJ01hbGF5YWxhbScpLCAoJ21uJywgJ01vbmdvbGlhbicpLCAoJ21yJywgJ01hcmF0aGknKSwgKCdteScsICdCdXJtZXNlJyksICgnbmInLCAnTm9yd2VnaWFuIEJva23DpWwnKSwgKCduZScsICdOZXBhbGknKSwgKCdubCcsICdEdXRjaCcpLCAoJ25uJywgJ05vcndlZ2lhbiBOeW5vcnNrJyksICgnb3MnLCAnT3NzZXRpYycpLCAoJ3BhJywgJ1B1bmphYmknKSwgKCdwbCcsICdQb2xpc2gnKSwgKCdwdCcsICdQb3J0dWd1ZXNlJyksICgncHQtYnInLCAnQnJhemlsaWFuIFBvcnR1Z3Vlc2UnKSwgKCdybycsICdSb21hbmlhbicpLCAoJ3J1JywgJ1J1c3NpYW4nKSwgKCdzaycsICdTbG92YWsnKSwgKCdzbCcsICdTbG92ZW5pYW4nKSwgKCdzcScsICdBbGJhbmlhbicpLCAoJ3NyJywgJ1NlcmJpYW4nKSwgKCdzci1sYXRuJywgJ1NlcmJpYW4gTGF0aW4nKSwgKCdzdicsICdTd2VkaXNoJyksICgnc3cnLCAnU3dhaGlsaScpLCAoJ3RhJywgJ1RhbWlsJyksICgndGUnLCAnVGVsdWd1JyksICgndGgnLCAnVGhhaScpLCAoJ3RyJywgJ1R1cmtpc2gnKSwgKCd0dCcsICdUYXRhcicpLCAoJ3VkbScsICdVZG11cnQnKSwgKCd1aycsICdVa3JhaW5pYW4nKSwgKCd1cicsICdVcmR1JyksICgndmknLCAnVmlldG5hbWVzZScpLCAoJ3poLWhhbnMnLCAnU2ltcGxpZmllZCBDaGluZXNlJyksICgnemgtaGFudCcsICdUcmFkaXRpb25hbCBDaGluZXNlJyldCkxBTkdVQUdFU19CSURJID0gWydoZScsICdhcicsICdmYScsICd1ciddCkxBTkdVQUdFX0NPREUgPSAnZW4tdXMnCkxBTkdVQUdFX0NPT0tJRV9BR0UgPSBOb25lCkxBTkdVQUdFX0NPT0tJRV9ET01BSU4gPSBOb25lCkxBTkdVQUdFX0NPT0tJRV9OQU1FID0gJ2RqYW5nb19sYW5ndWFnZScKTEFOR1VBR0VfQ09PS0lFX1BBVEggPSAnLycKTE9DQUxFX1BBVEhTID0gW10KTE9HR0lORyA9IHt9CkxPR0dJTkdfQ09ORklHID0gJ2xvZ2dpbmcuY29uZmlnLmRpY3RDb25maWcnCkxPR0lOX1JFRElSRUNUX1VSTCA9ICcvYWNjb3VudHMvcHJvZmlsZS8nCkxPR0lOX1VSTCA9ICcvYWNjb3VudHMvbG9naW4vJwpMT0dPVVRfUkVESVJFQ1RfVVJMID0gTm9uZQpNQU5BR0VSUyA9IFtdCk1FRElBX1JPT1QgPSAnL2hvbWUvZmlsZXMnCk1FRElBX1VSTCA9ICcvZmlsZXMvJwpNRVNTQUdFX1NUT1JBR0UgPSAnZGphbmdvLmNvbnRyaWIubWVzc2FnZXMuc3RvcmFnZS5mYWxsYmFjay5GYWxsYmFja1N0b3JhZ2UnCk1JRERMRVdBUkUgPSBbJ2RqYW5nby5taWRkbGV3YXJlLnNlY3VyaXR5LlNlY3VyaXR5TWlkZGxld2FyZScsICdkamFuZ28uY29udHJpYi5zZXNzaW9ucy5taWRkbGV3YXJlLlNlc3Npb25NaWRkbGV3YXJlJywgJ2RqYW5nby5taWRkbGV3YXJlLmNvbW1vbi5Db21tb25NaWRkbGV3YXJlJywgJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJywgJ2RqYW5nby5jb250cmliLmF1dGgubWlkZGxld2FyZS5BdXRoZW50aWNhdGlvbk1pZGRsZXdhcmUnLCAnZGphbmdvLmNvbnRyaWIubWVzc2FnZXMubWlkZGxld2FyZS5NZXNzYWdlTWlkZGxld2FyZScsICdkamFuZ28ubWlkZGxld2FyZS5jbGlja2phY2tpbmcuWEZyYW1lT3B0aW9uc01pZGRsZXdhcmUnLCAnc2lsay5taWRkbGV3YXJlLlNpbGt5TWlkZGxld2FyZSddCk1JRERMRVdBUkVfQ0xBU1NFUyA9IFsnZGphbmdvLm1pZGRsZXdhcmUuY29tbW9uLkNvbW1vbk1pZGRsZXdhcmUnLCAnZGphbmdvLm1pZGRsZXdhcmUuY3NyZi5Dc3JmVmlld01pZGRsZXdhcmUnXQpNSUdSQVRJT05fTU9EVUxFUyA9IHt9Ck1PTlRIX0RBWV9GT1JNQVQgPSAnRiBqJwpOT1NFX0FSR1MgPSBbJy0td2l0aC1jb3ZlcmFnZScsICctLWNvdmVyLXBhY2thZ2U9Y29yZS52aWV3cycsICctLWNvdmVyLWh0bWwtZGlyPXRlc3QvYmFja2VuZCcsICctLWNvdmVyLWh0bWwnXQpOVU1CRVJfR1JPVVBJTkcgPSAwClBBU1NXT1JEX0hBU0hFUlMgPSAnKioqKioqKioqKioqKioqKioqKionClBBU1NXT1JEX1JFU0VUX1RJTUVPVVRfREFZUyA9ICcqKioqKioqKioqKioqKioqKioqKicKUFJFUEVORF9XV1cgPSBGYWxzZQpSRVNUX0ZSQU1FV09SSyA9IHsnREVGQVVMVF9QRVJNSVNTSU9OX0NMQVNTRVMnOiBbJ3Jlc3RfZnJhbWV3b3JrLnBlcm1pc3Npb25zLkRqYW5nb01vZGVsUGVybWlzc2lvbnNPckFub25SZWFkT25seSddfQpST09UX1VSTENPTkYgPSAna2FwZS51cmxzJwpSVU5OSU5HX0RFVlNFUlZFUiA9IFRydWUKU0VDUkVUX0tFWSA9ICcqKioqKioqKioqKioqKioqKioqKicKU0VDVVJFX0JST1dTRVJfWFNTX0ZJTFRFUiA9IEZhbHNlClNFQ1VSRV9DT05URU5UX1RZUEVfTk9TTklGRiA9IEZhbHNlClNFQ1VSRV9IU1RTX0lOQ0xVREVfU1VCRE9NQUlOUyA9IEZhbHNlClNFQ1VSRV9IU1RTX1NFQ09ORFMgPSAwClNFQ1VSRV9QUk9YWV9TU0xfSEVBREVSID0gTm9uZQpTRUNVUkVfUkVESVJFQ1RfRVhFTVBUID0gW10KU0VDVVJFX1NTTF9IT1NUID0gTm9uZQpTRUNVUkVfU1NMX1JFRElSRUNUID0gRmFsc2UKU0VSVkVSX0VNQUlMID0gJ3Jvb3RAbG9jYWxob3N0JwpTRVNTSU9OX0NBQ0hFX0FMSUFTID0gJ2RlZmF1bHQnClNFU1NJT05fQ09PS0lFX0FHRSA9IDEyMDk2MDAKU0VTU0lPTl9DT09LSUVfRE9NQUlOID0gTm9uZQpTRVNTSU9OX0NPT0tJRV9IVFRQT05MWSA9IEZhbHNlClNFU1NJT05fQ09PS0lFX05BTUUgPSAnc2Vzc2lvbmlkJwpTRVNTSU9OX0NPT0tJRV9QQVRIID0gJy8nClNFU1NJT05fQ09PS0lFX1NFQ1VSRSA9IEZhbHNlClNFU1NJT05fRU5HSU5FID0gJ2RqYW5nby5jb250cmliLnNlc3Npb25zLmJhY2tlbmRzLmRiJwpTRVNTSU9OX0VYUElSRV9BVF9CUk9XU0VSX0NMT1NFID0gRmFsc2UKU0VTU0lPTl9GSUxFX1BBVEggPSBOb25lClNFU1NJT05fU0FWRV9FVkVSWV9SRVFVRVNUID0gRmFsc2UKU0VTU0lPTl9TRVJJQUxJWkVSID0gJ2RqYW5nby5jb250cmliLnNlc3Npb25zLnNlcmlhbGl6ZXJzLkpTT05TZXJpYWxpemVyJwpTRVRUSU5HU19NT0RVTEUgPSAna2FwZS5zZXR0aW5ncycKU0hPUlRfREFURVRJTUVfRk9STUFUID0gJ20vZC9ZIFAnClNIT1JUX0RBVEVfRk9STUFUID0gJ20vZC9ZJwpTSUdOSU5HX0JBQ0tFTkQgPSAnZGphbmdvLmNvcmUuc2lnbmluZy5UaW1lc3RhbXBTaWduZXInClNJTEVOQ0VEX1NZU1RFTV9DSEVDS1MgPSBbXQpTVEFUSUNGSUxFU19ESVJTID0gJ0Q6XFxQUExBXFxhc3NldHMnClNUQVRJQ0ZJTEVTX0ZJTkRFUlMgPSBbJ2RqYW5nby5jb250cmliLnN0YXRpY2ZpbGVzLmZpbmRlcnMuRmlsZVN5c3RlbUZpbmRlcicsICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcy5maW5kZXJzLkFwcERpcmVjdG9yaWVzRmluZGVyJ10KU1RBVElDRklMRVNfU1RPUkFHRSA9ICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcy5zdG9yYWdlLlN0YXRpY0ZpbGVzU3RvcmFnZScKU1RBVElDX1JPT1QgPSAnL2hvbWUvYXNzZXRzJwpTVEFUSUNfVVJMID0gJy9hc3NldHMvJwpURU1QTEFURVMgPSBbeydCQUNLRU5EJzogJ2RqYW5nby50ZW1wbGF0ZS5iYWNrZW5kcy5kamFuZ28uRGphbmdvVGVtcGxhdGVzJywgJ0RJUlMnOiBbXSwgJ0FQUF9ESVJTJzogVHJ1ZSwgJ09QVElPTlMnOiB7J2NvbnRleHRfcHJvY2Vzc29ycyc6IFsnZGphbmdvLnRlbXBsYXRlLmNvbnRleHRfcHJvY2Vzc29ycy5kZWJ1ZycsICdkamFuZ28udGVtcGxhdGUuY29udGV4dF9wcm9jZXNzb3JzLnJlcXVlc3QnLCAnZGphbmdvLmNvbnRyaWIuYXV0aC5jb250ZXh0X3Byb2Nlc3NvcnMuYXV0aCcsICdkamFuZ28uY29udHJpYi5tZXNzYWdlcy5jb250ZXh0X3Byb2Nlc3NvcnMubWVzc2FnZXMnXX19XQpURVNUX05PTl9TRVJJQUxJWkVEX0FQUFMgPSBbXQpURVNUX1JVTk5FUiA9ICdkamFuZ29fbm9zZS5Ob3NlVGVzdFN1aXRlUnVubmVyJwpUSE9VU0FORF9TRVBBUkFUT1IgPSAnLCcKVElNRV9GT1JNQVQgPSAnUCcKVElNRV9JTlBVVF9GT1JNQVRTID0gWyclSDolTTolUycsICclSDolTTolUy4lZicsICclSDolTSddClRJTUVfWk9ORSA9ICdVVEMnClVTRV9FVEFHUyA9IEZhbHNlClVTRV9JMThOID0gVHJ1ZQpVU0VfTDEwTiA9IFRydWUKVVNFX1RIT1VTQU5EX1NFUEFSQVRPUiA9IEZhbHNlClVTRV9UWiA9IFRydWUKVVNFX1hfRk9SV0FSREVEX0hPU1QgPSBGYWxzZQpVU0VfWF9GT1JXQVJERURfUE9SVCA9IEZhbHNlCldFQlBBQ0tfTE9BREVSID0geydERUZBVUxUJzogeydCVU5ETEVfRElSX05BTUUnOiAnYnVuZGxlcy8nLCAnU1RBVFNfRklMRSc6ICdEOlxcUFBMQVxcd2VicGFjay1zdGF0cy5qc29uJ319CldTR0lfQVBQTElDQVRJT04gPSAna2FwZS53c2dpLmFwcGxpY2F0aW9uJwpYX0ZSQU1FX09QVElPTlMgPSAnU0FNRU9SSUdJTicKWUVBUl9NT05USF9GT1JNQVQgPSAnRiBZJwoKCllvdSdyZSBzZWVpbmcgdGhpcyBlcnJvciBiZWNhdXNlIHlvdSBoYXZlIERFQlVHID0gVHJ1ZSBpbiB5b3VyCkRqYW5nbyBzZXR0aW5ncyBmaWxlLiBDaGFuZ2UgdGhhdCB0byBGYWxzZSwgYW5kIERqYW5nbyB3aWxsCmRpc3BsYXkgYSBzdGFuZGFyZCBwYWdlIGdlbmVyYXRlZCBieSB0aGUgaGFuZGxlciBmb3IgdGhpcyBzdGF0dXMgY29kZS4KCg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/plain\"}" - } -}, -{ - "model": "silk.response", - "pk": "f4b8cb7a-890a-4483-befe-0ba313e2a4ad", - "fields": { - "request": "8ac4ebc3-867b-4dca-ab87-80c456062911", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "f4f40b5f-929a-4beb-b5ec-9bf0ad1ea6ed", - "fields": { - "request": "3e276fe6-51d2-4c26-896e-1f89b00bf277", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "f6a6e136-0ad9-46a7-a5c5-6a865b7612f7", - "fields": { - "request": "6bb06278-a0dc-4896-abf0-596a020347e6", - "status_code": 500, - "raw_body": "QXR0cmlidXRlRXJyb3IgYXQgL2FwaS9zdHVkZW50cy80L2Jvb2ttYXJrZWQtdmFjYW5jaWVzLwonZGljdCcgb2JqZWN0IGhhcyBubyBhdHRyaWJ1dGUgJ2lkJwoKUmVxdWVzdCBNZXRob2Q6IFBPU1QKUmVxdWVzdCBVUkw6IGh0dHA6Ly8xMjcuMC4wLjE6ODAwMC9hcGkvc3R1ZGVudHMvNC9ib29rbWFya2VkLXZhY2FuY2llcy8KRGphbmdvIFZlcnNpb246IDEuMTAuNQpQeXRob24gRXhlY3V0YWJsZTogQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXHB5dGhvbi5leGUKUHl0aG9uIFZlcnNpb246IDMuNi4wClB5dGhvbiBQYXRoOiBbJ0Q6XFxQUExBJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXHB5dGhvbjM2LnppcCcsICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyXFxETExzJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXGxpYicsICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXGxpYlxcc2l0ZS1wYWNrYWdlcyddClNlcnZlciB0aW1lOiBNb24sIDI3IE1hciAyMDE3IDE1OjQ2OjM0ICswMDAwCkluc3RhbGxlZCBBcHBsaWNhdGlvbnM6ClsnZGphbmdvLmNvbnRyaWIuYWRtaW4nLAogJ2RqYW5nby5jb250cmliLmF1dGgnLAogJ2RqYW5nby5jb250cmliLmNvbnRlbnR0eXBlcycsCiAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMnLAogJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzJywKICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcycsCiAnd2VicGFja19sb2FkZXInLAogJ2NvcmUnLAogJ3Jlc3RfZnJhbWV3b3JrJywKICdkamFuZ29fbm9zZScsCiAncmVzdF9mcmFtZXdvcmtfc3dhZ2dlcicsCiAnc2lsayddCkluc3RhbGxlZCBNaWRkbGV3YXJlOgpbJ2RqYW5nby5taWRkbGV3YXJlLnNlY3VyaXR5LlNlY3VyaXR5TWlkZGxld2FyZScsCiAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMubWlkZGxld2FyZS5TZXNzaW9uTWlkZGxld2FyZScsCiAnZGphbmdvLm1pZGRsZXdhcmUuY29tbW9uLkNvbW1vbk1pZGRsZXdhcmUnLAogJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5hdXRoLm1pZGRsZXdhcmUuQXV0aGVudGljYXRpb25NaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5tZXNzYWdlcy5taWRkbGV3YXJlLk1lc3NhZ2VNaWRkbGV3YXJlJywKICdkamFuZ28ubWlkZGxld2FyZS5jbGlja2phY2tpbmcuWEZyYW1lT3B0aW9uc01pZGRsZXdhcmUnLAogJ3NpbGsubWlkZGxld2FyZS5TaWxreU1pZGRsZXdhcmUnXQoKClRyYWNlYmFjazogIAoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXGRqYW5nb1xjb3JlXGhhbmRsZXJzXGV4Y2VwdGlvbi5weSIgaW4gaW5uZXIKICAzOS4gICAgICAgICAgICAgcmVzcG9uc2UgPSBnZXRfcmVzcG9uc2UocmVxdWVzdCkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cY29yZVxoYW5kbGVyc1xiYXNlLnB5IiBpbiBfZ2V0X3Jlc3BvbnNlCiAgMTg3LiAgICAgICAgICAgICAgICAgcmVzcG9uc2UgPSBzZWxmLnByb2Nlc3NfZXhjZXB0aW9uX2J5X21pZGRsZXdhcmUoZSwgcmVxdWVzdCkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cY29yZVxoYW5kbGVyc1xiYXNlLnB5IiBpbiBfZ2V0X3Jlc3BvbnNlCiAgMTg1LiAgICAgICAgICAgICAgICAgcmVzcG9uc2UgPSB3cmFwcGVkX2NhbGxiYWNrKHJlcXVlc3QsICpjYWxsYmFja19hcmdzLCAqKmNhbGxiYWNrX2t3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cdmlld3NcZGVjb3JhdG9yc1xjc3JmLnB5IiBpbiB3cmFwcGVkX3ZpZXcKICA1OC4gICAgICAgICByZXR1cm4gdmlld19mdW5jKCphcmdzLCAqKmt3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3c2V0cy5weSIgaW4gdmlldwogIDgzLiAgICAgICAgICAgICByZXR1cm4gc2VsZi5kaXNwYXRjaChyZXF1ZXN0LCAqYXJncywgKiprd2FyZ3MpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNccmVzdF9mcmFtZXdvcmtcdmlld3MucHkiIGluIGRpc3BhdGNoCiAgNDgzLiAgICAgICAgICAgICByZXNwb25zZSA9IHNlbGYuaGFuZGxlX2V4Y2VwdGlvbihleGMpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNccmVzdF9mcmFtZXdvcmtcdmlld3MucHkiIGluIGhhbmRsZV9leGNlcHRpb24KICA0NDMuICAgICAgICAgICAgIHNlbGYucmFpc2VfdW5jYXVnaHRfZXhjZXB0aW9uKGV4YykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3cy5weSIgaW4gZGlzcGF0Y2gKICA0ODAuICAgICAgICAgICAgIHJlc3BvbnNlID0gaGFuZGxlcihyZXF1ZXN0LCAqYXJncywgKiprd2FyZ3MpCgpGaWxlICJEOlxQUExBXGNvcmVcdmlld3NcYWNjb3VudHMucHkiIGluIGJvb2ttYXJrX3ZhY2FuY2llcwogIDMwLiAgICAgICAgIHZhY2FuY3kgPSBnZXRfb2JqZWN0X29yXzQwNChWYWNhbmN5Lm9iamVjdHMuYWxsKCksIHBrPXJlcXVlc3QuZGF0YS5pZCkKCkV4Y2VwdGlvbiBUeXBlOiBBdHRyaWJ1dGVFcnJvciBhdCAvYXBpL3N0dWRlbnRzLzQvYm9va21hcmtlZC12YWNhbmNpZXMvCkV4Y2VwdGlvbiBWYWx1ZTogJ2RpY3QnIG9iamVjdCBoYXMgbm8gYXR0cmlidXRlICdpZCcKUmVxdWVzdCBpbmZvcm1hdGlvbjoKVVNFUjoga2FwZQoKR0VUOiBObyBHRVQgZGF0YQoKUE9TVDogTm8gUE9TVCBkYXRhCgpGSUxFUzogTm8gRklMRVMgZGF0YQoKQ09PS0lFUzoKc2Vzc2lvbmlkID0gJ2JsdDg3N2c1ZmptdWN4eTNkZDV1eGNpemF2YjlvcG92Jwpjc3JmdG9rZW4gPSAnMUVFUDJTd0t0MUs5UWJXbkZQU3lXUElpYnRPN01BYVZxS0xFZW9vRmdZVnlkallQb2duME93cDI5b1VXNkE2SycKCk1FVEE6CkFMTFVTRVJTUFJPRklMRSA9ICdDOlxcUHJvZ3JhbURhdGEnCkFQUERBVEEgPSAnQzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmcnCkNPTU1PTlBST0dSQU1GSUxFUyA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcQ29tbW9uIEZpbGVzJwpDT01NT05QUk9HUkFNRklMRVMoWDg2KSA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcQ29tbW9uIEZpbGVzJwpDT01NT05QUk9HUkFNVzY0MzIgPSAnQzpcXFByb2dyYW0gRmlsZXNcXENvbW1vbiBGaWxlcycKQ09NUFVURVJOQU1FID0gJ0ZBUkhBTicKQ09NU1BFQyA9ICdDOlxcV0lORE9XU1xcc3lzdGVtMzJcXGNtZC5leGUnCkNPTlRFTlRfTEVOR1RIID0gJzEyOCcKQ09OVEVOVF9UWVBFID0gJ2FwcGxpY2F0aW9uL2pzb24nCkNTUkZfQ09PS0lFID0gJzFFRVAyU3dLdDFLOVFiV25GUFN5V1BJaWJ0TzdNQWFWcUtMRWVvb0ZnWVZ5ZGpZUG9nbjBPd3AyOW9VVzZBNksnCkRKQU5HT19TRVRUSU5HU19NT0RVTEUgPSAna2FwZS5zZXR0aW5ncycKRlBTX0JST1dTRVJfQVBQX1BST0ZJTEVfU1RSSU5HID0gJ0ludGVybmV0IEV4cGxvcmVyJwpGUFNfQlJPV1NFUl9VU0VSX1BST0ZJTEVfU1RSSU5HID0gJ0RlZmF1bHQnCkZQX05PX0hPU1RfQ0hFQ0sgPSAnTk8nCkdBVEVXQVlfSU5URVJGQUNFID0gJ0NHSS8xLjEnCkhPTUVEUklWRSA9ICdDOicKSE9NRVBBVEggPSAnXFxVc2Vyc1xcZmFyaGFfMDAwJwpIVFRQX0FDQ0VQVCA9ICdhcHBsaWNhdGlvbi9qc29uJwpIVFRQX0FDQ0VQVF9FTkNPRElORyA9ICdnemlwLCBkZWZsYXRlLCBicicKSFRUUF9BQ0NFUFRfTEFOR1VBR0UgPSAnaWQtSUQsaWQ7cT0wLjgsZW4tVVM7cT0wLjYsZW47cT0wLjQnCkhUVFBfQ09OTkVDVElPTiA9ICdrZWVwLWFsaXZlJwpIVFRQX0NPT0tJRSA9ICdzZXNzaW9uaWQ9Ymx0ODc3ZzVmam11Y3h5M2RkNXV4Y2l6YXZiOW9wb3Y7IGNzcmZ0b2tlbj0xRUVQMlN3S3QxSzlRYlduRlBTeVdQSWlidE83TUFhVnFLTEVlb29GZ1lWeWRqWVBvZ24wT3dwMjlvVVc2QTZLJwpIVFRQX0hPU1QgPSAnMTI3LjAuMC4xOjgwMDAnCkhUVFBfT1JJR0lOID0gJ2h0dHA6Ly8xMjcuMC4wLjE6ODAwMCcKSFRUUF9SRUZFUkVSID0gJ2h0dHA6Ly8xMjcuMC4wLjE6ODAwMC9hcGknCkhUVFBfVVNFUl9BR0VOVCA9ICdNb3ppbGxhLzUuMCAoV2luZG93cyBOVCAxMC4wOyBXT1c2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzU2LjAuMjkyNC44NyBTYWZhcmkvNTM3LjM2JwpIVFRQX1hfQ1NSRlRPS0VOID0gJ2pxOTFCdUY1ZTVSN1NqTUZSYzJUTmZ2V1U4bERPNnd5SXdnUU4weDAxMjJ3ZnJPN0FEeGxGV2NHUzNyczg2c24nCkxPQ0FMQVBQREFUQSA9ICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWwnCkxPR09OU0VSVkVSID0gJ1xcXFxGQVJIQU4nCk5VTUJFUl9PRl9QUk9DRVNTT1JTID0gJzInCk9ORURSSVZFID0gJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxPbmVEcml2ZScKT1MgPSAnV2luZG93c19OVCcKUEFUSCA9ICdDOlxcUHJvZ3JhbURhdGFcXE9yYWNsZVxcSmF2YVxcamF2YXBhdGg7QzpcXFByb2dyYW0gRmlsZXNcXEhhc2tlbGxcXGJpbjtDOlxcUHJvZ3JhbSBGaWxlc1xcSGFza2VsbCBQbGF0Zm9ybVxcNy4xMC4zXFxsaWJcXGV4dHJhbGlic1xcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxIYXNrZWxsIFBsYXRmb3JtXFw3LjEwLjNcXGJpbjtDOlxcV0lORE9XU1xcc3lzdGVtMzI7QzpcXFdJTkRPV1M7QzpcXFdJTkRPV1NcXFN5c3RlbTMyXFxXYmVtO0M6XFxXSU5ET1dTXFxTeXN0ZW0zMlxcV2luZG93c1Bvd2VyU2hlbGxcXHYxLjBcXDtDOlxcUHJvZ3JhbSBGaWxlc1xcSGFza2VsbCBQbGF0Zm9ybVxcNy4xMC4zXFxtaW5nd1xcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxKYXZhXFxqZGsxLjguMF83N1xcYmluO0M6XFxjeWd3aW42NFxcYmluOyVsb2NhbGFwcGRhdGElXFxNaWNyb3NvZnRcXFdpbmRvd3NBcHBzO0Q6XFxYQU1QUFxccGhwO0M6XFxQcm9ncmFtIEZpbGVzXFxHaXRcXGNtZDtDOlxceGFtcHBcXHBocDtDOlxcUHJvZ3JhbURhdGFcXENvbXBvc2VyU2V0dXBcXGJpbjtDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcbm9kZWpzXFw7QzpcXFByb2dyYW0gRmlsZXNcXFBvc3RncmVTUUxcXDkuNlxcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxNQVRMQUJcXFIyMDE3YVxcYmluO0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXFNjcmlwdHNcXDtDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyXFw7QzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmdcXGNhYmFsXFxiaW47RDpcXFhBTVBQXFxwaHA7QzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmdcXENvbXBvc2VyXFx2ZW5kb3JcXGJpbjtDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXE1pY3Jvc29mdFxcV2luZG93c0FwcHM7QzpcXHB5dGhvbi0zLjYuMCcKUEFUSEVYVCA9ICcuQ09NOy5FWEU7LkJBVDsuQ01EOy5WQlM7LlZCRTsuSlM7LkpTRTsuV1NGOy5XU0g7Lk1TQycKUEFUSF9JTkZPID0gJy9hcGkvc3R1ZGVudHMvNC9ib29rbWFya2VkLXZhY2FuY2llcy8nClBST0NFU1NPUl9BUkNISVRFQ1RVUkUgPSAneDg2JwpQUk9DRVNTT1JfQVJDSElURVc2NDMyID0gJ0FNRDY0JwpQUk9DRVNTT1JfSURFTlRJRklFUiA9ICdJbnRlbDY0IEZhbWlseSA2IE1vZGVsIDU4IFN0ZXBwaW5nIDksIEdlbnVpbmVJbnRlbCcKUFJPQ0VTU09SX0xFVkVMID0gJzYnClBST0NFU1NPUl9SRVZJU0lPTiA9ICczYTA5JwpQUk9HUkFNREFUQSA9ICdDOlxcUHJvZ3JhbURhdGEnClBST0dSQU1GSUxFUyA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KScKUFJPR1JBTUZJTEVTKFg4NikgPSAnQzpcXFByb2dyYW0gRmlsZXMgKHg4NiknClBST0dSQU1XNjQzMiA9ICdDOlxcUHJvZ3JhbSBGaWxlcycKUFJPTVBUID0gJyRQJEcnClBTTU9EVUxFUEFUSCA9ICdDOlxcV0lORE9XU1xcc3lzdGVtMzJcXFdpbmRvd3NQb3dlclNoZWxsXFx2MS4wXFxNb2R1bGVzXFwnClBVQkxJQyA9ICdDOlxcVXNlcnNcXFB1YmxpYycKUVVFUllfU1RSSU5HID0gJycKUkVNT1RFX0FERFIgPSAnMTI3LjAuMC4xJwpSRU1PVEVfSE9TVCA9ICcnClJFUVVFU1RfTUVUSE9EID0gJ1BPU1QnClJVTl9NQUlOID0gJ3RydWUnClNDUklQVF9OQU1FID0gJycKU0VSVkVSX05BTUUgPSAnRmFyaGFuJwpTRVJWRVJfUE9SVCA9ICc4MDAwJwpTRVJWRVJfUFJPVE9DT0wgPSAnSFRUUC8xLjEnClNFUlZFUl9TT0ZUV0FSRSA9ICdXU0dJU2VydmVyLzAuMicKU0VTU0lPTk5BTUUgPSAnQ29uc29sZScKU1lTVEVNRFJJVkUgPSAnQzonClNZU1RFTVJPT1QgPSAnQzpcXFdJTkRPV1MnClRFTVAgPSAnQzpcXFVzZXJzXFxGQVJIQV9+MVxcQXBwRGF0YVxcTG9jYWxcXFRlbXAnClRNUCA9ICdDOlxcVXNlcnNcXEZBUkhBX34xXFxBcHBEYXRhXFxMb2NhbFxcVGVtcCcKVVNFUkRPTUFJTiA9ICdGYXJoYW4nClVTRVJET01BSU5fUk9BTUlOR1BST0ZJTEUgPSAnRmFyaGFuJwpVU0VSTkFNRSA9ICdGYXJoYW4gRmFyYXNkYWsnClVTRVJQUk9GSUxFID0gJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwJwpWQk9YX01TSV9JTlNUQUxMX1BBVEggPSAnQzpcXFByb2dyYW0gRmlsZXNcXE9yYWNsZVxcVmlydHVhbEJveFxcJwpXSU5ESVIgPSAnQzpcXFdJTkRPV1MnCndzZ2kuZXJyb3JzID0gPF9pby5UZXh0SU9XcmFwcGVyIG5hbWU9JzxzdGRlcnI+JyBtb2RlPSd3JyBlbmNvZGluZz0ndXRmLTgnPgp3c2dpLmZpbGVfd3JhcHBlciA9ICcnCndzZ2kuaW5wdXQgPSA8X2lvLkJ1ZmZlcmVkUmVhZGVyIG5hbWU9NTQwPgp3c2dpLm11bHRpcHJvY2VzcyA9IEZhbHNlCndzZ2kubXVsdGl0aHJlYWQgPSBUcnVlCndzZ2kucnVuX29uY2UgPSBGYWxzZQp3c2dpLnVybF9zY2hlbWUgPSAnaHR0cCcKd3NnaS52ZXJzaW9uID0gCgpTZXR0aW5nczoKVXNpbmcgc2V0dGluZ3MgbW9kdWxlIGthcGUuc2V0dGluZ3MKQUJTT0xVVEVfVVJMX09WRVJSSURFUyA9IHt9CkFETUlOUyA9IFtdCkFMTE9XRURfSE9TVFMgPSBbJ2JvdC5yZWNydWl0LmlkJywgJzEwNC4yMzYuNzYuMTYxJywgJ2xvY2FsaG9zdCcsICcxMjcuMC4wLjEnXQpBUFBFTkRfU0xBU0ggPSBUcnVlCkFVVEhFTlRJQ0FUSU9OX0JBQ0tFTkRTID0gWydkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCddCkFVVEhfUEFTU1dPUkRfVkFMSURBVE9SUyA9ICcqKioqKioqKioqKioqKioqKioqKicKQVVUSF9VU0VSX01PREVMID0gJ2F1dGguVXNlcicKQkFTRV9ESVIgPSAnRDpcXFBQTEEnCkNBQ0hFUyA9IHsnZGVmYXVsdCc6IHsnQkFDS0VORCc6ICdkamFuZ28uY29yZS5jYWNoZS5iYWNrZW5kcy5sb2NtZW0uTG9jTWVtQ2FjaGUnfX0KQ0FDSEVfTUlERExFV0FSRV9BTElBUyA9ICdkZWZhdWx0JwpDQUNIRV9NSURETEVXQVJFX0tFWV9QUkVGSVggPSAnKioqKioqKioqKioqKioqKioqKionCkNBQ0hFX01JRERMRVdBUkVfU0VDT05EUyA9IDYwMApDU1JGX0NPT0tJRV9BR0UgPSAzMTQ0OTYwMApDU1JGX0NPT0tJRV9ET01BSU4gPSBOb25lCkNTUkZfQ09PS0lFX0hUVFBPTkxZID0gRmFsc2UKQ1NSRl9DT09LSUVfTkFNRSA9ICdjc3JmdG9rZW4nCkNTUkZfQ09PS0lFX1BBVEggPSAnLycKQ1NSRl9DT09LSUVfU0VDVVJFID0gRmFsc2UKQ1NSRl9GQUlMVVJFX1ZJRVcgPSAnZGphbmdvLnZpZXdzLmNzcmYuY3NyZl9mYWlsdXJlJwpDU1JGX0hFQURFUl9OQU1FID0gJ0hUVFBfWF9DU1JGVE9LRU4nCkNTUkZfVFJVU1RFRF9PUklHSU5TID0gW10KREFUQUJBU0VTID0geydkZWZhdWx0JzogeydFTkdJTkUnOiAnZGphbmdvLmRiLmJhY2tlbmRzLnBvc3RncmVzcWxfcHN5Y29wZzInLCAnTkFNRSc6ICdrYXBlJywgJ1VTRVInOiAna2FwZScsICdQQVNTV09SRCc6ICcqKioqKioqKioqKioqKioqKioqKicsICdIT1NUJzogJ2xvY2FsaG9zdCcsICdQT1JUJzogJycsICdBVE9NSUNfUkVRVUVTVFMnOiBGYWxzZSwgJ0FVVE9DT01NSVQnOiBUcnVlLCAnQ09OTl9NQVhfQUdFJzogMCwgJ09QVElPTlMnOiB7fSwgJ1RJTUVfWk9ORSc6IE5vbmUsICdURVNUJzogeydDSEFSU0VUJzogTm9uZSwgJ0NPTExBVElPTic6IE5vbmUsICdOQU1FJzogTm9uZSwgJ01JUlJPUic6IE5vbmV9fX0KREFUQUJBU0VfUk9VVEVSUyA9IFtdCkRBVEFfVVBMT0FEX01BWF9NRU1PUllfU0laRSA9IDI2MjE0NDAKREFUQV9VUExPQURfTUFYX05VTUJFUl9GSUVMRFMgPSAxMDAwCkRBVEVUSU1FX0ZPUk1BVCA9ICdOIGosIFksIFAnCkRBVEVUSU1FX0lOUFVUX0ZPUk1BVFMgPSBbJyVZLSVtLSVkICVIOiVNOiVTJywgJyVZLSVtLSVkICVIOiVNOiVTLiVmJywgJyVZLSVtLSVkICVIOiVNJywgJyVZLSVtLSVkJywgJyVtLyVkLyVZICVIOiVNOiVTJywgJyVtLyVkLyVZICVIOiVNOiVTLiVmJywgJyVtLyVkLyVZICVIOiVNJywgJyVtLyVkLyVZJywgJyVtLyVkLyV5ICVIOiVNOiVTJywgJyVtLyVkLyV5ICVIOiVNOiVTLiVmJywgJyVtLyVkLyV5ICVIOiVNJywgJyVtLyVkLyV5J10KREFURV9GT1JNQVQgPSAnTiBqLCBZJwpEQVRFX0lOUFVUX0ZPUk1BVFMgPSBbJyVZLSVtLSVkJywgJyVtLyVkLyVZJywgJyVtLyVkLyV5JywgJyViICVkICVZJywgJyViICVkLCAlWScsICclZCAlYiAlWScsICclZCAlYiwgJVknLCAnJUIgJWQgJVknLCAnJUIgJWQsICVZJywgJyVkICVCICVZJywgJyVkICVCLCAlWSddCkRFQlVHID0gVHJ1ZQpERUJVR19QUk9QQUdBVEVfRVhDRVBUSU9OUyA9IEZhbHNlCkRFQ0lNQUxfU0VQQVJBVE9SID0gJy4nCkRFRkFVTFRfQ0hBUlNFVCA9ICd1dGYtOCcKREVGQVVMVF9DT05URU5UX1RZUEUgPSAndGV4dC9odG1sJwpERUZBVUxUX0VYQ0VQVElPTl9SRVBPUlRFUl9GSUxURVIgPSAnZGphbmdvLnZpZXdzLmRlYnVnLlNhZmVFeGNlcHRpb25SZXBvcnRlckZpbHRlcicKREVGQVVMVF9GSUxFX1NUT1JBR0UgPSAnZGphbmdvLmNvcmUuZmlsZXMuc3RvcmFnZS5GaWxlU3lzdGVtU3RvcmFnZScKREVGQVVMVF9GUk9NX0VNQUlMID0gJ3dlYm1hc3RlckBsb2NhbGhvc3QnCkRFRkFVTFRfSU5ERVhfVEFCTEVTUEFDRSA9ICcnCkRFRkFVTFRfVEFCTEVTUEFDRSA9ICcnCkRJU0FMTE9XRURfVVNFUl9BR0VOVFMgPSBbXQpFTUFJTF9CQUNLRU5EID0gJ2RqYW5nby5jb3JlLm1haWwuYmFja2VuZHMuc210cC5FbWFpbEJhY2tlbmQnCkVNQUlMX0hPU1QgPSAnbG9jYWxob3N0JwpFTUFJTF9IT1NUX1BBU1NXT1JEID0gJyoqKioqKioqKioqKioqKioqKioqJwpFTUFJTF9IT1NUX1VTRVIgPSAnJwpFTUFJTF9QT1JUID0gMjUKRU1BSUxfU1NMX0NFUlRGSUxFID0gTm9uZQpFTUFJTF9TU0xfS0VZRklMRSA9ICcqKioqKioqKioqKioqKioqKioqKicKRU1BSUxfU1VCSkVDVF9QUkVGSVggPSAnW0RqYW5nb10gJwpFTUFJTF9USU1FT1VUID0gTm9uZQpFTUFJTF9VU0VfU1NMID0gRmFsc2UKRU1BSUxfVVNFX1RMUyA9IEZhbHNlCkZJTEVfQ0hBUlNFVCA9ICd1dGYtOCcKRklMRV9VUExPQURfRElSRUNUT1JZX1BFUk1JU1NJT05TID0gTm9uZQpGSUxFX1VQTE9BRF9IQU5ETEVSUyA9IFsnZGphbmdvLmNvcmUuZmlsZXMudXBsb2FkaGFuZGxlci5NZW1vcnlGaWxlVXBsb2FkSGFuZGxlcicsICdkamFuZ28uY29yZS5maWxlcy51cGxvYWRoYW5kbGVyLlRlbXBvcmFyeUZpbGVVcGxvYWRIYW5kbGVyJ10KRklMRV9VUExPQURfTUFYX01FTU9SWV9TSVpFID0gMjYyMTQ0MApGSUxFX1VQTE9BRF9QRVJNSVNTSU9OUyA9IE5vbmUKRklMRV9VUExPQURfVEVNUF9ESVIgPSBOb25lCkZJUlNUX0RBWV9PRl9XRUVLID0gMApGSVhUVVJFX0RJUlMgPSBbXQpGT1JDRV9TQ1JJUFRfTkFNRSA9IE5vbmUKRk9STUFUX01PRFVMRV9QQVRIID0gTm9uZQpHWklQX0NPTlRFTlRfVFlQRVMgPSAKSUdOT1JBQkxFXzQwNF9VUkxTID0gW10KSU5TVEFMTEVEX0FQUFMgPSBbJ2RqYW5nby5jb250cmliLmFkbWluJywgJ2RqYW5nby5jb250cmliLmF1dGgnLCAnZGphbmdvLmNvbnRyaWIuY29udGVudHR5cGVzJywgJ2RqYW5nby5jb250cmliLnNlc3Npb25zJywgJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzJywgJ2RqYW5nby5jb250cmliLnN0YXRpY2ZpbGVzJywgJ3dlYnBhY2tfbG9hZGVyJywgJ2NvcmUnLCAncmVzdF9mcmFtZXdvcmsnLCAnZGphbmdvX25vc2UnLCAncmVzdF9mcmFtZXdvcmtfc3dhZ2dlcicsICdzaWxrJ10KSU5URVJOQUxfSVBTID0gW10KTEFOR1VBR0VTID0gWygnYWYnLCAnQWZyaWthYW5zJyksICgnYXInLCAnQXJhYmljJyksICgnYXN0JywgJ0FzdHVyaWFuJyksICgnYXonLCAnQXplcmJhaWphbmknKSwgKCdiZycsICdCdWxnYXJpYW4nKSwgKCdiZScsICdCZWxhcnVzaWFuJyksICgnYm4nLCAnQmVuZ2FsaScpLCAoJ2JyJywgJ0JyZXRvbicpLCAoJ2JzJywgJ0Jvc25pYW4nKSwgKCdjYScsICdDYXRhbGFuJyksICgnY3MnLCAnQ3plY2gnKSwgKCdjeScsICdXZWxzaCcpLCAoJ2RhJywgJ0RhbmlzaCcpLCAoJ2RlJywgJ0dlcm1hbicpLCAoJ2RzYicsICdMb3dlciBTb3JiaWFuJyksICgnZWwnLCAnR3JlZWsnKSwgKCdlbicsICdFbmdsaXNoJyksICgnZW4tYXUnLCAnQXVzdHJhbGlhbiBFbmdsaXNoJyksICgnZW4tZ2InLCAnQnJpdGlzaCBFbmdsaXNoJyksICgnZW8nLCAnRXNwZXJhbnRvJyksICgnZXMnLCAnU3BhbmlzaCcpLCAoJ2VzLWFyJywgJ0FyZ2VudGluaWFuIFNwYW5pc2gnKSwgKCdlcy1jbycsICdDb2xvbWJpYW4gU3BhbmlzaCcpLCAoJ2VzLW14JywgJ01leGljYW4gU3BhbmlzaCcpLCAoJ2VzLW5pJywgJ05pY2FyYWd1YW4gU3BhbmlzaCcpLCAoJ2VzLXZlJywgJ1ZlbmV6dWVsYW4gU3BhbmlzaCcpLCAoJ2V0JywgJ0VzdG9uaWFuJyksICgnZXUnLCAnQmFzcXVlJyksICgnZmEnLCAnUGVyc2lhbicpLCAoJ2ZpJywgJ0Zpbm5pc2gnKSwgKCdmcicsICdGcmVuY2gnKSwgKCdmeScsICdGcmlzaWFuJyksICgnZ2EnLCAnSXJpc2gnKSwgKCdnZCcsICdTY290dGlzaCBHYWVsaWMnKSwgKCdnbCcsICdHYWxpY2lhbicpLCAoJ2hlJywgJ0hlYnJldycpLCAoJ2hpJywgJ0hpbmRpJyksICgnaHInLCAnQ3JvYXRpYW4nKSwgKCdoc2InLCAnVXBwZXIgU29yYmlhbicpLCAoJ2h1JywgJ0h1bmdhcmlhbicpLCAoJ2lhJywgJ0ludGVybGluZ3VhJyksICgnaWQnLCAnSW5kb25lc2lhbicpLCAoJ2lvJywgJ0lkbycpLCAoJ2lzJywgJ0ljZWxhbmRpYycpLCAoJ2l0JywgJ0l0YWxpYW4nKSwgKCdqYScsICdKYXBhbmVzZScpLCAoJ2thJywgJ0dlb3JnaWFuJyksICgna2snLCAnS2F6YWtoJyksICgna20nLCAnS2htZXInKSwgKCdrbicsICdLYW5uYWRhJyksICgna28nLCAnS29yZWFuJyksICgnbGInLCAnTHV4ZW1ib3VyZ2lzaCcpLCAoJ2x0JywgJ0xpdGh1YW5pYW4nKSwgKCdsdicsICdMYXR2aWFuJyksICgnbWsnLCAnTWFjZWRvbmlhbicpLCAoJ21sJywgJ01hbGF5YWxhbScpLCAoJ21uJywgJ01vbmdvbGlhbicpLCAoJ21yJywgJ01hcmF0aGknKSwgKCdteScsICdCdXJtZXNlJyksICgnbmInLCAnTm9yd2VnaWFuIEJva23DpWwnKSwgKCduZScsICdOZXBhbGknKSwgKCdubCcsICdEdXRjaCcpLCAoJ25uJywgJ05vcndlZ2lhbiBOeW5vcnNrJyksICgnb3MnLCAnT3NzZXRpYycpLCAoJ3BhJywgJ1B1bmphYmknKSwgKCdwbCcsICdQb2xpc2gnKSwgKCdwdCcsICdQb3J0dWd1ZXNlJyksICgncHQtYnInLCAnQnJhemlsaWFuIFBvcnR1Z3Vlc2UnKSwgKCdybycsICdSb21hbmlhbicpLCAoJ3J1JywgJ1J1c3NpYW4nKSwgKCdzaycsICdTbG92YWsnKSwgKCdzbCcsICdTbG92ZW5pYW4nKSwgKCdzcScsICdBbGJhbmlhbicpLCAoJ3NyJywgJ1NlcmJpYW4nKSwgKCdzci1sYXRuJywgJ1NlcmJpYW4gTGF0aW4nKSwgKCdzdicsICdTd2VkaXNoJyksICgnc3cnLCAnU3dhaGlsaScpLCAoJ3RhJywgJ1RhbWlsJyksICgndGUnLCAnVGVsdWd1JyksICgndGgnLCAnVGhhaScpLCAoJ3RyJywgJ1R1cmtpc2gnKSwgKCd0dCcsICdUYXRhcicpLCAoJ3VkbScsICdVZG11cnQnKSwgKCd1aycsICdVa3JhaW5pYW4nKSwgKCd1cicsICdVcmR1JyksICgndmknLCAnVmlldG5hbWVzZScpLCAoJ3poLWhhbnMnLCAnU2ltcGxpZmllZCBDaGluZXNlJyksICgnemgtaGFudCcsICdUcmFkaXRpb25hbCBDaGluZXNlJyldCkxBTkdVQUdFU19CSURJID0gWydoZScsICdhcicsICdmYScsICd1ciddCkxBTkdVQUdFX0NPREUgPSAnZW4tdXMnCkxBTkdVQUdFX0NPT0tJRV9BR0UgPSBOb25lCkxBTkdVQUdFX0NPT0tJRV9ET01BSU4gPSBOb25lCkxBTkdVQUdFX0NPT0tJRV9OQU1FID0gJ2RqYW5nb19sYW5ndWFnZScKTEFOR1VBR0VfQ09PS0lFX1BBVEggPSAnLycKTE9DQUxFX1BBVEhTID0gW10KTE9HR0lORyA9IHt9CkxPR0dJTkdfQ09ORklHID0gJ2xvZ2dpbmcuY29uZmlnLmRpY3RDb25maWcnCkxPR0lOX1JFRElSRUNUX1VSTCA9ICcvYWNjb3VudHMvcHJvZmlsZS8nCkxPR0lOX1VSTCA9ICcvYWNjb3VudHMvbG9naW4vJwpMT0dPVVRfUkVESVJFQ1RfVVJMID0gTm9uZQpNQU5BR0VSUyA9IFtdCk1FRElBX1JPT1QgPSAnL2hvbWUvZmlsZXMnCk1FRElBX1VSTCA9ICcvZmlsZXMvJwpNRVNTQUdFX1NUT1JBR0UgPSAnZGphbmdvLmNvbnRyaWIubWVzc2FnZXMuc3RvcmFnZS5mYWxsYmFjay5GYWxsYmFja1N0b3JhZ2UnCk1JRERMRVdBUkUgPSBbJ2RqYW5nby5taWRkbGV3YXJlLnNlY3VyaXR5LlNlY3VyaXR5TWlkZGxld2FyZScsICdkamFuZ28uY29udHJpYi5zZXNzaW9ucy5taWRkbGV3YXJlLlNlc3Npb25NaWRkbGV3YXJlJywgJ2RqYW5nby5taWRkbGV3YXJlLmNvbW1vbi5Db21tb25NaWRkbGV3YXJlJywgJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJywgJ2RqYW5nby5jb250cmliLmF1dGgubWlkZGxld2FyZS5BdXRoZW50aWNhdGlvbk1pZGRsZXdhcmUnLCAnZGphbmdvLmNvbnRyaWIubWVzc2FnZXMubWlkZGxld2FyZS5NZXNzYWdlTWlkZGxld2FyZScsICdkamFuZ28ubWlkZGxld2FyZS5jbGlja2phY2tpbmcuWEZyYW1lT3B0aW9uc01pZGRsZXdhcmUnLCAnc2lsay5taWRkbGV3YXJlLlNpbGt5TWlkZGxld2FyZSddCk1JRERMRVdBUkVfQ0xBU1NFUyA9IFsnZGphbmdvLm1pZGRsZXdhcmUuY29tbW9uLkNvbW1vbk1pZGRsZXdhcmUnLCAnZGphbmdvLm1pZGRsZXdhcmUuY3NyZi5Dc3JmVmlld01pZGRsZXdhcmUnXQpNSUdSQVRJT05fTU9EVUxFUyA9IHt9Ck1PTlRIX0RBWV9GT1JNQVQgPSAnRiBqJwpOT1NFX0FSR1MgPSBbJy0td2l0aC1jb3ZlcmFnZScsICctLWNvdmVyLXBhY2thZ2U9Y29yZS52aWV3cycsICctLWNvdmVyLWh0bWwtZGlyPXRlc3QvYmFja2VuZCcsICctLWNvdmVyLWh0bWwnXQpOVU1CRVJfR1JPVVBJTkcgPSAwClBBU1NXT1JEX0hBU0hFUlMgPSAnKioqKioqKioqKioqKioqKioqKionClBBU1NXT1JEX1JFU0VUX1RJTUVPVVRfREFZUyA9ICcqKioqKioqKioqKioqKioqKioqKicKUFJFUEVORF9XV1cgPSBGYWxzZQpSRVNUX0ZSQU1FV09SSyA9IHsnREVGQVVMVF9QRVJNSVNTSU9OX0NMQVNTRVMnOiBbJ3Jlc3RfZnJhbWV3b3JrLnBlcm1pc3Npb25zLkRqYW5nb01vZGVsUGVybWlzc2lvbnNPckFub25SZWFkT25seSddfQpST09UX1VSTENPTkYgPSAna2FwZS51cmxzJwpSVU5OSU5HX0RFVlNFUlZFUiA9IFRydWUKU0VDUkVUX0tFWSA9ICcqKioqKioqKioqKioqKioqKioqKicKU0VDVVJFX0JST1dTRVJfWFNTX0ZJTFRFUiA9IEZhbHNlClNFQ1VSRV9DT05URU5UX1RZUEVfTk9TTklGRiA9IEZhbHNlClNFQ1VSRV9IU1RTX0lOQ0xVREVfU1VCRE9NQUlOUyA9IEZhbHNlClNFQ1VSRV9IU1RTX1NFQ09ORFMgPSAwClNFQ1VSRV9QUk9YWV9TU0xfSEVBREVSID0gTm9uZQpTRUNVUkVfUkVESVJFQ1RfRVhFTVBUID0gW10KU0VDVVJFX1NTTF9IT1NUID0gTm9uZQpTRUNVUkVfU1NMX1JFRElSRUNUID0gRmFsc2UKU0VSVkVSX0VNQUlMID0gJ3Jvb3RAbG9jYWxob3N0JwpTRVNTSU9OX0NBQ0hFX0FMSUFTID0gJ2RlZmF1bHQnClNFU1NJT05fQ09PS0lFX0FHRSA9IDEyMDk2MDAKU0VTU0lPTl9DT09LSUVfRE9NQUlOID0gTm9uZQpTRVNTSU9OX0NPT0tJRV9IVFRQT05MWSA9IEZhbHNlClNFU1NJT05fQ09PS0lFX05BTUUgPSAnc2Vzc2lvbmlkJwpTRVNTSU9OX0NPT0tJRV9QQVRIID0gJy8nClNFU1NJT05fQ09PS0lFX1NFQ1VSRSA9IEZhbHNlClNFU1NJT05fRU5HSU5FID0gJ2RqYW5nby5jb250cmliLnNlc3Npb25zLmJhY2tlbmRzLmRiJwpTRVNTSU9OX0VYUElSRV9BVF9CUk9XU0VSX0NMT1NFID0gRmFsc2UKU0VTU0lPTl9GSUxFX1BBVEggPSBOb25lClNFU1NJT05fU0FWRV9FVkVSWV9SRVFVRVNUID0gRmFsc2UKU0VTU0lPTl9TRVJJQUxJWkVSID0gJ2RqYW5nby5jb250cmliLnNlc3Npb25zLnNlcmlhbGl6ZXJzLkpTT05TZXJpYWxpemVyJwpTRVRUSU5HU19NT0RVTEUgPSAna2FwZS5zZXR0aW5ncycKU0hPUlRfREFURVRJTUVfRk9STUFUID0gJ20vZC9ZIFAnClNIT1JUX0RBVEVfRk9STUFUID0gJ20vZC9ZJwpTSUdOSU5HX0JBQ0tFTkQgPSAnZGphbmdvLmNvcmUuc2lnbmluZy5UaW1lc3RhbXBTaWduZXInClNJTEVOQ0VEX1NZU1RFTV9DSEVDS1MgPSBbXQpTVEFUSUNGSUxFU19ESVJTID0gJ0Q6XFxQUExBXFxhc3NldHMnClNUQVRJQ0ZJTEVTX0ZJTkRFUlMgPSBbJ2RqYW5nby5jb250cmliLnN0YXRpY2ZpbGVzLmZpbmRlcnMuRmlsZVN5c3RlbUZpbmRlcicsICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcy5maW5kZXJzLkFwcERpcmVjdG9yaWVzRmluZGVyJ10KU1RBVElDRklMRVNfU1RPUkFHRSA9ICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcy5zdG9yYWdlLlN0YXRpY0ZpbGVzU3RvcmFnZScKU1RBVElDX1JPT1QgPSAnL2hvbWUvYXNzZXRzJwpTVEFUSUNfVVJMID0gJy9hc3NldHMvJwpURU1QTEFURVMgPSBbeydCQUNLRU5EJzogJ2RqYW5nby50ZW1wbGF0ZS5iYWNrZW5kcy5kamFuZ28uRGphbmdvVGVtcGxhdGVzJywgJ0RJUlMnOiBbXSwgJ0FQUF9ESVJTJzogVHJ1ZSwgJ09QVElPTlMnOiB7J2NvbnRleHRfcHJvY2Vzc29ycyc6IFsnZGphbmdvLnRlbXBsYXRlLmNvbnRleHRfcHJvY2Vzc29ycy5kZWJ1ZycsICdkamFuZ28udGVtcGxhdGUuY29udGV4dF9wcm9jZXNzb3JzLnJlcXVlc3QnLCAnZGphbmdvLmNvbnRyaWIuYXV0aC5jb250ZXh0X3Byb2Nlc3NvcnMuYXV0aCcsICdkamFuZ28uY29udHJpYi5tZXNzYWdlcy5jb250ZXh0X3Byb2Nlc3NvcnMubWVzc2FnZXMnXX19XQpURVNUX05PTl9TRVJJQUxJWkVEX0FQUFMgPSBbXQpURVNUX1JVTk5FUiA9ICdkamFuZ29fbm9zZS5Ob3NlVGVzdFN1aXRlUnVubmVyJwpUSE9VU0FORF9TRVBBUkFUT1IgPSAnLCcKVElNRV9GT1JNQVQgPSAnUCcKVElNRV9JTlBVVF9GT1JNQVRTID0gWyclSDolTTolUycsICclSDolTTolUy4lZicsICclSDolTSddClRJTUVfWk9ORSA9ICdVVEMnClVTRV9FVEFHUyA9IEZhbHNlClVTRV9JMThOID0gVHJ1ZQpVU0VfTDEwTiA9IFRydWUKVVNFX1RIT1VTQU5EX1NFUEFSQVRPUiA9IEZhbHNlClVTRV9UWiA9IFRydWUKVVNFX1hfRk9SV0FSREVEX0hPU1QgPSBGYWxzZQpVU0VfWF9GT1JXQVJERURfUE9SVCA9IEZhbHNlCldFQlBBQ0tfTE9BREVSID0geydERUZBVUxUJzogeydCVU5ETEVfRElSX05BTUUnOiAnYnVuZGxlcy8nLCAnU1RBVFNfRklMRSc6ICdEOlxcUFBMQVxcd2VicGFjay1zdGF0cy5qc29uJ319CldTR0lfQVBQTElDQVRJT04gPSAna2FwZS53c2dpLmFwcGxpY2F0aW9uJwpYX0ZSQU1FX09QVElPTlMgPSAnU0FNRU9SSUdJTicKWUVBUl9NT05USF9GT1JNQVQgPSAnRiBZJwoKCllvdSdyZSBzZWVpbmcgdGhpcyBlcnJvciBiZWNhdXNlIHlvdSBoYXZlIERFQlVHID0gVHJ1ZSBpbiB5b3VyCkRqYW5nbyBzZXR0aW5ncyBmaWxlLiBDaGFuZ2UgdGhhdCB0byBGYWxzZSwgYW5kIERqYW5nbyB3aWxsCmRpc3BsYXkgYSBzdGFuZGFyZCBwYWdlIGdlbmVyYXRlZCBieSB0aGUgaGFuZGxlciBmb3IgdGhpcyBzdGF0dXMgY29kZS4KCg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/plain\"}" - } -}, -{ - "model": "silk.response", - "pk": "f774e04f-b86b-4b59-928a-b19c2121cb56", - "fields": { - "request": "c4064f01-551b-4068-856a-a0f826610941", - "status_code": 200, - "raw_body": "CgooZnVuY3Rpb24oZ2xvYmFscykgewoKICB2YXIgZGphbmdvID0gZ2xvYmFscy5kamFuZ28gfHwgKGdsb2JhbHMuZGphbmdvID0ge30pOwoKICAKICBkamFuZ28ucGx1cmFsaWR4ID0gZnVuY3Rpb24oY291bnQpIHsgcmV0dXJuIChjb3VudCA9PSAxKSA/IDAgOiAxOyB9OwogIAoKICAvKiBnZXR0ZXh0IGxpYnJhcnkgKi8KCiAgZGphbmdvLmNhdGFsb2cgPSBkamFuZ28uY2F0YWxvZyB8fCB7fTsKICAKCiAgaWYgKCFkamFuZ28uanNpMThuX2luaXRpYWxpemVkKSB7CiAgICBkamFuZ28uZ2V0dGV4dCA9IGZ1bmN0aW9uKG1zZ2lkKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5jYXRhbG9nW21zZ2lkXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gbXNnaWQ7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuICh0eXBlb2YodmFsdWUpID09ICdzdHJpbmcnKSA/IHZhbHVlIDogdmFsdWVbMF07CiAgICAgIH0KICAgIH07CgogICAgZGphbmdvLm5nZXR0ZXh0ID0gZnVuY3Rpb24oc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmNhdGFsb2dbc2luZ3VsYXJdOwogICAgICBpZiAodHlwZW9mKHZhbHVlKSA9PSAndW5kZWZpbmVkJykgewogICAgICAgIHJldHVybiAoY291bnQgPT0gMSkgPyBzaW5ndWxhciA6IHBsdXJhbDsKICAgICAgfSBlbHNlIHsKICAgICAgICByZXR1cm4gdmFsdWVbZGphbmdvLnBsdXJhbGlkeChjb3VudCldOwogICAgICB9CiAgICB9OwoKICAgIGRqYW5nby5nZXR0ZXh0X25vb3AgPSBmdW5jdGlvbihtc2dpZCkgeyByZXR1cm4gbXNnaWQ7IH07CgogICAgZGphbmdvLnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgbXNnaWQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLmdldHRleHQoY29udGV4dCArICdceDA0JyArIG1zZ2lkKTsKICAgICAgaWYgKHZhbHVlLmluZGV4T2YoJ1x4MDQnKSAhPSAtMSkgewogICAgICAgIHZhbHVlID0gbXNnaWQ7CiAgICAgIH0KICAgICAgcmV0dXJuIHZhbHVlOwogICAgfTsKCiAgICBkamFuZ28ubnBnZXR0ZXh0ID0gZnVuY3Rpb24oY29udGV4dCwgc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpIHsKICAgICAgdmFyIHZhbHVlID0gZGphbmdvLm5nZXR0ZXh0KGNvbnRleHQgKyAnXHgwNCcgKyBzaW5ndWxhciwgY29udGV4dCArICdceDA0JyArIHBsdXJhbCwgY291bnQpOwogICAgICBpZiAodmFsdWUuaW5kZXhPZignXHgwNCcpICE9IC0xKSB7CiAgICAgICAgdmFsdWUgPSBkamFuZ28ubmdldHRleHQoc2luZ3VsYXIsIHBsdXJhbCwgY291bnQpOwogICAgICB9CiAgICAgIHJldHVybiB2YWx1ZTsKICAgIH07CgogICAgZGphbmdvLmludGVycG9sYXRlID0gZnVuY3Rpb24oZm10LCBvYmosIG5hbWVkKSB7CiAgICAgIGlmIChuYW1lZCkgewogICAgICAgIHJldHVybiBmbXQucmVwbGFjZSgvJVwoXHcrXClzL2csIGZ1bmN0aW9uKG1hdGNoKXtyZXR1cm4gU3RyaW5nKG9ialttYXRjaC5zbGljZSgyLC0yKV0pfSk7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIGZtdC5yZXBsYWNlKC8lcy9nLCBmdW5jdGlvbihtYXRjaCl7cmV0dXJuIFN0cmluZyhvYmouc2hpZnQoKSl9KTsKICAgICAgfQogICAgfTsKCgogICAgLyogZm9ybWF0dGluZyBsaWJyYXJ5ICovCgogICAgZGphbmdvLmZvcm1hdHMgPSB7CiAgICAiREFURVRJTUVfRk9STUFUIjogIk4gaiwgWSwgUCIsCiAgICAiREFURVRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTIiwKICAgICAgIiVZLSVtLSVkICVIOiVNOiVTLiVmIiwKICAgICAgIiVZLSVtLSVkICVIOiVNIiwKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyVZICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyVZICVIOiVNIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNOiVTLiVmIiwKICAgICAgIiVtLyVkLyV5ICVIOiVNIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJEQVRFX0ZPUk1BVCI6ICJOIGosIFkiLAogICAgIkRBVEVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVZLSVtLSVkIiwKICAgICAgIiVtLyVkLyVZIiwKICAgICAgIiVtLyVkLyV5IgogICAgXSwKICAgICJERUNJTUFMX1NFUEFSQVRPUiI6ICIuIiwKICAgICJGSVJTVF9EQVlfT0ZfV0VFSyI6ICIwIiwKICAgICJNT05USF9EQVlfRk9STUFUIjogIkYgaiIsCiAgICAiTlVNQkVSX0dST1VQSU5HIjogIjMiLAogICAgIlNIT1JUX0RBVEVUSU1FX0ZPUk1BVCI6ICJtL2QvWSBQIiwKICAgICJTSE9SVF9EQVRFX0ZPUk1BVCI6ICJtL2QvWSIsCiAgICAiVEhPVVNBTkRfU0VQQVJBVE9SIjogIiwiLAogICAgIlRJTUVfRk9STUFUIjogIlAiLAogICAgIlRJTUVfSU5QVVRfRk9STUFUUyI6IFsKICAgICAgIiVIOiVNOiVTIiwKICAgICAgIiVIOiVNOiVTLiVmIiwKICAgICAgIiVIOiVNIgogICAgXSwKICAgICJZRUFSX01PTlRIX0ZPUk1BVCI6ICJGIFkiCiAgfTsKCiAgICBkamFuZ28uZ2V0X2Zvcm1hdCA9IGZ1bmN0aW9uKGZvcm1hdF90eXBlKSB7CiAgICAgIHZhciB2YWx1ZSA9IGRqYW5nby5mb3JtYXRzW2Zvcm1hdF90eXBlXTsKICAgICAgaWYgKHR5cGVvZih2YWx1ZSkgPT0gJ3VuZGVmaW5lZCcpIHsKICAgICAgICByZXR1cm4gZm9ybWF0X3R5cGU7CiAgICAgIH0gZWxzZSB7CiAgICAgICAgcmV0dXJuIHZhbHVlOwogICAgICB9CiAgICB9OwoKICAgIC8qIGFkZCB0byBnbG9iYWwgbmFtZXNwYWNlICovCiAgICBnbG9iYWxzLnBsdXJhbGlkeCA9IGRqYW5nby5wbHVyYWxpZHg7CiAgICBnbG9iYWxzLmdldHRleHQgPSBkamFuZ28uZ2V0dGV4dDsKICAgIGdsb2JhbHMubmdldHRleHQgPSBkamFuZ28ubmdldHRleHQ7CiAgICBnbG9iYWxzLmdldHRleHRfbm9vcCA9IGRqYW5nby5nZXR0ZXh0X25vb3A7CiAgICBnbG9iYWxzLnBnZXR0ZXh0ID0gZGphbmdvLnBnZXR0ZXh0OwogICAgZ2xvYmFscy5ucGdldHRleHQgPSBkamFuZ28ubnBnZXR0ZXh0OwogICAgZ2xvYmFscy5pbnRlcnBvbGF0ZSA9IGRqYW5nby5pbnRlcnBvbGF0ZTsKICAgIGdsb2JhbHMuZ2V0X2Zvcm1hdCA9IGRqYW5nby5nZXRfZm9ybWF0OwoKICAgIGRqYW5nby5qc2kxOG5faW5pdGlhbGl6ZWQgPSB0cnVlOwogIH0KCn0odGhpcykpOwoK", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/javascript\"}" - } -}, -{ - "model": "silk.response", - "pk": "f7b1716d-8613-495c-bfc3-4dbfd1ffec06", - "fields": { - "request": "7a15640a-4b76-4ed0-830b-403829a67adb", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "f846975e-76e7-41a4-9683-0daa1e1ab406", - "fields": { - "request": "54a571f4-792d-4e8e-9da8-06e98bb2ad32", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "f8a5d9a6-3206-4426-892c-89d87d20d4e2", - "fields": { - "request": "3d85b9a4-3b8f-42f0-8c39-aa257dc5088f", - "status_code": 200, - "raw_body": "eyJzd2FnZ2VyIjogIjIuMCIsICJpbmZvIjogeyJ0aXRsZSI6ICIiLCAidmVyc2lvbiI6ICIifSwgInBhdGhzIjogeyIvYXBpL2FwcGxpY2F0aW9ucy8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAiYXBwbGljYXRpb25zX2xpc3QiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogInBhZ2UiLCAicmVxdWlyZWQiOiBmYWxzZSwgImluIjogInF1ZXJ5IiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbImFwcGxpY2F0aW9ucyJdfSwgInBvc3QiOiB7Im9wZXJhdGlvbklkIjogImFwcGxpY2F0aW9uc19jcmVhdGUiLCAicmVzcG9uc2VzIjogeyIyMDEiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InN0dWRlbnRfbnBtIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgInZhY2FuY3lfaWQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9fSwgInJlcXVpcmVkIjogWyJzdHVkZW50X25wbSIsICJ2YWNhbmN5X2lkIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsiYXBwbGljYXRpb25zIl19fSwgIi9hcGkvYXBwbGljYXRpb25zL3tpZH0vIjogeyJnZXQiOiB7Im9wZXJhdGlvbklkIjogImFwcGxpY2F0aW9uc19yZWFkIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbImFwcGxpY2F0aW9ucyJdfSwgInB1dCI6IHsib3BlcmF0aW9uSWQiOiAiYXBwbGljYXRpb25zX3VwZGF0ZSIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InN0dWRlbnRfbnBtIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgInZhY2FuY3lfaWQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9fSwgInJlcXVpcmVkIjogWyJzdHVkZW50X25wbSIsICJ2YWNhbmN5X2lkIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsiYXBwbGljYXRpb25zIl19LCAicGF0Y2giOiB7Im9wZXJhdGlvbklkIjogImFwcGxpY2F0aW9uc19wYXJ0aWFsX3VwZGF0ZSIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InN0dWRlbnRfbnBtIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgInZhY2FuY3lfaWQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9fX19XSwgImNvbnN1bWVzIjogWyJhcHBsaWNhdGlvbi9qc29uIl0sICJ0YWdzIjogWyJhcHBsaWNhdGlvbnMiXX0sICJkZWxldGUiOiB7Im9wZXJhdGlvbklkIjogImFwcGxpY2F0aW9uc19kZWxldGUiLCAicmVzcG9uc2VzIjogeyIyMDQiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsiYXBwbGljYXRpb25zIl19fSwgIi9hcGkvY29tcGFuaWVzLyI6IHsiZ2V0IjogeyJvcGVyYXRpb25JZCI6ICJjb21wYW5pZXNfbGlzdCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAicGFnZSIsICJyZXF1aXJlZCI6IGZhbHNlLCAiaW4iOiAicXVlcnkiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsiY29tcGFuaWVzIl19LCAicG9zdCI6IHsib3BlcmF0aW9uSWQiOiAiY29tcGFuaWVzX2NyZWF0ZSIsICJyZXNwb25zZXMiOiB7IjIwMSI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidXNlciI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAib2JqZWN0In0sICJkZXNjcmlwdGlvbiI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sICJ2ZXJpZmllZCI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiYm9vbGVhbiJ9fSwgInJlcXVpcmVkIjogWyJ1c2VyIiwgImRlc2NyaXB0aW9uIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsiY29tcGFuaWVzIl19fSwgIi9hcGkvY29tcGFuaWVzL3tpZH0vIjogeyJnZXQiOiB7Im9wZXJhdGlvbklkIjogImNvbXBhbmllc19yZWFkIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbImNvbXBhbmllcyJdfSwgInB1dCI6IHsib3BlcmF0aW9uSWQiOiAiY29tcGFuaWVzX3VwZGF0ZSIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InVzZXIiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogIm9iamVjdCJ9LCAiZGVzY3JpcHRpb24iOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAidmVyaWZpZWQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImJvb2xlYW4ifX0sICJyZXF1aXJlZCI6IFsidXNlciIsICJkZXNjcmlwdGlvbiJdfX1dLCAiY29uc3VtZXMiOiBbImFwcGxpY2F0aW9uL2pzb24iXSwgInRhZ3MiOiBbImNvbXBhbmllcyJdfSwgInBhdGNoIjogeyJvcGVyYXRpb25JZCI6ICJjb21wYW5pZXNfcGFydGlhbF91cGRhdGUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ1c2VyIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJvYmplY3QifSwgImRlc2NyaXB0aW9uIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgInZlcmlmaWVkIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJib29sZWFuIn19fX1dLCAiY29uc3VtZXMiOiBbImFwcGxpY2F0aW9uL2pzb24iXSwgInRhZ3MiOiBbImNvbXBhbmllcyJdfSwgImRlbGV0ZSI6IHsib3BlcmF0aW9uSWQiOiAiY29tcGFuaWVzX2RlbGV0ZSIsICJyZXNwb25zZXMiOiB7IjIwNCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJjb21wYW5pZXMiXX19LCAiL2FwaS9zdHVkZW50cy8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAic3R1ZGVudHNfbGlzdCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAicGFnZSIsICJyZXF1aXJlZCI6IGZhbHNlLCAiaW4iOiAicXVlcnkiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsic3R1ZGVudHMiXX0sICJwb3N0IjogeyJvcGVyYXRpb25JZCI6ICJzdHVkZW50c19jcmVhdGUiLCAicmVzcG9uc2VzIjogeyIyMDEiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InVzZXIiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogIm9iamVjdCJ9LCAibnBtIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJpbnRlZ2VyIn0sICJyZXN1bWUiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImZpbGUifSwgInBob25lX251bWJlciI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sICJib29rbWFya2VkX3ZhY2FuY2llcyI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiYXJyYXkiLCAiaXRlbXMiOiB7InR5cGUiOiAic3RyaW5nIn19fSwgInJlcXVpcmVkIjogWyJ1c2VyIiwgIm5wbSIsICJib29rbWFya2VkX3ZhY2FuY2llcyJdfX1dLCAiY29uc3VtZXMiOiBbImFwcGxpY2F0aW9uL2pzb24iXSwgInRhZ3MiOiBbInN0dWRlbnRzIl19fSwgIi9hcGkvc3R1ZGVudHMve2lkfS8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAic3R1ZGVudHNfcmVhZCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJzdHVkZW50cyJdfSwgInB1dCI6IHsib3BlcmF0aW9uSWQiOiAic3R1ZGVudHNfdXBkYXRlIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCB7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidXNlciI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAib2JqZWN0In0sICJucG0iOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImludGVnZXIifSwgInJlc3VtZSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiZmlsZSJ9LCAicGhvbmVfbnVtYmVyIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImJvb2ttYXJrZWRfdmFjYW5jaWVzIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJhcnJheSIsICJpdGVtcyI6IHsidHlwZSI6ICJzdHJpbmcifX19LCAicmVxdWlyZWQiOiBbInVzZXIiLCAibnBtIiwgImJvb2ttYXJrZWRfdmFjYW5jaWVzIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsic3R1ZGVudHMiXX0sICJwYXRjaCI6IHsib3BlcmF0aW9uSWQiOiAic3R1ZGVudHNfcGFydGlhbF91cGRhdGUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ1c2VyIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJvYmplY3QifSwgIm5wbSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiaW50ZWdlciJ9LCAicmVzdW1lIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJmaWxlIn0sICJwaG9uZV9udW1iZXIiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiYm9va21hcmtlZF92YWNhbmNpZXMiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImFycmF5IiwgIml0ZW1zIjogeyJ0eXBlIjogInN0cmluZyJ9fX19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsic3R1ZGVudHMiXX0sICJkZWxldGUiOiB7Im9wZXJhdGlvbklkIjogInN0dWRlbnRzX2RlbGV0ZSIsICJyZXNwb25zZXMiOiB7IjIwNCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJzdHVkZW50cyJdfX0sICIvYXBpL3N0dWRlbnRzL3tpZH0vYm9va21hcmtlZC12YWNhbmNpZXMvIjogeyJwb3N0IjogeyJvcGVyYXRpb25JZCI6ICJzdHVkZW50c19ib29rbWFya192YWNhbmNpZXMiLCAicmVzcG9uc2VzIjogeyIyMDEiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ1c2VyIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJvYmplY3QifSwgIm5wbSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiaW50ZWdlciJ9LCAicmVzdW1lIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJmaWxlIn0sICJwaG9uZV9udW1iZXIiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiYm9va21hcmtlZF92YWNhbmNpZXMiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImFycmF5IiwgIml0ZW1zIjogeyJ0eXBlIjogInN0cmluZyJ9fX0sICJyZXF1aXJlZCI6IFsidXNlciIsICJucG0iLCAiYm9va21hcmtlZF92YWNhbmNpZXMiXX19XSwgImNvbnN1bWVzIjogWyJhcHBsaWNhdGlvbi9qc29uIl0sICJ0YWdzIjogWyJzdHVkZW50cyJdfSwgImRlbGV0ZSI6IHsib3BlcmF0aW9uSWQiOiAic3R1ZGVudHNfdW5ib29rbWFya192YWNhbmNpZXMiLCAicmVzcG9uc2VzIjogeyIyMDQiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsic3R1ZGVudHMiXX19LCAiL2FwaS9zdXBlcnZpc29ycy8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAic3VwZXJ2aXNvcnNfbGlzdCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAicGFnZSIsICJyZXF1aXJlZCI6IGZhbHNlLCAiaW4iOiAicXVlcnkiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsic3VwZXJ2aXNvcnMiXX0sICJwb3N0IjogeyJvcGVyYXRpb25JZCI6ICJzdXBlcnZpc29yc19jcmVhdGUiLCAicmVzcG9uc2VzIjogeyIyMDEiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InVzZXIiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogIm9iamVjdCJ9LCAibmlwIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJpbnRlZ2VyIn19LCAicmVxdWlyZWQiOiBbInVzZXIiLCAibmlwIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsic3VwZXJ2aXNvcnMiXX19LCAiL2FwaS9zdXBlcnZpc29ycy97aWR9LyI6IHsiZ2V0IjogeyJvcGVyYXRpb25JZCI6ICJzdXBlcnZpc29yc19yZWFkIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbInN1cGVydmlzb3JzIl19LCAicHV0IjogeyJvcGVyYXRpb25JZCI6ICJzdXBlcnZpc29yc191cGRhdGUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ1c2VyIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJvYmplY3QifSwgIm5pcCI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiaW50ZWdlciJ9fSwgInJlcXVpcmVkIjogWyJ1c2VyIiwgIm5pcCJdfX1dLCAiY29uc3VtZXMiOiBbImFwcGxpY2F0aW9uL2pzb24iXSwgInRhZ3MiOiBbInN1cGVydmlzb3JzIl19LCAicGF0Y2giOiB7Im9wZXJhdGlvbklkIjogInN1cGVydmlzb3JzX3BhcnRpYWxfdXBkYXRlIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCB7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidXNlciI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAib2JqZWN0In0sICJuaXAiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImludGVnZXIifX19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsic3VwZXJ2aXNvcnMiXX0sICJkZWxldGUiOiB7Im9wZXJhdGlvbklkIjogInN1cGVydmlzb3JzX2RlbGV0ZSIsICJyZXNwb25zZXMiOiB7IjIwNCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJzdXBlcnZpc29ycyJdfX0sICIvYXBpL3VzZXJzLyI6IHsiZ2V0IjogeyJvcGVyYXRpb25JZCI6ICJ1c2Vyc19saXN0IiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJwYWdlIiwgInJlcXVpcmVkIjogZmFsc2UsICJpbiI6ICJxdWVyeSIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJ1c2VycyJdfSwgInBvc3QiOiB7Im9wZXJhdGlvbklkIjogInVzZXJzX2NyZWF0ZSIsICJyZXNwb25zZXMiOiB7IjIwMSI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidXNlcm5hbWUiOiB7ImRlc2NyaXB0aW9uIjogIlJlcXVpcmVkLiAxNTAgY2hhcmFjdGVycyBvciBmZXdlci4gTGV0dGVycywgZGlnaXRzIGFuZCBALy4vKy8tL18gb25seS4iLCAidHlwZSI6ICJzdHJpbmcifSwgImVtYWlsIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImlzX3N0YWZmIjogeyJkZXNjcmlwdGlvbiI6ICJEZXNpZ25hdGVzIHdoZXRoZXIgdGhlIHVzZXIgY2FuIGxvZyBpbnRvIHRoaXMgYWRtaW4gc2l0ZS4iLCAidHlwZSI6ICJib29sZWFuIn19LCAicmVxdWlyZWQiOiBbInVzZXJuYW1lIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsidXNlcnMiXX19LCAiL2FwaS91c2Vycy9tZS8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAidXNlcnNfbWUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbXSwgInRhZ3MiOiBbInVzZXJzIl19fSwgIi9hcGkvdXNlcnMve2lkfS8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAidXNlcnNfcmVhZCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJ1c2VycyJdfSwgInB1dCI6IHsib3BlcmF0aW9uSWQiOiAidXNlcnNfdXBkYXRlIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCB7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidXNlcm5hbWUiOiB7ImRlc2NyaXB0aW9uIjogIlJlcXVpcmVkLiAxNTAgY2hhcmFjdGVycyBvciBmZXdlci4gTGV0dGVycywgZGlnaXRzIGFuZCBALy4vKy8tL18gb25seS4iLCAidHlwZSI6ICJzdHJpbmcifSwgImVtYWlsIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImlzX3N0YWZmIjogeyJkZXNjcmlwdGlvbiI6ICJEZXNpZ25hdGVzIHdoZXRoZXIgdGhlIHVzZXIgY2FuIGxvZyBpbnRvIHRoaXMgYWRtaW4gc2l0ZS4iLCAidHlwZSI6ICJib29sZWFuIn19LCAicmVxdWlyZWQiOiBbInVzZXJuYW1lIl19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsidXNlcnMiXX0sICJwYXRjaCI6IHsib3BlcmF0aW9uSWQiOiAidXNlcnNfcGFydGlhbF91cGRhdGUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ1c2VybmFtZSI6IHsiZGVzY3JpcHRpb24iOiAiUmVxdWlyZWQuIDE1MCBjaGFyYWN0ZXJzIG9yIGZld2VyLiBMZXR0ZXJzLCBkaWdpdHMgYW5kIEAvLi8rLy0vXyBvbmx5LiIsICJ0eXBlIjogInN0cmluZyJ9LCAiZW1haWwiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiaXNfc3RhZmYiOiB7ImRlc2NyaXB0aW9uIjogIkRlc2lnbmF0ZXMgd2hldGhlciB0aGUgdXNlciBjYW4gbG9nIGludG8gdGhpcyBhZG1pbiBzaXRlLiIsICJ0eXBlIjogImJvb2xlYW4ifX19fV0sICJjb25zdW1lcyI6IFsiYXBwbGljYXRpb24vanNvbiJdLCAidGFncyI6IFsidXNlcnMiXX0sICJkZWxldGUiOiB7Im9wZXJhdGlvbklkIjogInVzZXJzX2RlbGV0ZSIsICJyZXNwb25zZXMiOiB7IjIwNCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJ1c2VycyJdfX0sICIvYXBpL3ZhY2FuY2llcy8iOiB7ImdldCI6IHsib3BlcmF0aW9uSWQiOiAidmFjYW5jaWVzX2xpc3QiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogInBhZ2UiLCAicmVxdWlyZWQiOiBmYWxzZSwgImluIjogInF1ZXJ5IiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9XSwgInRhZ3MiOiBbInZhY2FuY2llcyJdfSwgInBvc3QiOiB7Im9wZXJhdGlvbklkIjogInZhY2FuY2llc19jcmVhdGUiLCAicmVzcG9uc2VzIjogeyIyMDEiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImRhdGEiLCAiaW4iOiAiYm9keSIsICJzY2hlbWEiOiB7InR5cGUiOiAib2JqZWN0IiwgInByb3BlcnRpZXMiOiB7InZlcmlmaWVkIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJib29sZWFuIn0sICJvcGVuX3RpbWUiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiY2xvc2VfdGltZSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sICJjb21wYW55IjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifX0sICJyZXF1aXJlZCI6IFsib3Blbl90aW1lIiwgImNsb3NlX3RpbWUiLCAiY29tcGFueSJdfX1dLCAiY29uc3VtZXMiOiBbImFwcGxpY2F0aW9uL2pzb24iXSwgInRhZ3MiOiBbInZhY2FuY2llcyJdfX0sICIvYXBpL3ZhY2FuY2llcy97aWR9LyI6IHsiZ2V0IjogeyJvcGVyYXRpb25JZCI6ICJ2YWNhbmNpZXNfcmVhZCIsICJyZXNwb25zZXMiOiB7IjIwMCI6IHsiZGVzY3JpcHRpb24iOiAiIn19LCAicGFyYW1ldGVycyI6IFt7Im5hbWUiOiAiaWQiLCAicmVxdWlyZWQiOiB0cnVlLCAiaW4iOiAicGF0aCIsICJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifV0sICJ0YWdzIjogWyJ2YWNhbmNpZXMiXX0sICJwdXQiOiB7Im9wZXJhdGlvbklkIjogInZhY2FuY2llc191cGRhdGUiLCAicmVzcG9uc2VzIjogeyIyMDAiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sIHsibmFtZSI6ICJkYXRhIiwgImluIjogImJvZHkiLCAic2NoZW1hIjogeyJ0eXBlIjogIm9iamVjdCIsICJwcm9wZXJ0aWVzIjogeyJ2ZXJpZmllZCI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAiYm9vbGVhbiJ9LCAib3Blbl90aW1lIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImNsb3NlX3RpbWUiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCAiY29tcGFueSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn19LCAicmVxdWlyZWQiOiBbIm9wZW5fdGltZSIsICJjbG9zZV90aW1lIiwgImNvbXBhbnkiXX19XSwgImNvbnN1bWVzIjogWyJhcHBsaWNhdGlvbi9qc29uIl0sICJ0YWdzIjogWyJ2YWNhbmNpZXMiXX0sICJwYXRjaCI6IHsib3BlcmF0aW9uSWQiOiAidmFjYW5jaWVzX3BhcnRpYWxfdXBkYXRlIiwgInJlc3BvbnNlcyI6IHsiMjAwIjogeyJkZXNjcmlwdGlvbiI6ICIifX0sICJwYXJhbWV0ZXJzIjogW3sibmFtZSI6ICJpZCIsICJyZXF1aXJlZCI6IHRydWUsICJpbiI6ICJwYXRoIiwgImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9LCB7Im5hbWUiOiAiZGF0YSIsICJpbiI6ICJib2R5IiwgInNjaGVtYSI6IHsidHlwZSI6ICJvYmplY3QiLCAicHJvcGVydGllcyI6IHsidmVyaWZpZWQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogImJvb2xlYW4ifSwgIm9wZW5fdGltZSI6IHsiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn0sICJjbG9zZV90aW1lIjogeyJkZXNjcmlwdGlvbiI6ICIiLCAidHlwZSI6ICJzdHJpbmcifSwgImNvbXBhbnkiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJ0eXBlIjogInN0cmluZyJ9fX19XSwgImNvbnN1bWVzIjogWyJhcHBsaWNhdGlvbi9qc29uIl0sICJ0YWdzIjogWyJ2YWNhbmNpZXMiXX0sICJkZWxldGUiOiB7Im9wZXJhdGlvbklkIjogInZhY2FuY2llc19kZWxldGUiLCAicmVzcG9uc2VzIjogeyIyMDQiOiB7ImRlc2NyaXB0aW9uIjogIiJ9fSwgInBhcmFtZXRlcnMiOiBbeyJuYW1lIjogImlkIiwgInJlcXVpcmVkIjogdHJ1ZSwgImluIjogInBhdGgiLCAiZGVzY3JpcHRpb24iOiAiIiwgInR5cGUiOiAic3RyaW5nIn1dLCAidGFncyI6IFsidmFjYW5jaWVzIl19fX0sICJzZWN1cml0eURlZmluaXRpb25zIjogeyJiYXNpYyI6IHsidHlwZSI6ICJiYXNpYyJ9fX0=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"application/openapi+json\", \"Allow\": \"GET, HEAD, OPTIONS\", \"Vary\": \"Accept\"}" - } -}, -{ - "model": "silk.response", - "pk": "f9479810-bbc3-47b7-9192-e63464370093", - "fields": { - "request": "4201c2f9-f5f3-4940-9ebe-353dd87a8aa1", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "fc81d087-4c87-4f28-ba1f-8c91cf619e6f", - "fields": { - "request": "ceb91b4b-4be9-4382-a1d9-6bf32afdd7e3", - "status_code": 500, - "raw_body": "QXR0cmlidXRlRXJyb3IgYXQgL2FwaS9zdHVkZW50cy8yL2Jvb2ttYXJrZWQtdmFjYW5jaWVzLwonZGljdCcgb2JqZWN0IGhhcyBubyBhdHRyaWJ1dGUgJ2lkJwoKUmVxdWVzdCBNZXRob2Q6IFBPU1QKUmVxdWVzdCBVUkw6IGh0dHA6Ly8xMjcuMC4wLjE6ODAwMC9hcGkvc3R1ZGVudHMvMi9ib29rbWFya2VkLXZhY2FuY2llcy8KRGphbmdvIFZlcnNpb246IDEuMTAuNQpQeXRob24gRXhlY3V0YWJsZTogQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXHB5dGhvbi5leGUKUHl0aG9uIFZlcnNpb246IDMuNi4wClB5dGhvbiBQYXRoOiBbJ0Q6XFxQUExBJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXHB5dGhvbjM2LnppcCcsICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyXFxETExzJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXGxpYicsICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXGxpYlxcc2l0ZS1wYWNrYWdlcyddClNlcnZlciB0aW1lOiBNb24sIDI3IE1hciAyMDE3IDE1OjM3OjIxICswMDAwCkluc3RhbGxlZCBBcHBsaWNhdGlvbnM6ClsnZGphbmdvLmNvbnRyaWIuYWRtaW4nLAogJ2RqYW5nby5jb250cmliLmF1dGgnLAogJ2RqYW5nby5jb250cmliLmNvbnRlbnR0eXBlcycsCiAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMnLAogJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzJywKICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcycsCiAnd2VicGFja19sb2FkZXInLAogJ2NvcmUnLAogJ3Jlc3RfZnJhbWV3b3JrJywKICdkamFuZ29fbm9zZScsCiAncmVzdF9mcmFtZXdvcmtfc3dhZ2dlcicsCiAnc2lsayddCkluc3RhbGxlZCBNaWRkbGV3YXJlOgpbJ2RqYW5nby5taWRkbGV3YXJlLnNlY3VyaXR5LlNlY3VyaXR5TWlkZGxld2FyZScsCiAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMubWlkZGxld2FyZS5TZXNzaW9uTWlkZGxld2FyZScsCiAnZGphbmdvLm1pZGRsZXdhcmUuY29tbW9uLkNvbW1vbk1pZGRsZXdhcmUnLAogJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5hdXRoLm1pZGRsZXdhcmUuQXV0aGVudGljYXRpb25NaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5tZXNzYWdlcy5taWRkbGV3YXJlLk1lc3NhZ2VNaWRkbGV3YXJlJywKICdkamFuZ28ubWlkZGxld2FyZS5jbGlja2phY2tpbmcuWEZyYW1lT3B0aW9uc01pZGRsZXdhcmUnLAogJ3NpbGsubWlkZGxld2FyZS5TaWxreU1pZGRsZXdhcmUnXQoKClRyYWNlYmFjazogIAoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXGRqYW5nb1xjb3JlXGhhbmRsZXJzXGV4Y2VwdGlvbi5weSIgaW4gaW5uZXIKICAzOS4gICAgICAgICAgICAgcmVzcG9uc2UgPSBnZXRfcmVzcG9uc2UocmVxdWVzdCkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cY29yZVxoYW5kbGVyc1xiYXNlLnB5IiBpbiBfZ2V0X3Jlc3BvbnNlCiAgMTg3LiAgICAgICAgICAgICAgICAgcmVzcG9uc2UgPSBzZWxmLnByb2Nlc3NfZXhjZXB0aW9uX2J5X21pZGRsZXdhcmUoZSwgcmVxdWVzdCkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cY29yZVxoYW5kbGVyc1xiYXNlLnB5IiBpbiBfZ2V0X3Jlc3BvbnNlCiAgMTg1LiAgICAgICAgICAgICAgICAgcmVzcG9uc2UgPSB3cmFwcGVkX2NhbGxiYWNrKHJlcXVlc3QsICpjYWxsYmFja19hcmdzLCAqKmNhbGxiYWNrX2t3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cdmlld3NcZGVjb3JhdG9yc1xjc3JmLnB5IiBpbiB3cmFwcGVkX3ZpZXcKICA1OC4gICAgICAgICByZXR1cm4gdmlld19mdW5jKCphcmdzLCAqKmt3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3c2V0cy5weSIgaW4gdmlldwogIDgzLiAgICAgICAgICAgICByZXR1cm4gc2VsZi5kaXNwYXRjaChyZXF1ZXN0LCAqYXJncywgKiprd2FyZ3MpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNccmVzdF9mcmFtZXdvcmtcdmlld3MucHkiIGluIGRpc3BhdGNoCiAgNDgzLiAgICAgICAgICAgICByZXNwb25zZSA9IHNlbGYuaGFuZGxlX2V4Y2VwdGlvbihleGMpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNccmVzdF9mcmFtZXdvcmtcdmlld3MucHkiIGluIGhhbmRsZV9leGNlcHRpb24KICA0NDMuICAgICAgICAgICAgIHNlbGYucmFpc2VfdW5jYXVnaHRfZXhjZXB0aW9uKGV4YykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3cy5weSIgaW4gZGlzcGF0Y2gKICA0ODAuICAgICAgICAgICAgIHJlc3BvbnNlID0gaGFuZGxlcihyZXF1ZXN0LCAqYXJncywgKiprd2FyZ3MpCgpGaWxlICJEOlxQUExBXGNvcmVcdmlld3NcYWNjb3VudHMucHkiIGluIGJvb2ttYXJrX3ZhY2FuY2llcwogIDMwLiAgICAgICAgIHZhY2FuY3kgPSBnZXRfb2JqZWN0X29yXzQwNChWYWNhbmN5Lm9iamVjdHMuYWxsKCksIHBrPXJlcXVlc3QuZGF0YS5pZCkKCkV4Y2VwdGlvbiBUeXBlOiBBdHRyaWJ1dGVFcnJvciBhdCAvYXBpL3N0dWRlbnRzLzIvYm9va21hcmtlZC12YWNhbmNpZXMvCkV4Y2VwdGlvbiBWYWx1ZTogJ2RpY3QnIG9iamVjdCBoYXMgbm8gYXR0cmlidXRlICdpZCcKUmVxdWVzdCBpbmZvcm1hdGlvbjoKVVNFUjoga2FwZQoKR0VUOiBObyBHRVQgZGF0YQoKUE9TVDogTm8gUE9TVCBkYXRhCgpGSUxFUzogTm8gRklMRVMgZGF0YQoKQ09PS0lFUzoKc2Vzc2lvbmlkID0gJ2JsdDg3N2c1ZmptdWN4eTNkZDV1eGNpemF2YjlvcG92Jwpjc3JmdG9rZW4gPSAnMUVFUDJTd0t0MUs5UWJXbkZQU3lXUElpYnRPN01BYVZxS0xFZW9vRmdZVnlkallQb2duME93cDI5b1VXNkE2SycKCk1FVEE6CkFMTFVTRVJTUFJPRklMRSA9ICdDOlxcUHJvZ3JhbURhdGEnCkFQUERBVEEgPSAnQzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmcnCkNPTU1PTlBST0dSQU1GSUxFUyA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcQ29tbW9uIEZpbGVzJwpDT01NT05QUk9HUkFNRklMRVMoWDg2KSA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcQ29tbW9uIEZpbGVzJwpDT01NT05QUk9HUkFNVzY0MzIgPSAnQzpcXFByb2dyYW0gRmlsZXNcXENvbW1vbiBGaWxlcycKQ09NUFVURVJOQU1FID0gJ0ZBUkhBTicKQ09NU1BFQyA9ICdDOlxcV0lORE9XU1xcc3lzdGVtMzJcXGNtZC5leGUnCkNPTlRFTlRfTEVOR1RIID0gJzg4JwpDT05URU5UX1RZUEUgPSAnYXBwbGljYXRpb24vanNvbicKQ1NSRl9DT09LSUUgPSAnMUVFUDJTd0t0MUs5UWJXbkZQU3lXUElpYnRPN01BYVZxS0xFZW9vRmdZVnlkallQb2duME93cDI5b1VXNkE2SycKREpBTkdPX1NFVFRJTkdTX01PRFVMRSA9ICdrYXBlLnNldHRpbmdzJwpGUFNfQlJPV1NFUl9BUFBfUFJPRklMRV9TVFJJTkcgPSAnSW50ZXJuZXQgRXhwbG9yZXInCkZQU19CUk9XU0VSX1VTRVJfUFJPRklMRV9TVFJJTkcgPSAnRGVmYXVsdCcKRlBfTk9fSE9TVF9DSEVDSyA9ICdOTycKR0FURVdBWV9JTlRFUkZBQ0UgPSAnQ0dJLzEuMScKSE9NRURSSVZFID0gJ0M6JwpIT01FUEFUSCA9ICdcXFVzZXJzXFxmYXJoYV8wMDAnCkhUVFBfQUNDRVBUID0gJ2FwcGxpY2F0aW9uL2pzb24nCkhUVFBfQUNDRVBUX0VOQ09ESU5HID0gJ2d6aXAsIGRlZmxhdGUsIGJyJwpIVFRQX0FDQ0VQVF9MQU5HVUFHRSA9ICdpZC1JRCxpZDtxPTAuOCxlbi1VUztxPTAuNixlbjtxPTAuNCcKSFRUUF9DT05ORUNUSU9OID0gJ2tlZXAtYWxpdmUnCkhUVFBfQ09PS0lFID0gJ3Nlc3Npb25pZD1ibHQ4NzdnNWZqbXVjeHkzZGQ1dXhjaXphdmI5b3BvdjsgY3NyZnRva2VuPTFFRVAyU3dLdDFLOVFiV25GUFN5V1BJaWJ0TzdNQWFWcUtMRWVvb0ZnWVZ5ZGpZUG9nbjBPd3AyOW9VVzZBNksnCkhUVFBfSE9TVCA9ICcxMjcuMC4wLjE6ODAwMCcKSFRUUF9PUklHSU4gPSAnaHR0cDovLzEyNy4wLjAuMTo4MDAwJwpIVFRQX1JFRkVSRVIgPSAnaHR0cDovLzEyNy4wLjAuMTo4MDAwL2FwaScKSFRUUF9VU0VSX0FHRU5UID0gJ01vemlsbGEvNS4wIChXaW5kb3dzIE5UIDEwLjA7IFdPVzY0KSBBcHBsZVdlYktpdC81MzcuMzYgKEtIVE1MLCBsaWtlIEdlY2tvKSBDaHJvbWUvNTYuMC4yOTI0Ljg3IFNhZmFyaS81MzcuMzYnCkhUVFBfWF9DU1JGVE9LRU4gPSAnanE5MUJ1RjVlNVI3U2pNRlJjMlROZnZXVThsRE82d3lJd2dRTjB4MDEyMndmck83QUR4bEZXY0dTM3JzODZzbicKTE9DQUxBUFBEQVRBID0gJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbCcKTE9HT05TRVJWRVIgPSAnXFxcXEZBUkhBTicKTlVNQkVSX09GX1BST0NFU1NPUlMgPSAnMicKT05FRFJJVkUgPSAnQzpcXFVzZXJzXFxmYXJoYV8wMDBcXE9uZURyaXZlJwpPUyA9ICdXaW5kb3dzX05UJwpQQVRIID0gJ0M6XFxQcm9ncmFtRGF0YVxcT3JhY2xlXFxKYXZhXFxqYXZhcGF0aDtDOlxcUHJvZ3JhbSBGaWxlc1xcSGFza2VsbFxcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxIYXNrZWxsIFBsYXRmb3JtXFw3LjEwLjNcXGxpYlxcZXh0cmFsaWJzXFxiaW47QzpcXFByb2dyYW0gRmlsZXNcXEhhc2tlbGwgUGxhdGZvcm1cXDcuMTAuM1xcYmluO0M6XFxXSU5ET1dTXFxzeXN0ZW0zMjtDOlxcV0lORE9XUztDOlxcV0lORE9XU1xcU3lzdGVtMzJcXFdiZW07QzpcXFdJTkRPV1NcXFN5c3RlbTMyXFxXaW5kb3dzUG93ZXJTaGVsbFxcdjEuMFxcO0M6XFxQcm9ncmFtIEZpbGVzXFxIYXNrZWxsIFBsYXRmb3JtXFw3LjEwLjNcXG1pbmd3XFxiaW47QzpcXFByb2dyYW0gRmlsZXNcXEphdmFcXGpkazEuOC4wXzc3XFxiaW47QzpcXGN5Z3dpbjY0XFxiaW47JWxvY2FsYXBwZGF0YSVcXE1pY3Jvc29mdFxcV2luZG93c0FwcHM7RDpcXFhBTVBQXFxwaHA7QzpcXFByb2dyYW0gRmlsZXNcXEdpdFxcY21kO0M6XFx4YW1wcFxccGhwO0M6XFxQcm9ncmFtRGF0YVxcQ29tcG9zZXJTZXR1cFxcYmluO0M6XFxQcm9ncmFtIEZpbGVzICh4ODYpXFxub2RlanNcXDtDOlxcUHJvZ3JhbSBGaWxlc1xcUG9zdGdyZVNRTFxcOS42XFxiaW47QzpcXFByb2dyYW0gRmlsZXNcXE1BVExBQlxcUjIwMTdhXFxiaW47QzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXExvY2FsXFxQcm9ncmFtc1xcUHl0aG9uXFxQeXRob24zNi0zMlxcU2NyaXB0c1xcO0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXDtDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcUm9hbWluZ1xcY2FiYWxcXGJpbjtEOlxcWEFNUFBcXHBocDtDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcUm9hbWluZ1xcQ29tcG9zZXJcXHZlbmRvclxcYmluO0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcTWljcm9zb2Z0XFxXaW5kb3dzQXBwcztDOlxccHl0aG9uLTMuNi4wJwpQQVRIRVhUID0gJy5DT007LkVYRTsuQkFUOy5DTUQ7LlZCUzsuVkJFOy5KUzsuSlNFOy5XU0Y7LldTSDsuTVNDJwpQQVRIX0lORk8gPSAnL2FwaS9zdHVkZW50cy8yL2Jvb2ttYXJrZWQtdmFjYW5jaWVzLycKUFJPQ0VTU09SX0FSQ0hJVEVDVFVSRSA9ICd4ODYnClBST0NFU1NPUl9BUkNISVRFVzY0MzIgPSAnQU1ENjQnClBST0NFU1NPUl9JREVOVElGSUVSID0gJ0ludGVsNjQgRmFtaWx5IDYgTW9kZWwgNTggU3RlcHBpbmcgOSwgR2VudWluZUludGVsJwpQUk9DRVNTT1JfTEVWRUwgPSAnNicKUFJPQ0VTU09SX1JFVklTSU9OID0gJzNhMDknClBST0dSQU1EQVRBID0gJ0M6XFxQcm9ncmFtRGF0YScKUFJPR1JBTUZJTEVTID0gJ0M6XFxQcm9ncmFtIEZpbGVzICh4ODYpJwpQUk9HUkFNRklMRVMoWDg2KSA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KScKUFJPR1JBTVc2NDMyID0gJ0M6XFxQcm9ncmFtIEZpbGVzJwpQUk9NUFQgPSAnJFAkRycKUFNNT0RVTEVQQVRIID0gJ0M6XFxXSU5ET1dTXFxzeXN0ZW0zMlxcV2luZG93c1Bvd2VyU2hlbGxcXHYxLjBcXE1vZHVsZXNcXCcKUFVCTElDID0gJ0M6XFxVc2Vyc1xcUHVibGljJwpRVUVSWV9TVFJJTkcgPSAnJwpSRU1PVEVfQUREUiA9ICcxMjcuMC4wLjEnClJFTU9URV9IT1NUID0gJycKUkVRVUVTVF9NRVRIT0QgPSAnUE9TVCcKUlVOX01BSU4gPSAndHJ1ZScKU0NSSVBUX05BTUUgPSAnJwpTRVJWRVJfTkFNRSA9ICdGYXJoYW4nClNFUlZFUl9QT1JUID0gJzgwMDAnClNFUlZFUl9QUk9UT0NPTCA9ICdIVFRQLzEuMScKU0VSVkVSX1NPRlRXQVJFID0gJ1dTR0lTZXJ2ZXIvMC4yJwpTRVNTSU9OTkFNRSA9ICdDb25zb2xlJwpTWVNURU1EUklWRSA9ICdDOicKU1lTVEVNUk9PVCA9ICdDOlxcV0lORE9XUycKVEVNUCA9ICdDOlxcVXNlcnNcXEZBUkhBX34xXFxBcHBEYXRhXFxMb2NhbFxcVGVtcCcKVE1QID0gJ0M6XFxVc2Vyc1xcRkFSSEFffjFcXEFwcERhdGFcXExvY2FsXFxUZW1wJwpVU0VSRE9NQUlOID0gJ0ZhcmhhbicKVVNFUkRPTUFJTl9ST0FNSU5HUFJPRklMRSA9ICdGYXJoYW4nClVTRVJOQU1FID0gJ0ZhcmhhbiBGYXJhc2RhaycKVVNFUlBST0ZJTEUgPSAnQzpcXFVzZXJzXFxmYXJoYV8wMDAnClZCT1hfTVNJX0lOU1RBTExfUEFUSCA9ICdDOlxcUHJvZ3JhbSBGaWxlc1xcT3JhY2xlXFxWaXJ0dWFsQm94XFwnCldJTkRJUiA9ICdDOlxcV0lORE9XUycKd3NnaS5lcnJvcnMgPSA8X2lvLlRleHRJT1dyYXBwZXIgbmFtZT0nPHN0ZGVycj4nIG1vZGU9J3cnIGVuY29kaW5nPSd1dGYtOCc+CndzZ2kuZmlsZV93cmFwcGVyID0gJycKd3NnaS5pbnB1dCA9IDxfaW8uQnVmZmVyZWRSZWFkZXIgbmFtZT0xOTIwPgp3c2dpLm11bHRpcHJvY2VzcyA9IEZhbHNlCndzZ2kubXVsdGl0aHJlYWQgPSBUcnVlCndzZ2kucnVuX29uY2UgPSBGYWxzZQp3c2dpLnVybF9zY2hlbWUgPSAnaHR0cCcKd3NnaS52ZXJzaW9uID0gCgpTZXR0aW5nczoKVXNpbmcgc2V0dGluZ3MgbW9kdWxlIGthcGUuc2V0dGluZ3MKQUJTT0xVVEVfVVJMX09WRVJSSURFUyA9IHt9CkFETUlOUyA9IFtdCkFMTE9XRURfSE9TVFMgPSBbJ2JvdC5yZWNydWl0LmlkJywgJzEwNC4yMzYuNzYuMTYxJywgJ2xvY2FsaG9zdCcsICcxMjcuMC4wLjEnXQpBUFBFTkRfU0xBU0ggPSBUcnVlCkFVVEhFTlRJQ0FUSU9OX0JBQ0tFTkRTID0gWydkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCddCkFVVEhfUEFTU1dPUkRfVkFMSURBVE9SUyA9ICcqKioqKioqKioqKioqKioqKioqKicKQVVUSF9VU0VSX01PREVMID0gJ2F1dGguVXNlcicKQkFTRV9ESVIgPSAnRDpcXFBQTEEnCkNBQ0hFUyA9IHsnZGVmYXVsdCc6IHsnQkFDS0VORCc6ICdkamFuZ28uY29yZS5jYWNoZS5iYWNrZW5kcy5sb2NtZW0uTG9jTWVtQ2FjaGUnfX0KQ0FDSEVfTUlERExFV0FSRV9BTElBUyA9ICdkZWZhdWx0JwpDQUNIRV9NSURETEVXQVJFX0tFWV9QUkVGSVggPSAnKioqKioqKioqKioqKioqKioqKionCkNBQ0hFX01JRERMRVdBUkVfU0VDT05EUyA9IDYwMApDU1JGX0NPT0tJRV9BR0UgPSAzMTQ0OTYwMApDU1JGX0NPT0tJRV9ET01BSU4gPSBOb25lCkNTUkZfQ09PS0lFX0hUVFBPTkxZID0gRmFsc2UKQ1NSRl9DT09LSUVfTkFNRSA9ICdjc3JmdG9rZW4nCkNTUkZfQ09PS0lFX1BBVEggPSAnLycKQ1NSRl9DT09LSUVfU0VDVVJFID0gRmFsc2UKQ1NSRl9GQUlMVVJFX1ZJRVcgPSAnZGphbmdvLnZpZXdzLmNzcmYuY3NyZl9mYWlsdXJlJwpDU1JGX0hFQURFUl9OQU1FID0gJ0hUVFBfWF9DU1JGVE9LRU4nCkNTUkZfVFJVU1RFRF9PUklHSU5TID0gW10KREFUQUJBU0VTID0geydkZWZhdWx0JzogeydFTkdJTkUnOiAnZGphbmdvLmRiLmJhY2tlbmRzLnBvc3RncmVzcWxfcHN5Y29wZzInLCAnTkFNRSc6ICdrYXBlJywgJ1VTRVInOiAna2FwZScsICdQQVNTV09SRCc6ICcqKioqKioqKioqKioqKioqKioqKicsICdIT1NUJzogJ2xvY2FsaG9zdCcsICdQT1JUJzogJycsICdBVE9NSUNfUkVRVUVTVFMnOiBGYWxzZSwgJ0FVVE9DT01NSVQnOiBUcnVlLCAnQ09OTl9NQVhfQUdFJzogMCwgJ09QVElPTlMnOiB7fSwgJ1RJTUVfWk9ORSc6IE5vbmUsICdURVNUJzogeydDSEFSU0VUJzogTm9uZSwgJ0NPTExBVElPTic6IE5vbmUsICdOQU1FJzogTm9uZSwgJ01JUlJPUic6IE5vbmV9fX0KREFUQUJBU0VfUk9VVEVSUyA9IFtdCkRBVEFfVVBMT0FEX01BWF9NRU1PUllfU0laRSA9IDI2MjE0NDAKREFUQV9VUExPQURfTUFYX05VTUJFUl9GSUVMRFMgPSAxMDAwCkRBVEVUSU1FX0ZPUk1BVCA9ICdOIGosIFksIFAnCkRBVEVUSU1FX0lOUFVUX0ZPUk1BVFMgPSBbJyVZLSVtLSVkICVIOiVNOiVTJywgJyVZLSVtLSVkICVIOiVNOiVTLiVmJywgJyVZLSVtLSVkICVIOiVNJywgJyVZLSVtLSVkJywgJyVtLyVkLyVZICVIOiVNOiVTJywgJyVtLyVkLyVZICVIOiVNOiVTLiVmJywgJyVtLyVkLyVZICVIOiVNJywgJyVtLyVkLyVZJywgJyVtLyVkLyV5ICVIOiVNOiVTJywgJyVtLyVkLyV5ICVIOiVNOiVTLiVmJywgJyVtLyVkLyV5ICVIOiVNJywgJyVtLyVkLyV5J10KREFURV9GT1JNQVQgPSAnTiBqLCBZJwpEQVRFX0lOUFVUX0ZPUk1BVFMgPSBbJyVZLSVtLSVkJywgJyVtLyVkLyVZJywgJyVtLyVkLyV5JywgJyViICVkICVZJywgJyViICVkLCAlWScsICclZCAlYiAlWScsICclZCAlYiwgJVknLCAnJUIgJWQgJVknLCAnJUIgJWQsICVZJywgJyVkICVCICVZJywgJyVkICVCLCAlWSddCkRFQlVHID0gVHJ1ZQpERUJVR19QUk9QQUdBVEVfRVhDRVBUSU9OUyA9IEZhbHNlCkRFQ0lNQUxfU0VQQVJBVE9SID0gJy4nCkRFRkFVTFRfQ0hBUlNFVCA9ICd1dGYtOCcKREVGQVVMVF9DT05URU5UX1RZUEUgPSAndGV4dC9odG1sJwpERUZBVUxUX0VYQ0VQVElPTl9SRVBPUlRFUl9GSUxURVIgPSAnZGphbmdvLnZpZXdzLmRlYnVnLlNhZmVFeGNlcHRpb25SZXBvcnRlckZpbHRlcicKREVGQVVMVF9GSUxFX1NUT1JBR0UgPSAnZGphbmdvLmNvcmUuZmlsZXMuc3RvcmFnZS5GaWxlU3lzdGVtU3RvcmFnZScKREVGQVVMVF9GUk9NX0VNQUlMID0gJ3dlYm1hc3RlckBsb2NhbGhvc3QnCkRFRkFVTFRfSU5ERVhfVEFCTEVTUEFDRSA9ICcnCkRFRkFVTFRfVEFCTEVTUEFDRSA9ICcnCkRJU0FMTE9XRURfVVNFUl9BR0VOVFMgPSBbXQpFTUFJTF9CQUNLRU5EID0gJ2RqYW5nby5jb3JlLm1haWwuYmFja2VuZHMuc210cC5FbWFpbEJhY2tlbmQnCkVNQUlMX0hPU1QgPSAnbG9jYWxob3N0JwpFTUFJTF9IT1NUX1BBU1NXT1JEID0gJyoqKioqKioqKioqKioqKioqKioqJwpFTUFJTF9IT1NUX1VTRVIgPSAnJwpFTUFJTF9QT1JUID0gMjUKRU1BSUxfU1NMX0NFUlRGSUxFID0gTm9uZQpFTUFJTF9TU0xfS0VZRklMRSA9ICcqKioqKioqKioqKioqKioqKioqKicKRU1BSUxfU1VCSkVDVF9QUkVGSVggPSAnW0RqYW5nb10gJwpFTUFJTF9USU1FT1VUID0gTm9uZQpFTUFJTF9VU0VfU1NMID0gRmFsc2UKRU1BSUxfVVNFX1RMUyA9IEZhbHNlCkZJTEVfQ0hBUlNFVCA9ICd1dGYtOCcKRklMRV9VUExPQURfRElSRUNUT1JZX1BFUk1JU1NJT05TID0gTm9uZQpGSUxFX1VQTE9BRF9IQU5ETEVSUyA9IFsnZGphbmdvLmNvcmUuZmlsZXMudXBsb2FkaGFuZGxlci5NZW1vcnlGaWxlVXBsb2FkSGFuZGxlcicsICdkamFuZ28uY29yZS5maWxlcy51cGxvYWRoYW5kbGVyLlRlbXBvcmFyeUZpbGVVcGxvYWRIYW5kbGVyJ10KRklMRV9VUExPQURfTUFYX01FTU9SWV9TSVpFID0gMjYyMTQ0MApGSUxFX1VQTE9BRF9QRVJNSVNTSU9OUyA9IE5vbmUKRklMRV9VUExPQURfVEVNUF9ESVIgPSBOb25lCkZJUlNUX0RBWV9PRl9XRUVLID0gMApGSVhUVVJFX0RJUlMgPSBbXQpGT1JDRV9TQ1JJUFRfTkFNRSA9IE5vbmUKRk9STUFUX01PRFVMRV9QQVRIID0gTm9uZQpHWklQX0NPTlRFTlRfVFlQRVMgPSAKSUdOT1JBQkxFXzQwNF9VUkxTID0gW10KSU5TVEFMTEVEX0FQUFMgPSBbJ2RqYW5nby5jb250cmliLmFkbWluJywgJ2RqYW5nby5jb250cmliLmF1dGgnLCAnZGphbmdvLmNvbnRyaWIuY29udGVudHR5cGVzJywgJ2RqYW5nby5jb250cmliLnNlc3Npb25zJywgJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzJywgJ2RqYW5nby5jb250cmliLnN0YXRpY2ZpbGVzJywgJ3dlYnBhY2tfbG9hZGVyJywgJ2NvcmUnLCAncmVzdF9mcmFtZXdvcmsnLCAnZGphbmdvX25vc2UnLCAncmVzdF9mcmFtZXdvcmtfc3dhZ2dlcicsICdzaWxrJ10KSU5URVJOQUxfSVBTID0gW10KTEFOR1VBR0VTID0gWygnYWYnLCAnQWZyaWthYW5zJyksICgnYXInLCAnQXJhYmljJyksICgnYXN0JywgJ0FzdHVyaWFuJyksICgnYXonLCAnQXplcmJhaWphbmknKSwgKCdiZycsICdCdWxnYXJpYW4nKSwgKCdiZScsICdCZWxhcnVzaWFuJyksICgnYm4nLCAnQmVuZ2FsaScpLCAoJ2JyJywgJ0JyZXRvbicpLCAoJ2JzJywgJ0Jvc25pYW4nKSwgKCdjYScsICdDYXRhbGFuJyksICgnY3MnLCAnQ3plY2gnKSwgKCdjeScsICdXZWxzaCcpLCAoJ2RhJywgJ0RhbmlzaCcpLCAoJ2RlJywgJ0dlcm1hbicpLCAoJ2RzYicsICdMb3dlciBTb3JiaWFuJyksICgnZWwnLCAnR3JlZWsnKSwgKCdlbicsICdFbmdsaXNoJyksICgnZW4tYXUnLCAnQXVzdHJhbGlhbiBFbmdsaXNoJyksICgnZW4tZ2InLCAnQnJpdGlzaCBFbmdsaXNoJyksICgnZW8nLCAnRXNwZXJhbnRvJyksICgnZXMnLCAnU3BhbmlzaCcpLCAoJ2VzLWFyJywgJ0FyZ2VudGluaWFuIFNwYW5pc2gnKSwgKCdlcy1jbycsICdDb2xvbWJpYW4gU3BhbmlzaCcpLCAoJ2VzLW14JywgJ01leGljYW4gU3BhbmlzaCcpLCAoJ2VzLW5pJywgJ05pY2FyYWd1YW4gU3BhbmlzaCcpLCAoJ2VzLXZlJywgJ1ZlbmV6dWVsYW4gU3BhbmlzaCcpLCAoJ2V0JywgJ0VzdG9uaWFuJyksICgnZXUnLCAnQmFzcXVlJyksICgnZmEnLCAnUGVyc2lhbicpLCAoJ2ZpJywgJ0Zpbm5pc2gnKSwgKCdmcicsICdGcmVuY2gnKSwgKCdmeScsICdGcmlzaWFuJyksICgnZ2EnLCAnSXJpc2gnKSwgKCdnZCcsICdTY290dGlzaCBHYWVsaWMnKSwgKCdnbCcsICdHYWxpY2lhbicpLCAoJ2hlJywgJ0hlYnJldycpLCAoJ2hpJywgJ0hpbmRpJyksICgnaHInLCAnQ3JvYXRpYW4nKSwgKCdoc2InLCAnVXBwZXIgU29yYmlhbicpLCAoJ2h1JywgJ0h1bmdhcmlhbicpLCAoJ2lhJywgJ0ludGVybGluZ3VhJyksICgnaWQnLCAnSW5kb25lc2lhbicpLCAoJ2lvJywgJ0lkbycpLCAoJ2lzJywgJ0ljZWxhbmRpYycpLCAoJ2l0JywgJ0l0YWxpYW4nKSwgKCdqYScsICdKYXBhbmVzZScpLCAoJ2thJywgJ0dlb3JnaWFuJyksICgna2snLCAnS2F6YWtoJyksICgna20nLCAnS2htZXInKSwgKCdrbicsICdLYW5uYWRhJyksICgna28nLCAnS29yZWFuJyksICgnbGInLCAnTHV4ZW1ib3VyZ2lzaCcpLCAoJ2x0JywgJ0xpdGh1YW5pYW4nKSwgKCdsdicsICdMYXR2aWFuJyksICgnbWsnLCAnTWFjZWRvbmlhbicpLCAoJ21sJywgJ01hbGF5YWxhbScpLCAoJ21uJywgJ01vbmdvbGlhbicpLCAoJ21yJywgJ01hcmF0aGknKSwgKCdteScsICdCdXJtZXNlJyksICgnbmInLCAnTm9yd2VnaWFuIEJva23DpWwnKSwgKCduZScsICdOZXBhbGknKSwgKCdubCcsICdEdXRjaCcpLCAoJ25uJywgJ05vcndlZ2lhbiBOeW5vcnNrJyksICgnb3MnLCAnT3NzZXRpYycpLCAoJ3BhJywgJ1B1bmphYmknKSwgKCdwbCcsICdQb2xpc2gnKSwgKCdwdCcsICdQb3J0dWd1ZXNlJyksICgncHQtYnInLCAnQnJhemlsaWFuIFBvcnR1Z3Vlc2UnKSwgKCdybycsICdSb21hbmlhbicpLCAoJ3J1JywgJ1J1c3NpYW4nKSwgKCdzaycsICdTbG92YWsnKSwgKCdzbCcsICdTbG92ZW5pYW4nKSwgKCdzcScsICdBbGJhbmlhbicpLCAoJ3NyJywgJ1NlcmJpYW4nKSwgKCdzci1sYXRuJywgJ1NlcmJpYW4gTGF0aW4nKSwgKCdzdicsICdTd2VkaXNoJyksICgnc3cnLCAnU3dhaGlsaScpLCAoJ3RhJywgJ1RhbWlsJyksICgndGUnLCAnVGVsdWd1JyksICgndGgnLCAnVGhhaScpLCAoJ3RyJywgJ1R1cmtpc2gnKSwgKCd0dCcsICdUYXRhcicpLCAoJ3VkbScsICdVZG11cnQnKSwgKCd1aycsICdVa3JhaW5pYW4nKSwgKCd1cicsICdVcmR1JyksICgndmknLCAnVmlldG5hbWVzZScpLCAoJ3poLWhhbnMnLCAnU2ltcGxpZmllZCBDaGluZXNlJyksICgnemgtaGFudCcsICdUcmFkaXRpb25hbCBDaGluZXNlJyldCkxBTkdVQUdFU19CSURJID0gWydoZScsICdhcicsICdmYScsICd1ciddCkxBTkdVQUdFX0NPREUgPSAnZW4tdXMnCkxBTkdVQUdFX0NPT0tJRV9BR0UgPSBOb25lCkxBTkdVQUdFX0NPT0tJRV9ET01BSU4gPSBOb25lCkxBTkdVQUdFX0NPT0tJRV9OQU1FID0gJ2RqYW5nb19sYW5ndWFnZScKTEFOR1VBR0VfQ09PS0lFX1BBVEggPSAnLycKTE9DQUxFX1BBVEhTID0gW10KTE9HR0lORyA9IHt9CkxPR0dJTkdfQ09ORklHID0gJ2xvZ2dpbmcuY29uZmlnLmRpY3RDb25maWcnCkxPR0lOX1JFRElSRUNUX1VSTCA9ICcvYWNjb3VudHMvcHJvZmlsZS8nCkxPR0lOX1VSTCA9ICcvYWNjb3VudHMvbG9naW4vJwpMT0dPVVRfUkVESVJFQ1RfVVJMID0gTm9uZQpNQU5BR0VSUyA9IFtdCk1FRElBX1JPT1QgPSAnL2hvbWUvZmlsZXMnCk1FRElBX1VSTCA9ICcvZmlsZXMvJwpNRVNTQUdFX1NUT1JBR0UgPSAnZGphbmdvLmNvbnRyaWIubWVzc2FnZXMuc3RvcmFnZS5mYWxsYmFjay5GYWxsYmFja1N0b3JhZ2UnCk1JRERMRVdBUkUgPSBbJ2RqYW5nby5taWRkbGV3YXJlLnNlY3VyaXR5LlNlY3VyaXR5TWlkZGxld2FyZScsICdkamFuZ28uY29udHJpYi5zZXNzaW9ucy5taWRkbGV3YXJlLlNlc3Npb25NaWRkbGV3YXJlJywgJ2RqYW5nby5taWRkbGV3YXJlLmNvbW1vbi5Db21tb25NaWRkbGV3YXJlJywgJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJywgJ2RqYW5nby5jb250cmliLmF1dGgubWlkZGxld2FyZS5BdXRoZW50aWNhdGlvbk1pZGRsZXdhcmUnLCAnZGphbmdvLmNvbnRyaWIubWVzc2FnZXMubWlkZGxld2FyZS5NZXNzYWdlTWlkZGxld2FyZScsICdkamFuZ28ubWlkZGxld2FyZS5jbGlja2phY2tpbmcuWEZyYW1lT3B0aW9uc01pZGRsZXdhcmUnLCAnc2lsay5taWRkbGV3YXJlLlNpbGt5TWlkZGxld2FyZSddCk1JRERMRVdBUkVfQ0xBU1NFUyA9IFsnZGphbmdvLm1pZGRsZXdhcmUuY29tbW9uLkNvbW1vbk1pZGRsZXdhcmUnLCAnZGphbmdvLm1pZGRsZXdhcmUuY3NyZi5Dc3JmVmlld01pZGRsZXdhcmUnXQpNSUdSQVRJT05fTU9EVUxFUyA9IHt9Ck1PTlRIX0RBWV9GT1JNQVQgPSAnRiBqJwpOT1NFX0FSR1MgPSBbJy0td2l0aC1jb3ZlcmFnZScsICctLWNvdmVyLXBhY2thZ2U9Y29yZS52aWV3cycsICctLWNvdmVyLWh0bWwtZGlyPXRlc3QvYmFja2VuZCcsICctLWNvdmVyLWh0bWwnXQpOVU1CRVJfR1JPVVBJTkcgPSAwClBBU1NXT1JEX0hBU0hFUlMgPSAnKioqKioqKioqKioqKioqKioqKionClBBU1NXT1JEX1JFU0VUX1RJTUVPVVRfREFZUyA9ICcqKioqKioqKioqKioqKioqKioqKicKUFJFUEVORF9XV1cgPSBGYWxzZQpSRVNUX0ZSQU1FV09SSyA9IHsnREVGQVVMVF9QRVJNSVNTSU9OX0NMQVNTRVMnOiBbJ3Jlc3RfZnJhbWV3b3JrLnBlcm1pc3Npb25zLkRqYW5nb01vZGVsUGVybWlzc2lvbnNPckFub25SZWFkT25seSddfQpST09UX1VSTENPTkYgPSAna2FwZS51cmxzJwpSVU5OSU5HX0RFVlNFUlZFUiA9IFRydWUKU0VDUkVUX0tFWSA9ICcqKioqKioqKioqKioqKioqKioqKicKU0VDVVJFX0JST1dTRVJfWFNTX0ZJTFRFUiA9IEZhbHNlClNFQ1VSRV9DT05URU5UX1RZUEVfTk9TTklGRiA9IEZhbHNlClNFQ1VSRV9IU1RTX0lOQ0xVREVfU1VCRE9NQUlOUyA9IEZhbHNlClNFQ1VSRV9IU1RTX1NFQ09ORFMgPSAwClNFQ1VSRV9QUk9YWV9TU0xfSEVBREVSID0gTm9uZQpTRUNVUkVfUkVESVJFQ1RfRVhFTVBUID0gW10KU0VDVVJFX1NTTF9IT1NUID0gTm9uZQpTRUNVUkVfU1NMX1JFRElSRUNUID0gRmFsc2UKU0VSVkVSX0VNQUlMID0gJ3Jvb3RAbG9jYWxob3N0JwpTRVNTSU9OX0NBQ0hFX0FMSUFTID0gJ2RlZmF1bHQnClNFU1NJT05fQ09PS0lFX0FHRSA9IDEyMDk2MDAKU0VTU0lPTl9DT09LSUVfRE9NQUlOID0gTm9uZQpTRVNTSU9OX0NPT0tJRV9IVFRQT05MWSA9IEZhbHNlClNFU1NJT05fQ09PS0lFX05BTUUgPSAnc2Vzc2lvbmlkJwpTRVNTSU9OX0NPT0tJRV9QQVRIID0gJy8nClNFU1NJT05fQ09PS0lFX1NFQ1VSRSA9IEZhbHNlClNFU1NJT05fRU5HSU5FID0gJ2RqYW5nby5jb250cmliLnNlc3Npb25zLmJhY2tlbmRzLmRiJwpTRVNTSU9OX0VYUElSRV9BVF9CUk9XU0VSX0NMT1NFID0gRmFsc2UKU0VTU0lPTl9GSUxFX1BBVEggPSBOb25lClNFU1NJT05fU0FWRV9FVkVSWV9SRVFVRVNUID0gRmFsc2UKU0VTU0lPTl9TRVJJQUxJWkVSID0gJ2RqYW5nby5jb250cmliLnNlc3Npb25zLnNlcmlhbGl6ZXJzLkpTT05TZXJpYWxpemVyJwpTRVRUSU5HU19NT0RVTEUgPSAna2FwZS5zZXR0aW5ncycKU0hPUlRfREFURVRJTUVfRk9STUFUID0gJ20vZC9ZIFAnClNIT1JUX0RBVEVfRk9STUFUID0gJ20vZC9ZJwpTSUdOSU5HX0JBQ0tFTkQgPSAnZGphbmdvLmNvcmUuc2lnbmluZy5UaW1lc3RhbXBTaWduZXInClNJTEVOQ0VEX1NZU1RFTV9DSEVDS1MgPSBbXQpTVEFUSUNGSUxFU19ESVJTID0gJ0Q6XFxQUExBXFxhc3NldHMnClNUQVRJQ0ZJTEVTX0ZJTkRFUlMgPSBbJ2RqYW5nby5jb250cmliLnN0YXRpY2ZpbGVzLmZpbmRlcnMuRmlsZVN5c3RlbUZpbmRlcicsICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcy5maW5kZXJzLkFwcERpcmVjdG9yaWVzRmluZGVyJ10KU1RBVElDRklMRVNfU1RPUkFHRSA9ICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcy5zdG9yYWdlLlN0YXRpY0ZpbGVzU3RvcmFnZScKU1RBVElDX1JPT1QgPSAnL2hvbWUvYXNzZXRzJwpTVEFUSUNfVVJMID0gJy9hc3NldHMvJwpURU1QTEFURVMgPSBbeydCQUNLRU5EJzogJ2RqYW5nby50ZW1wbGF0ZS5iYWNrZW5kcy5kamFuZ28uRGphbmdvVGVtcGxhdGVzJywgJ0RJUlMnOiBbXSwgJ0FQUF9ESVJTJzogVHJ1ZSwgJ09QVElPTlMnOiB7J2NvbnRleHRfcHJvY2Vzc29ycyc6IFsnZGphbmdvLnRlbXBsYXRlLmNvbnRleHRfcHJvY2Vzc29ycy5kZWJ1ZycsICdkamFuZ28udGVtcGxhdGUuY29udGV4dF9wcm9jZXNzb3JzLnJlcXVlc3QnLCAnZGphbmdvLmNvbnRyaWIuYXV0aC5jb250ZXh0X3Byb2Nlc3NvcnMuYXV0aCcsICdkamFuZ28uY29udHJpYi5tZXNzYWdlcy5jb250ZXh0X3Byb2Nlc3NvcnMubWVzc2FnZXMnXX19XQpURVNUX05PTl9TRVJJQUxJWkVEX0FQUFMgPSBbXQpURVNUX1JVTk5FUiA9ICdkamFuZ29fbm9zZS5Ob3NlVGVzdFN1aXRlUnVubmVyJwpUSE9VU0FORF9TRVBBUkFUT1IgPSAnLCcKVElNRV9GT1JNQVQgPSAnUCcKVElNRV9JTlBVVF9GT1JNQVRTID0gWyclSDolTTolUycsICclSDolTTolUy4lZicsICclSDolTSddClRJTUVfWk9ORSA9ICdVVEMnClVTRV9FVEFHUyA9IEZhbHNlClVTRV9JMThOID0gVHJ1ZQpVU0VfTDEwTiA9IFRydWUKVVNFX1RIT1VTQU5EX1NFUEFSQVRPUiA9IEZhbHNlClVTRV9UWiA9IFRydWUKVVNFX1hfRk9SV0FSREVEX0hPU1QgPSBGYWxzZQpVU0VfWF9GT1JXQVJERURfUE9SVCA9IEZhbHNlCldFQlBBQ0tfTE9BREVSID0geydERUZBVUxUJzogeydCVU5ETEVfRElSX05BTUUnOiAnYnVuZGxlcy8nLCAnU1RBVFNfRklMRSc6ICdEOlxcUFBMQVxcd2VicGFjay1zdGF0cy5qc29uJ319CldTR0lfQVBQTElDQVRJT04gPSAna2FwZS53c2dpLmFwcGxpY2F0aW9uJwpYX0ZSQU1FX09QVElPTlMgPSAnU0FNRU9SSUdJTicKWUVBUl9NT05USF9GT1JNQVQgPSAnRiBZJwoKCllvdSdyZSBzZWVpbmcgdGhpcyBlcnJvciBiZWNhdXNlIHlvdSBoYXZlIERFQlVHID0gVHJ1ZSBpbiB5b3VyCkRqYW5nbyBzZXR0aW5ncyBmaWxlLiBDaGFuZ2UgdGhhdCB0byBGYWxzZSwgYW5kIERqYW5nbyB3aWxsCmRpc3BsYXkgYSBzdGFuZGFyZCBwYWdlIGdlbmVyYXRlZCBieSB0aGUgaGFuZGxlciBmb3IgdGhpcyBzdGF0dXMgY29kZS4KCg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/plain\"}" - } -}, -{ - "model": "silk.response", - "pk": "fc8d46a7-f085-49a2-bfe6-8dae9cca8121", - "fields": { - "request": "a27b9ba2-caf2-4a2a-beb4-971b01622835", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "fcafca44-9acf-42eb-bdc1-7408f352cc31", - "fields": { - "request": "8b5bf8a2-1a56-4903-bba4-e22bbb81e57c", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "fd7892f3-8dec-4c1f-9893-eb38dc5c92fb", - "fields": { - "request": "59e95cae-0d6d-474c-955e-42ab4de1d36c", - "status_code": 200, - "raw_body": "CjwhRE9DVFlQRSBodG1sPgo8aHRtbD4KPGhlYWQ+CiAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogIDx0aXRsZT5Td2FnZ2VyIFVJPC90aXRsZT4KICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2ltYWdlcy9mYXZpY29uLTMyeDMyLnBuZyIgc2l6ZXM9IjMyeDMyIiAvPgogIDxsaW5rIHJlbD0iaWNvbiIgdHlwZT0iaW1hZ2UvcG5nIiBocmVmPSIvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvaW1hZ2VzL2Zhdmljb24tMTZ4MTYucG5nIiBzaXplcz0iMTZ4MTYiIC8+CiAgPGxpbmsgaHJlZj0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2Nzcy90eXBvZ3JhcGh5LmNzcycgbWVkaWE9J3NjcmVlbicgcmVsPSdzdHlsZXNoZWV0JyB0eXBlPSd0ZXh0L2NzcycvPgogIDxsaW5rIGhyZWY9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9jc3MvcmVzZXQuY3NzJyBtZWRpYT0nc2NyZWVuJyByZWw9J3N0eWxlc2hlZXQnIHR5cGU9J3RleHQvY3NzJy8+CiAgPGxpbmsgaHJlZj0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2Nzcy9zY3JlZW4uY3NzJyBtZWRpYT0nc2NyZWVuJyByZWw9J3N0eWxlc2hlZXQnIHR5cGU9J3RleHQvY3NzJy8+CiAgPGxpbmsgaHJlZj0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2Nzcy9yZXNldC5jc3MnIG1lZGlhPSdwcmludCcgcmVsPSdzdHlsZXNoZWV0JyB0eXBlPSd0ZXh0L2NzcycvPgogIDxsaW5rIGhyZWY9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9jc3MvcHJpbnQuY3NzJyBtZWRpYT0ncHJpbnQnIHJlbD0nc3R5bGVzaGVldCcgdHlwZT0ndGV4dC9jc3MnLz4KICAKICAKICAKCiAgPHNjcmlwdCBzcmM9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9saWIvb2JqZWN0LWFzc2lnbi1wb2xseWZpbGwuanMnIHR5cGU9J3RleHQvamF2YXNjcmlwdCc+PC9zY3JpcHQ+CiAgPHNjcmlwdCBzcmM9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9saWIvanF1ZXJ5LTEuOC4wLm1pbi5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4KICA8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2xpYi9qcXVlcnkuc2xpZGV0by5taW4uanMnIHR5cGU9J3RleHQvamF2YXNjcmlwdCc+PC9zY3JpcHQ+CiAgPHNjcmlwdCBzcmM9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9saWIvanF1ZXJ5LndpZ2dsZS5taW4uanMnIHR5cGU9J3RleHQvamF2YXNjcmlwdCc+PC9zY3JpcHQ+CiAgPHNjcmlwdCBzcmM9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9saWIvanF1ZXJ5LmJhLWJicS5taW4uanMnIHR5cGU9J3RleHQvamF2YXNjcmlwdCc+PC9zY3JpcHQ+CiAgPHNjcmlwdCBzcmM9Jy9hc3NldHMvcmVzdF9mcmFtZXdvcmtfc3dhZ2dlci9saWIvaGFuZGxlYmFycy0yLjAuMC5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4KICA8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2xpYi9qcy15YW1sLm1pbi5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4KICA8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2xpYi9sb2Rhc2gubWluLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgogIDxzY3JpcHQgc3JjPScvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvbGliL2JhY2tib25lLW1pbi5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4KICA8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL3N3YWdnZXItdWkubWluLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgogIDxzY3JpcHQgc3JjPScvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvbGliL2hpZ2hsaWdodC45LjEuMC5wYWNrLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgogIDxzY3JpcHQgc3JjPScvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvbGliL2hpZ2hsaWdodC45LjEuMC5wYWNrX2V4dGVuZGVkLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgogIDxzY3JpcHQgc3JjPScvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvbGliL2pzb25lZGl0b3IubWluLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgogIDxzY3JpcHQgc3JjPScvYXNzZXRzL3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXIvbGliL21hcmtlZC5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4KICA8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2xpYi9zd2FnZ2VyLW9hdXRoLmpzJyB0eXBlPSd0ZXh0L2phdmFzY3JpcHQnPjwvc2NyaXB0PgoKICA8IS0tIFNvbWUgYmFzaWMgdHJhbnNsYXRpb25zIC0tPgogIDwhLS0gPHNjcmlwdCBzcmM9J2xhbmcvdHJhbnNsYXRvci5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4gLS0+CiAgPCEtLSA8c2NyaXB0IHNyYz0nbGFuZy9ydS5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4gLS0+CiAgPCEtLSA8c2NyaXB0IHNyYz0nbGFuZy9lbi5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0Jz48L3NjcmlwdD4gLS0+Cgo8L2hlYWQ+Cgo8Ym9keSBjbGFzcz0ic3dhZ2dlci1zZWN0aW9uIj4KCjxkaXYgaWQ9J2hlYWRlcic+CiAgPGRpdiBjbGFzcz0ic3dhZ2dlci11aS13cmFwIj4KICAgIAogICAgICA8YSBpZD0ibG9nbyIgaHJlZj0iaHR0cDovL3N3YWdnZXIuaW8iPjxpbWcgY2xhc3M9ImxvZ29fX2ltZyIgYWx0PSJzd2FnZ2VyIiBoZWlnaHQ9IjMwIiB3aWR0aD0iMzAiIHNyYz0iL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2ltYWdlcy9sb2dvX3NtYWxsLnBuZyIgLz48c3BhbiBjbGFzcz0ibG9nb19fdGl0bGUiPnN3YWdnZXI8L3NwYW4+PC9hPgogICAgCiAgICA8Zm9ybSBpZD0nYXBpX3NlbGVjdG9yJz4KICAgICAgPGlucHV0IGlkPSJpbnB1dF9iYXNlVXJsIiBuYW1lPSJiYXNlVXJsIiB0eXBlPSJoaWRkZW4iLz4KICAgICAgCiAgICAgICAgPGlucHV0IHR5cGU9J2hpZGRlbicgbmFtZT0nY3NyZm1pZGRsZXdhcmV0b2tlbicgdmFsdWU9J21pMkIwWm5hTnpOVDNNNjJxNUk1M0JJa0RqVXpDc0xWTmdWZG5qSldubXBjUDR3ZGl5UWRyMnpEYUhsa2VWUmInIC8+CiAgICAgICAgCiAgICAgICAgCiAgICAgICAgICAKICAgICAgICAKICAgICAgCgogICAgICAKICAgICAgICAKICAgICAgICAgIDxkaXYgY2xhc3M9J2lucHV0Jz48YSBpZD0iYXV0aCIgY2xhc3M9ImhlYWRlcl9fYnRuIiBocmVmPSIvYWNjb3VudHMvbG9naW4vP25leHQ9L2FwaSIgZGF0YS1zdy10cmFuc2xhdGU+RGphbmdvIExvZ2luPC9hPjwvZGl2PgogICAgICAgIAogICAgICAKICAgICAgPGRpdiBpZD0nYXV0aF9jb250YWluZXInPjwvZGl2PgogICAgPC9mb3JtPgogIDwvZGl2Pgo8L2Rpdj4KCgo8ZGl2IGlkPSJtZXNzYWdlLWJhciIgY2xhc3M9InN3YWdnZXItdWktd3JhcCIgZGF0YS1zdy10cmFuc2xhdGU+Jm5ic3A7PC9kaXY+CjxkaXYgaWQ9InN3YWdnZXItdWktY29udGFpbmVyIiBjbGFzcz0ic3dhZ2dlci11aS13cmFwIj48L2Rpdj4KCjxzY3JpcHQgaWQ9ImRycy1zZXR0aW5ncyIgdHlwZT0iYXBwbGljYXRpb24vanNvbiI+CnsiYXBpc1NvcnRlciI6IG51bGwsICJkb2NFeHBhbnNpb24iOiBudWxsLCAianNvbkVkaXRvciI6IGZhbHNlLCAib3BlcmF0aW9uc1NvcnRlciI6IG51bGwsICJzaG93UmVxdWVzdEhlYWRlcnMiOiBmYWxzZSwgInN1cHBvcnRlZFN1Ym1pdE1ldGhvZHMiOiBbImdldCIsICJwb3N0IiwgInB1dCIsICJkZWxldGUiLCAicGF0Y2giXX0KPC9zY3JpcHQ+Cgo8c2NyaXB0IHNyYz0nL2Fzc2V0cy9yZXN0X2ZyYW1ld29ya19zd2FnZ2VyL2luaXQuanMnIHR5cGU9J3RleHQvamF2YXNjcmlwdCc+PC9zY3JpcHQ+CgoKCjwvYm9keT4KPC9odG1sPgo=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Allow\": \"GET, HEAD, OPTIONS\", \"Vary\": \"Accept\"}" - } -}, -{ - "model": "silk.response", - "pk": "fe16ba27-c2d0-4ecd-886c-f911ee8787c7", - "fields": { - "request": "d42d8683-0db6-4cf9-8ad0-6afdc83d25c0", - "status_code": 302, - "raw_body": "", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\", \"Location\": \"/admin/\", \"Last-Modified\": \"Mon, 27 Mar 2017 14:52:05 GMT\", \"Expires\": \"Mon, 27 Mar 2017 14:52:05 GMT\", \"Cache-Control\": \"max-age=0, no-cache, no-store, must-revalidate\", \"Vary\": \"Cookie\"}" - } -}, -{ - "model": "silk.response", - "pk": "fe54d0fb-1870-4985-9e7b-e788fae9417d", - "fields": { - "request": "5a24c8ef-12a7-4dab-b868-f831afee6008", - "status_code": 404, - "raw_body": "eyJkZXRhaWwiOiJOb3QgZm91bmQuIn0=", - "body": "{\n \"detail\": \"Not found.\"\n}", - "encoded_headers": "{\"Content-Type\": \"application/json\", \"Allow\": \"POST, OPTIONS\", \"Vary\": \"Accept\"}" - } -}, -{ - "model": "silk.response", - "pk": "fe611f0d-140b-4077-843f-4132068feb8a", - "fields": { - "request": "379ad3a5-58a2-47c7-9748-d2bb57251162", - "status_code": 200, - "raw_body": "CgoKPCFET0NUWVBFIGh0bWw+CjxodG1sPgogIDxoZWFkPgogICAgPG1ldGEgY2hhcnNldD0iVVRGLTgiPgogICAgPHRpdGxlPll1ayBDYXJpIFRlbXBhdCBLYXBlIDopPC90aXRsZT4KICAgIDxsaW5rIHJlbD0ic3R5bGVzaGVldCIgaHJlZj0iL2Fzc2V0cy9jc3MvY3VzdG9tLmNzcyIvPgogICAgPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSIvL2NkbmpzLmNsb3VkZmxhcmUuY29tL2FqYXgvbGlicy9zZW1hbnRpYy11aS8yLjIuMi9zZW1hbnRpYy5taW4uY3NzIi8+CiAgICA8bGluayByZWw9Imljb24iIHR5cGU9ImltYWdlL3BuZyIgaHJlZj0iL2Fzc2V0cy9pbWcvbG9nby1zbS5wbmciIHNpemVzPSIzMngzMiIgLz4KICA8L2hlYWQ+CgogIDxib2R5PgogICAgPGRpdiBpZD0icmVhY3QtYXBwIj48L2Rpdj4KICAgIDxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0IiBzcmM9Ii9hc3NldHMvYnVuZGxlcy9tYWluLTY3N2VkZmIwMTdiNjM3NmQ0YWY2LmpzIiBhc3luYyBkZWZlcj0idHJ1ZSI+PC9zY3JpcHQ+CiAgPC9ib2R5Pgo8L2h0bWw+Cg==", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/html; charset=utf-8\"}" - } -}, -{ - "model": "silk.response", - "pk": "fee52d6b-b001-4b32-94a3-0c1a929beb44", - "fields": { - "request": "79d47150-fcb7-4983-b1e1-625a17c96176", - "status_code": 500, - "raw_body": "QXR0cmlidXRlRXJyb3IgYXQgL2FwaS9zdHVkZW50cy8yL2Jvb2ttYXJrZWQtdmFjYW5jaWVzLwonbGlzdCcgb2JqZWN0IGhhcyBubyBhdHRyaWJ1dGUgJ2lkJwoKUmVxdWVzdCBNZXRob2Q6IFBPU1QKUmVxdWVzdCBVUkw6IGh0dHA6Ly8xMjcuMC4wLjE6ODAwMC9hcGkvc3R1ZGVudHMvMi9ib29rbWFya2VkLXZhY2FuY2llcy8KRGphbmdvIFZlcnNpb246IDEuMTAuNQpQeXRob24gRXhlY3V0YWJsZTogQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXHB5dGhvbi5leGUKUHl0aG9uIFZlcnNpb246IDMuNi4wClB5dGhvbiBQYXRoOiBbJ0Q6XFxQUExBJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXHB5dGhvbjM2LnppcCcsICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyXFxETExzJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXGxpYicsICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyJywgJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXGxpYlxcc2l0ZS1wYWNrYWdlcyddClNlcnZlciB0aW1lOiBNb24sIDI3IE1hciAyMDE3IDE1OjU1OjU1ICswMDAwCkluc3RhbGxlZCBBcHBsaWNhdGlvbnM6ClsnZGphbmdvLmNvbnRyaWIuYWRtaW4nLAogJ2RqYW5nby5jb250cmliLmF1dGgnLAogJ2RqYW5nby5jb250cmliLmNvbnRlbnR0eXBlcycsCiAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMnLAogJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzJywKICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcycsCiAnd2VicGFja19sb2FkZXInLAogJ2NvcmUnLAogJ3Jlc3RfZnJhbWV3b3JrJywKICdkamFuZ29fbm9zZScsCiAncmVzdF9mcmFtZXdvcmtfc3dhZ2dlcicsCiAnc2lsayddCkluc3RhbGxlZCBNaWRkbGV3YXJlOgpbJ2RqYW5nby5taWRkbGV3YXJlLnNlY3VyaXR5LlNlY3VyaXR5TWlkZGxld2FyZScsCiAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMubWlkZGxld2FyZS5TZXNzaW9uTWlkZGxld2FyZScsCiAnZGphbmdvLm1pZGRsZXdhcmUuY29tbW9uLkNvbW1vbk1pZGRsZXdhcmUnLAogJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5hdXRoLm1pZGRsZXdhcmUuQXV0aGVudGljYXRpb25NaWRkbGV3YXJlJywKICdkamFuZ28uY29udHJpYi5tZXNzYWdlcy5taWRkbGV3YXJlLk1lc3NhZ2VNaWRkbGV3YXJlJywKICdkamFuZ28ubWlkZGxld2FyZS5jbGlja2phY2tpbmcuWEZyYW1lT3B0aW9uc01pZGRsZXdhcmUnLAogJ3NpbGsubWlkZGxld2FyZS5TaWxreU1pZGRsZXdhcmUnXQoKClRyYWNlYmFjazogIAoKRmlsZSAiQzpcVXNlcnNcZmFyaGFfMDAwXEFwcERhdGFcTG9jYWxcUHJvZ3JhbXNcUHl0aG9uXFB5dGhvbjM2LTMyXGxpYlxzaXRlLXBhY2thZ2VzXGRqYW5nb1xjb3JlXGhhbmRsZXJzXGV4Y2VwdGlvbi5weSIgaW4gaW5uZXIKICAzOS4gICAgICAgICAgICAgcmVzcG9uc2UgPSBnZXRfcmVzcG9uc2UocmVxdWVzdCkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cY29yZVxoYW5kbGVyc1xiYXNlLnB5IiBpbiBfZ2V0X3Jlc3BvbnNlCiAgMTg3LiAgICAgICAgICAgICAgICAgcmVzcG9uc2UgPSBzZWxmLnByb2Nlc3NfZXhjZXB0aW9uX2J5X21pZGRsZXdhcmUoZSwgcmVxdWVzdCkKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cY29yZVxoYW5kbGVyc1xiYXNlLnB5IiBpbiBfZ2V0X3Jlc3BvbnNlCiAgMTg1LiAgICAgICAgICAgICAgICAgcmVzcG9uc2UgPSB3cmFwcGVkX2NhbGxiYWNrKHJlcXVlc3QsICpjYWxsYmFja19hcmdzLCAqKmNhbGxiYWNrX2t3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xkamFuZ29cdmlld3NcZGVjb3JhdG9yc1xjc3JmLnB5IiBpbiB3cmFwcGVkX3ZpZXcKICA1OC4gICAgICAgICByZXR1cm4gdmlld19mdW5jKCphcmdzLCAqKmt3YXJncykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3c2V0cy5weSIgaW4gdmlldwogIDgzLiAgICAgICAgICAgICByZXR1cm4gc2VsZi5kaXNwYXRjaChyZXF1ZXN0LCAqYXJncywgKiprd2FyZ3MpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNccmVzdF9mcmFtZXdvcmtcdmlld3MucHkiIGluIGRpc3BhdGNoCiAgNDgzLiAgICAgICAgICAgICByZXNwb25zZSA9IHNlbGYuaGFuZGxlX2V4Y2VwdGlvbihleGMpCgpGaWxlICJDOlxVc2Vyc1xmYXJoYV8wMDBcQXBwRGF0YVxMb2NhbFxQcm9ncmFtc1xQeXRob25cUHl0aG9uMzYtMzJcbGliXHNpdGUtcGFja2FnZXNccmVzdF9mcmFtZXdvcmtcdmlld3MucHkiIGluIGhhbmRsZV9leGNlcHRpb24KICA0NDMuICAgICAgICAgICAgIHNlbGYucmFpc2VfdW5jYXVnaHRfZXhjZXB0aW9uKGV4YykKCkZpbGUgIkM6XFVzZXJzXGZhcmhhXzAwMFxBcHBEYXRhXExvY2FsXFByb2dyYW1zXFB5dGhvblxQeXRob24zNi0zMlxsaWJcc2l0ZS1wYWNrYWdlc1xyZXN0X2ZyYW1ld29ya1x2aWV3cy5weSIgaW4gZGlzcGF0Y2gKICA0ODAuICAgICAgICAgICAgIHJlc3BvbnNlID0gaGFuZGxlcihyZXF1ZXN0LCAqYXJncywgKiprd2FyZ3MpCgpGaWxlICJEOlxQUExBXGNvcmVcdmlld3NcYWNjb3VudHMucHkiIGluIGJvb2ttYXJrX3ZhY2FuY2llcwogIDMwLiAgICAgICAgIHZhY2FuY3kgPSBnZXRfb2JqZWN0X29yXzQwNChWYWNhbmN5Lm9iamVjdHMuYWxsKCksIHBrPXJlcXVlc3QuZGF0YS5pZCkKCkV4Y2VwdGlvbiBUeXBlOiBBdHRyaWJ1dGVFcnJvciBhdCAvYXBpL3N0dWRlbnRzLzIvYm9va21hcmtlZC12YWNhbmNpZXMvCkV4Y2VwdGlvbiBWYWx1ZTogJ2xpc3QnIG9iamVjdCBoYXMgbm8gYXR0cmlidXRlICdpZCcKUmVxdWVzdCBpbmZvcm1hdGlvbjoKVVNFUjoga2FwZQoKR0VUOiBObyBHRVQgZGF0YQoKUE9TVDogTm8gUE9TVCBkYXRhCgpGSUxFUzogTm8gRklMRVMgZGF0YQoKQ09PS0lFUzoKc2Vzc2lvbmlkID0gJ2JsdDg3N2c1ZmptdWN4eTNkZDV1eGNpemF2YjlvcG92Jwpjc3JmdG9rZW4gPSAnMUVFUDJTd0t0MUs5UWJXbkZQU3lXUElpYnRPN01BYVZxS0xFZW9vRmdZVnlkallQb2duME93cDI5b1VXNkE2SycKCk1FVEE6CkFMTFVTRVJTUFJPRklMRSA9ICdDOlxcUHJvZ3JhbURhdGEnCkFQUERBVEEgPSAnQzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmcnCkNPTU1PTlBST0dSQU1GSUxFUyA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcQ29tbW9uIEZpbGVzJwpDT01NT05QUk9HUkFNRklMRVMoWDg2KSA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcQ29tbW9uIEZpbGVzJwpDT01NT05QUk9HUkFNVzY0MzIgPSAnQzpcXFByb2dyYW0gRmlsZXNcXENvbW1vbiBGaWxlcycKQ09NUFVURVJOQU1FID0gJ0ZBUkhBTicKQ09NU1BFQyA9ICdDOlxcV0lORE9XU1xcc3lzdGVtMzJcXGNtZC5leGUnCkNPTlRFTlRfTEVOR1RIID0gJzE0NycKQ09OVEVOVF9UWVBFID0gJ2FwcGxpY2F0aW9uL2pzb24nCkNTUkZfQ09PS0lFID0gJzFFRVAyU3dLdDFLOVFiV25GUFN5V1BJaWJ0TzdNQWFWcUtMRWVvb0ZnWVZ5ZGpZUG9nbjBPd3AyOW9VVzZBNksnCkRKQU5HT19TRVRUSU5HU19NT0RVTEUgPSAna2FwZS5zZXR0aW5ncycKRlBTX0JST1dTRVJfQVBQX1BST0ZJTEVfU1RSSU5HID0gJ0ludGVybmV0IEV4cGxvcmVyJwpGUFNfQlJPV1NFUl9VU0VSX1BST0ZJTEVfU1RSSU5HID0gJ0RlZmF1bHQnCkZQX05PX0hPU1RfQ0hFQ0sgPSAnTk8nCkdBVEVXQVlfSU5URVJGQUNFID0gJ0NHSS8xLjEnCkhPTUVEUklWRSA9ICdDOicKSE9NRVBBVEggPSAnXFxVc2Vyc1xcZmFyaGFfMDAwJwpIVFRQX0FDQ0VQVCA9ICdhcHBsaWNhdGlvbi9qc29uJwpIVFRQX0FDQ0VQVF9FTkNPRElORyA9ICdnemlwLCBkZWZsYXRlLCBicicKSFRUUF9BQ0NFUFRfTEFOR1VBR0UgPSAnaWQtSUQsaWQ7cT0wLjgsZW4tVVM7cT0wLjYsZW47cT0wLjQnCkhUVFBfQ09OTkVDVElPTiA9ICdrZWVwLWFsaXZlJwpIVFRQX0NPT0tJRSA9ICdzZXNzaW9uaWQ9Ymx0ODc3ZzVmam11Y3h5M2RkNXV4Y2l6YXZiOW9wb3Y7IGNzcmZ0b2tlbj0xRUVQMlN3S3QxSzlRYlduRlBTeVdQSWlidE83TUFhVnFLTEVlb29GZ1lWeWRqWVBvZ24wT3dwMjlvVVc2QTZLJwpIVFRQX0hPU1QgPSAnMTI3LjAuMC4xOjgwMDAnCkhUVFBfT1JJR0lOID0gJ2h0dHA6Ly8xMjcuMC4wLjE6ODAwMCcKSFRUUF9SRUZFUkVSID0gJ2h0dHA6Ly8xMjcuMC4wLjE6ODAwMC9hcGknCkhUVFBfVVNFUl9BR0VOVCA9ICdNb3ppbGxhLzUuMCAoV2luZG93cyBOVCAxMC4wOyBXT1c2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzU2LjAuMjkyNC44NyBTYWZhcmkvNTM3LjM2JwpIVFRQX1hfQ1NSRlRPS0VOID0gJ2pxOTFCdUY1ZTVSN1NqTUZSYzJUTmZ2V1U4bERPNnd5SXdnUU4weDAxMjJ3ZnJPN0FEeGxGV2NHUzNyczg2c24nCkxPQ0FMQVBQREFUQSA9ICdDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWwnCkxPR09OU0VSVkVSID0gJ1xcXFxGQVJIQU4nCk5VTUJFUl9PRl9QUk9DRVNTT1JTID0gJzInCk9ORURSSVZFID0gJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxPbmVEcml2ZScKT1MgPSAnV2luZG93c19OVCcKUEFUSCA9ICdDOlxcUHJvZ3JhbURhdGFcXE9yYWNsZVxcSmF2YVxcamF2YXBhdGg7QzpcXFByb2dyYW0gRmlsZXNcXEhhc2tlbGxcXGJpbjtDOlxcUHJvZ3JhbSBGaWxlc1xcSGFza2VsbCBQbGF0Zm9ybVxcNy4xMC4zXFxsaWJcXGV4dHJhbGlic1xcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxIYXNrZWxsIFBsYXRmb3JtXFw3LjEwLjNcXGJpbjtDOlxcV0lORE9XU1xcc3lzdGVtMzI7QzpcXFdJTkRPV1M7QzpcXFdJTkRPV1NcXFN5c3RlbTMyXFxXYmVtO0M6XFxXSU5ET1dTXFxTeXN0ZW0zMlxcV2luZG93c1Bvd2VyU2hlbGxcXHYxLjBcXDtDOlxcUHJvZ3JhbSBGaWxlc1xcSGFza2VsbCBQbGF0Zm9ybVxcNy4xMC4zXFxtaW5nd1xcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxKYXZhXFxqZGsxLjguMF83N1xcYmluO0M6XFxjeWd3aW42NFxcYmluOyVsb2NhbGFwcGRhdGElXFxNaWNyb3NvZnRcXFdpbmRvd3NBcHBzO0Q6XFxYQU1QUFxccGhwO0M6XFxQcm9ncmFtIEZpbGVzXFxHaXRcXGNtZDtDOlxceGFtcHBcXHBocDtDOlxcUHJvZ3JhbURhdGFcXENvbXBvc2VyU2V0dXBcXGJpbjtDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KVxcbm9kZWpzXFw7QzpcXFByb2dyYW0gRmlsZXNcXFBvc3RncmVTUUxcXDkuNlxcYmluO0M6XFxQcm9ncmFtIEZpbGVzXFxNQVRMQUJcXFIyMDE3YVxcYmluO0M6XFxVc2Vyc1xcZmFyaGFfMDAwXFxBcHBEYXRhXFxMb2NhbFxcUHJvZ3JhbXNcXFB5dGhvblxcUHl0aG9uMzYtMzJcXFNjcmlwdHNcXDtDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXFByb2dyYW1zXFxQeXRob25cXFB5dGhvbjM2LTMyXFw7QzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmdcXGNhYmFsXFxiaW47RDpcXFhBTVBQXFxwaHA7QzpcXFVzZXJzXFxmYXJoYV8wMDBcXEFwcERhdGFcXFJvYW1pbmdcXENvbXBvc2VyXFx2ZW5kb3JcXGJpbjtDOlxcVXNlcnNcXGZhcmhhXzAwMFxcQXBwRGF0YVxcTG9jYWxcXE1pY3Jvc29mdFxcV2luZG93c0FwcHM7QzpcXHB5dGhvbi0zLjYuMCcKUEFUSEVYVCA9ICcuQ09NOy5FWEU7LkJBVDsuQ01EOy5WQlM7LlZCRTsuSlM7LkpTRTsuV1NGOy5XU0g7Lk1TQycKUEFUSF9JTkZPID0gJy9hcGkvc3R1ZGVudHMvMi9ib29rbWFya2VkLXZhY2FuY2llcy8nClBST0NFU1NPUl9BUkNISVRFQ1RVUkUgPSAneDg2JwpQUk9DRVNTT1JfQVJDSElURVc2NDMyID0gJ0FNRDY0JwpQUk9DRVNTT1JfSURFTlRJRklFUiA9ICdJbnRlbDY0IEZhbWlseSA2IE1vZGVsIDU4IFN0ZXBwaW5nIDksIEdlbnVpbmVJbnRlbCcKUFJPQ0VTU09SX0xFVkVMID0gJzYnClBST0NFU1NPUl9SRVZJU0lPTiA9ICczYTA5JwpQUk9HUkFNREFUQSA9ICdDOlxcUHJvZ3JhbURhdGEnClBST0dSQU1GSUxFUyA9ICdDOlxcUHJvZ3JhbSBGaWxlcyAoeDg2KScKUFJPR1JBTUZJTEVTKFg4NikgPSAnQzpcXFByb2dyYW0gRmlsZXMgKHg4NiknClBST0dSQU1XNjQzMiA9ICdDOlxcUHJvZ3JhbSBGaWxlcycKUFJPTVBUID0gJyRQJEcnClBTTU9EVUxFUEFUSCA9ICdDOlxcV0lORE9XU1xcc3lzdGVtMzJcXFdpbmRvd3NQb3dlclNoZWxsXFx2MS4wXFxNb2R1bGVzXFwnClBVQkxJQyA9ICdDOlxcVXNlcnNcXFB1YmxpYycKUVVFUllfU1RSSU5HID0gJycKUkVNT1RFX0FERFIgPSAnMTI3LjAuMC4xJwpSRU1PVEVfSE9TVCA9ICcnClJFUVVFU1RfTUVUSE9EID0gJ1BPU1QnClJVTl9NQUlOID0gJ3RydWUnClNDUklQVF9OQU1FID0gJycKU0VSVkVSX05BTUUgPSAnRmFyaGFuJwpTRVJWRVJfUE9SVCA9ICc4MDAwJwpTRVJWRVJfUFJPVE9DT0wgPSAnSFRUUC8xLjEnClNFUlZFUl9TT0ZUV0FSRSA9ICdXU0dJU2VydmVyLzAuMicKU0VTU0lPTk5BTUUgPSAnQ29uc29sZScKU1lTVEVNRFJJVkUgPSAnQzonClNZU1RFTVJPT1QgPSAnQzpcXFdJTkRPV1MnClRFTVAgPSAnQzpcXFVzZXJzXFxGQVJIQV9+MVxcQXBwRGF0YVxcTG9jYWxcXFRlbXAnClRNUCA9ICdDOlxcVXNlcnNcXEZBUkhBX34xXFxBcHBEYXRhXFxMb2NhbFxcVGVtcCcKVVNFUkRPTUFJTiA9ICdGYXJoYW4nClVTRVJET01BSU5fUk9BTUlOR1BST0ZJTEUgPSAnRmFyaGFuJwpVU0VSTkFNRSA9ICdGYXJoYW4gRmFyYXNkYWsnClVTRVJQUk9GSUxFID0gJ0M6XFxVc2Vyc1xcZmFyaGFfMDAwJwpWQk9YX01TSV9JTlNUQUxMX1BBVEggPSAnQzpcXFByb2dyYW0gRmlsZXNcXE9yYWNsZVxcVmlydHVhbEJveFxcJwpXSU5ESVIgPSAnQzpcXFdJTkRPV1MnCndzZ2kuZXJyb3JzID0gPF9pby5UZXh0SU9XcmFwcGVyIG5hbWU9JzxzdGRlcnI+JyBtb2RlPSd3JyBlbmNvZGluZz0ndXRmLTgnPgp3c2dpLmZpbGVfd3JhcHBlciA9ICcnCndzZ2kuaW5wdXQgPSA8X2lvLkJ1ZmZlcmVkUmVhZGVyIG5hbWU9MTYyOD4Kd3NnaS5tdWx0aXByb2Nlc3MgPSBGYWxzZQp3c2dpLm11bHRpdGhyZWFkID0gVHJ1ZQp3c2dpLnJ1bl9vbmNlID0gRmFsc2UKd3NnaS51cmxfc2NoZW1lID0gJ2h0dHAnCndzZ2kudmVyc2lvbiA9IAoKU2V0dGluZ3M6ClVzaW5nIHNldHRpbmdzIG1vZHVsZSBrYXBlLnNldHRpbmdzCkFCU09MVVRFX1VSTF9PVkVSUklERVMgPSB7fQpBRE1JTlMgPSBbXQpBTExPV0VEX0hPU1RTID0gWydib3QucmVjcnVpdC5pZCcsICcxMDQuMjM2Ljc2LjE2MScsICdsb2NhbGhvc3QnLCAnMTI3LjAuMC4xJ10KQVBQRU5EX1NMQVNIID0gVHJ1ZQpBVVRIRU5USUNBVElPTl9CQUNLRU5EUyA9IFsnZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQnXQpBVVRIX1BBU1NXT1JEX1ZBTElEQVRPUlMgPSAnKioqKioqKioqKioqKioqKioqKionCkFVVEhfVVNFUl9NT0RFTCA9ICdhdXRoLlVzZXInCkJBU0VfRElSID0gJ0Q6XFxQUExBJwpDQUNIRVMgPSB7J2RlZmF1bHQnOiB7J0JBQ0tFTkQnOiAnZGphbmdvLmNvcmUuY2FjaGUuYmFja2VuZHMubG9jbWVtLkxvY01lbUNhY2hlJ319CkNBQ0hFX01JRERMRVdBUkVfQUxJQVMgPSAnZGVmYXVsdCcKQ0FDSEVfTUlERExFV0FSRV9LRVlfUFJFRklYID0gJyoqKioqKioqKioqKioqKioqKioqJwpDQUNIRV9NSURETEVXQVJFX1NFQ09ORFMgPSA2MDAKQ1NSRl9DT09LSUVfQUdFID0gMzE0NDk2MDAKQ1NSRl9DT09LSUVfRE9NQUlOID0gTm9uZQpDU1JGX0NPT0tJRV9IVFRQT05MWSA9IEZhbHNlCkNTUkZfQ09PS0lFX05BTUUgPSAnY3NyZnRva2VuJwpDU1JGX0NPT0tJRV9QQVRIID0gJy8nCkNTUkZfQ09PS0lFX1NFQ1VSRSA9IEZhbHNlCkNTUkZfRkFJTFVSRV9WSUVXID0gJ2RqYW5nby52aWV3cy5jc3JmLmNzcmZfZmFpbHVyZScKQ1NSRl9IRUFERVJfTkFNRSA9ICdIVFRQX1hfQ1NSRlRPS0VOJwpDU1JGX1RSVVNURURfT1JJR0lOUyA9IFtdCkRBVEFCQVNFUyA9IHsnZGVmYXVsdCc6IHsnRU5HSU5FJzogJ2RqYW5nby5kYi5iYWNrZW5kcy5wb3N0Z3Jlc3FsX3BzeWNvcGcyJywgJ05BTUUnOiAna2FwZScsICdVU0VSJzogJ2thcGUnLCAnUEFTU1dPUkQnOiAnKioqKioqKioqKioqKioqKioqKionLCAnSE9TVCc6ICdsb2NhbGhvc3QnLCAnUE9SVCc6ICcnLCAnQVRPTUlDX1JFUVVFU1RTJzogRmFsc2UsICdBVVRPQ09NTUlUJzogVHJ1ZSwgJ0NPTk5fTUFYX0FHRSc6IDAsICdPUFRJT05TJzoge30sICdUSU1FX1pPTkUnOiBOb25lLCAnVEVTVCc6IHsnQ0hBUlNFVCc6IE5vbmUsICdDT0xMQVRJT04nOiBOb25lLCAnTkFNRSc6IE5vbmUsICdNSVJST1InOiBOb25lfX19CkRBVEFCQVNFX1JPVVRFUlMgPSBbXQpEQVRBX1VQTE9BRF9NQVhfTUVNT1JZX1NJWkUgPSAyNjIxNDQwCkRBVEFfVVBMT0FEX01BWF9OVU1CRVJfRklFTERTID0gMTAwMApEQVRFVElNRV9GT1JNQVQgPSAnTiBqLCBZLCBQJwpEQVRFVElNRV9JTlBVVF9GT1JNQVRTID0gWyclWS0lbS0lZCAlSDolTTolUycsICclWS0lbS0lZCAlSDolTTolUy4lZicsICclWS0lbS0lZCAlSDolTScsICclWS0lbS0lZCcsICclbS8lZC8lWSAlSDolTTolUycsICclbS8lZC8lWSAlSDolTTolUy4lZicsICclbS8lZC8lWSAlSDolTScsICclbS8lZC8lWScsICclbS8lZC8leSAlSDolTTolUycsICclbS8lZC8leSAlSDolTTolUy4lZicsICclbS8lZC8leSAlSDolTScsICclbS8lZC8leSddCkRBVEVfRk9STUFUID0gJ04gaiwgWScKREFURV9JTlBVVF9GT1JNQVRTID0gWyclWS0lbS0lZCcsICclbS8lZC8lWScsICclbS8lZC8leScsICclYiAlZCAlWScsICclYiAlZCwgJVknLCAnJWQgJWIgJVknLCAnJWQgJWIsICVZJywgJyVCICVkICVZJywgJyVCICVkLCAlWScsICclZCAlQiAlWScsICclZCAlQiwgJVknXQpERUJVRyA9IFRydWUKREVCVUdfUFJPUEFHQVRFX0VYQ0VQVElPTlMgPSBGYWxzZQpERUNJTUFMX1NFUEFSQVRPUiA9ICcuJwpERUZBVUxUX0NIQVJTRVQgPSAndXRmLTgnCkRFRkFVTFRfQ09OVEVOVF9UWVBFID0gJ3RleHQvaHRtbCcKREVGQVVMVF9FWENFUFRJT05fUkVQT1JURVJfRklMVEVSID0gJ2RqYW5nby52aWV3cy5kZWJ1Zy5TYWZlRXhjZXB0aW9uUmVwb3J0ZXJGaWx0ZXInCkRFRkFVTFRfRklMRV9TVE9SQUdFID0gJ2RqYW5nby5jb3JlLmZpbGVzLnN0b3JhZ2UuRmlsZVN5c3RlbVN0b3JhZ2UnCkRFRkFVTFRfRlJPTV9FTUFJTCA9ICd3ZWJtYXN0ZXJAbG9jYWxob3N0JwpERUZBVUxUX0lOREVYX1RBQkxFU1BBQ0UgPSAnJwpERUZBVUxUX1RBQkxFU1BBQ0UgPSAnJwpESVNBTExPV0VEX1VTRVJfQUdFTlRTID0gW10KRU1BSUxfQkFDS0VORCA9ICdkamFuZ28uY29yZS5tYWlsLmJhY2tlbmRzLnNtdHAuRW1haWxCYWNrZW5kJwpFTUFJTF9IT1NUID0gJ2xvY2FsaG9zdCcKRU1BSUxfSE9TVF9QQVNTV09SRCA9ICcqKioqKioqKioqKioqKioqKioqKicKRU1BSUxfSE9TVF9VU0VSID0gJycKRU1BSUxfUE9SVCA9IDI1CkVNQUlMX1NTTF9DRVJURklMRSA9IE5vbmUKRU1BSUxfU1NMX0tFWUZJTEUgPSAnKioqKioqKioqKioqKioqKioqKionCkVNQUlMX1NVQkpFQ1RfUFJFRklYID0gJ1tEamFuZ29dICcKRU1BSUxfVElNRU9VVCA9IE5vbmUKRU1BSUxfVVNFX1NTTCA9IEZhbHNlCkVNQUlMX1VTRV9UTFMgPSBGYWxzZQpGSUxFX0NIQVJTRVQgPSAndXRmLTgnCkZJTEVfVVBMT0FEX0RJUkVDVE9SWV9QRVJNSVNTSU9OUyA9IE5vbmUKRklMRV9VUExPQURfSEFORExFUlMgPSBbJ2RqYW5nby5jb3JlLmZpbGVzLnVwbG9hZGhhbmRsZXIuTWVtb3J5RmlsZVVwbG9hZEhhbmRsZXInLCAnZGphbmdvLmNvcmUuZmlsZXMudXBsb2FkaGFuZGxlci5UZW1wb3JhcnlGaWxlVXBsb2FkSGFuZGxlciddCkZJTEVfVVBMT0FEX01BWF9NRU1PUllfU0laRSA9IDI2MjE0NDAKRklMRV9VUExPQURfUEVSTUlTU0lPTlMgPSBOb25lCkZJTEVfVVBMT0FEX1RFTVBfRElSID0gTm9uZQpGSVJTVF9EQVlfT0ZfV0VFSyA9IDAKRklYVFVSRV9ESVJTID0gW10KRk9SQ0VfU0NSSVBUX05BTUUgPSBOb25lCkZPUk1BVF9NT0RVTEVfUEFUSCA9IE5vbmUKR1pJUF9DT05URU5UX1RZUEVTID0gCklHTk9SQUJMRV80MDRfVVJMUyA9IFtdCklOU1RBTExFRF9BUFBTID0gWydkamFuZ28uY29udHJpYi5hZG1pbicsICdkamFuZ28uY29udHJpYi5hdXRoJywgJ2RqYW5nby5jb250cmliLmNvbnRlbnR0eXBlcycsICdkamFuZ28uY29udHJpYi5zZXNzaW9ucycsICdkamFuZ28uY29udHJpYi5tZXNzYWdlcycsICdkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcycsICd3ZWJwYWNrX2xvYWRlcicsICdjb3JlJywgJ3Jlc3RfZnJhbWV3b3JrJywgJ2RqYW5nb19ub3NlJywgJ3Jlc3RfZnJhbWV3b3JrX3N3YWdnZXInLCAnc2lsayddCklOVEVSTkFMX0lQUyA9IFtdCkxBTkdVQUdFUyA9IFsoJ2FmJywgJ0FmcmlrYWFucycpLCAoJ2FyJywgJ0FyYWJpYycpLCAoJ2FzdCcsICdBc3R1cmlhbicpLCAoJ2F6JywgJ0F6ZXJiYWlqYW5pJyksICgnYmcnLCAnQnVsZ2FyaWFuJyksICgnYmUnLCAnQmVsYXJ1c2lhbicpLCAoJ2JuJywgJ0JlbmdhbGknKSwgKCdicicsICdCcmV0b24nKSwgKCdicycsICdCb3NuaWFuJyksICgnY2EnLCAnQ2F0YWxhbicpLCAoJ2NzJywgJ0N6ZWNoJyksICgnY3knLCAnV2Vsc2gnKSwgKCdkYScsICdEYW5pc2gnKSwgKCdkZScsICdHZXJtYW4nKSwgKCdkc2InLCAnTG93ZXIgU29yYmlhbicpLCAoJ2VsJywgJ0dyZWVrJyksICgnZW4nLCAnRW5nbGlzaCcpLCAoJ2VuLWF1JywgJ0F1c3RyYWxpYW4gRW5nbGlzaCcpLCAoJ2VuLWdiJywgJ0JyaXRpc2ggRW5nbGlzaCcpLCAoJ2VvJywgJ0VzcGVyYW50bycpLCAoJ2VzJywgJ1NwYW5pc2gnKSwgKCdlcy1hcicsICdBcmdlbnRpbmlhbiBTcGFuaXNoJyksICgnZXMtY28nLCAnQ29sb21iaWFuIFNwYW5pc2gnKSwgKCdlcy1teCcsICdNZXhpY2FuIFNwYW5pc2gnKSwgKCdlcy1uaScsICdOaWNhcmFndWFuIFNwYW5pc2gnKSwgKCdlcy12ZScsICdWZW5lenVlbGFuIFNwYW5pc2gnKSwgKCdldCcsICdFc3RvbmlhbicpLCAoJ2V1JywgJ0Jhc3F1ZScpLCAoJ2ZhJywgJ1BlcnNpYW4nKSwgKCdmaScsICdGaW5uaXNoJyksICgnZnInLCAnRnJlbmNoJyksICgnZnknLCAnRnJpc2lhbicpLCAoJ2dhJywgJ0lyaXNoJyksICgnZ2QnLCAnU2NvdHRpc2ggR2FlbGljJyksICgnZ2wnLCAnR2FsaWNpYW4nKSwgKCdoZScsICdIZWJyZXcnKSwgKCdoaScsICdIaW5kaScpLCAoJ2hyJywgJ0Nyb2F0aWFuJyksICgnaHNiJywgJ1VwcGVyIFNvcmJpYW4nKSwgKCdodScsICdIdW5nYXJpYW4nKSwgKCdpYScsICdJbnRlcmxpbmd1YScpLCAoJ2lkJywgJ0luZG9uZXNpYW4nKSwgKCdpbycsICdJZG8nKSwgKCdpcycsICdJY2VsYW5kaWMnKSwgKCdpdCcsICdJdGFsaWFuJyksICgnamEnLCAnSmFwYW5lc2UnKSwgKCdrYScsICdHZW9yZ2lhbicpLCAoJ2trJywgJ0themFraCcpLCAoJ2ttJywgJ0tobWVyJyksICgna24nLCAnS2FubmFkYScpLCAoJ2tvJywgJ0tvcmVhbicpLCAoJ2xiJywgJ0x1eGVtYm91cmdpc2gnKSwgKCdsdCcsICdMaXRodWFuaWFuJyksICgnbHYnLCAnTGF0dmlhbicpLCAoJ21rJywgJ01hY2Vkb25pYW4nKSwgKCdtbCcsICdNYWxheWFsYW0nKSwgKCdtbicsICdNb25nb2xpYW4nKSwgKCdtcicsICdNYXJhdGhpJyksICgnbXknLCAnQnVybWVzZScpLCAoJ25iJywgJ05vcndlZ2lhbiBCb2ttw6VsJyksICgnbmUnLCAnTmVwYWxpJyksICgnbmwnLCAnRHV0Y2gnKSwgKCdubicsICdOb3J3ZWdpYW4gTnlub3JzaycpLCAoJ29zJywgJ09zc2V0aWMnKSwgKCdwYScsICdQdW5qYWJpJyksICgncGwnLCAnUG9saXNoJyksICgncHQnLCAnUG9ydHVndWVzZScpLCAoJ3B0LWJyJywgJ0JyYXppbGlhbiBQb3J0dWd1ZXNlJyksICgncm8nLCAnUm9tYW5pYW4nKSwgKCdydScsICdSdXNzaWFuJyksICgnc2snLCAnU2xvdmFrJyksICgnc2wnLCAnU2xvdmVuaWFuJyksICgnc3EnLCAnQWxiYW5pYW4nKSwgKCdzcicsICdTZXJiaWFuJyksICgnc3ItbGF0bicsICdTZXJiaWFuIExhdGluJyksICgnc3YnLCAnU3dlZGlzaCcpLCAoJ3N3JywgJ1N3YWhpbGknKSwgKCd0YScsICdUYW1pbCcpLCAoJ3RlJywgJ1RlbHVndScpLCAoJ3RoJywgJ1RoYWknKSwgKCd0cicsICdUdXJraXNoJyksICgndHQnLCAnVGF0YXInKSwgKCd1ZG0nLCAnVWRtdXJ0JyksICgndWsnLCAnVWtyYWluaWFuJyksICgndXInLCAnVXJkdScpLCAoJ3ZpJywgJ1ZpZXRuYW1lc2UnKSwgKCd6aC1oYW5zJywgJ1NpbXBsaWZpZWQgQ2hpbmVzZScpLCAoJ3poLWhhbnQnLCAnVHJhZGl0aW9uYWwgQ2hpbmVzZScpXQpMQU5HVUFHRVNfQklESSA9IFsnaGUnLCAnYXInLCAnZmEnLCAndXInXQpMQU5HVUFHRV9DT0RFID0gJ2VuLXVzJwpMQU5HVUFHRV9DT09LSUVfQUdFID0gTm9uZQpMQU5HVUFHRV9DT09LSUVfRE9NQUlOID0gTm9uZQpMQU5HVUFHRV9DT09LSUVfTkFNRSA9ICdkamFuZ29fbGFuZ3VhZ2UnCkxBTkdVQUdFX0NPT0tJRV9QQVRIID0gJy8nCkxPQ0FMRV9QQVRIUyA9IFtdCkxPR0dJTkcgPSB7fQpMT0dHSU5HX0NPTkZJRyA9ICdsb2dnaW5nLmNvbmZpZy5kaWN0Q29uZmlnJwpMT0dJTl9SRURJUkVDVF9VUkwgPSAnL2FjY291bnRzL3Byb2ZpbGUvJwpMT0dJTl9VUkwgPSAnL2FjY291bnRzL2xvZ2luLycKTE9HT1VUX1JFRElSRUNUX1VSTCA9IE5vbmUKTUFOQUdFUlMgPSBbXQpNRURJQV9ST09UID0gJy9ob21lL2ZpbGVzJwpNRURJQV9VUkwgPSAnL2ZpbGVzLycKTUVTU0FHRV9TVE9SQUdFID0gJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzLnN0b3JhZ2UuZmFsbGJhY2suRmFsbGJhY2tTdG9yYWdlJwpNSURETEVXQVJFID0gWydkamFuZ28ubWlkZGxld2FyZS5zZWN1cml0eS5TZWN1cml0eU1pZGRsZXdhcmUnLCAnZGphbmdvLmNvbnRyaWIuc2Vzc2lvbnMubWlkZGxld2FyZS5TZXNzaW9uTWlkZGxld2FyZScsICdkamFuZ28ubWlkZGxld2FyZS5jb21tb24uQ29tbW9uTWlkZGxld2FyZScsICdkamFuZ28ubWlkZGxld2FyZS5jc3JmLkNzcmZWaWV3TWlkZGxld2FyZScsICdkamFuZ28uY29udHJpYi5hdXRoLm1pZGRsZXdhcmUuQXV0aGVudGljYXRpb25NaWRkbGV3YXJlJywgJ2RqYW5nby5jb250cmliLm1lc3NhZ2VzLm1pZGRsZXdhcmUuTWVzc2FnZU1pZGRsZXdhcmUnLCAnZGphbmdvLm1pZGRsZXdhcmUuY2xpY2tqYWNraW5nLlhGcmFtZU9wdGlvbnNNaWRkbGV3YXJlJywgJ3NpbGsubWlkZGxld2FyZS5TaWxreU1pZGRsZXdhcmUnXQpNSURETEVXQVJFX0NMQVNTRVMgPSBbJ2RqYW5nby5taWRkbGV3YXJlLmNvbW1vbi5Db21tb25NaWRkbGV3YXJlJywgJ2RqYW5nby5taWRkbGV3YXJlLmNzcmYuQ3NyZlZpZXdNaWRkbGV3YXJlJ10KTUlHUkFUSU9OX01PRFVMRVMgPSB7fQpNT05USF9EQVlfRk9STUFUID0gJ0YgaicKTk9TRV9BUkdTID0gWyctLXdpdGgtY292ZXJhZ2UnLCAnLS1jb3Zlci1wYWNrYWdlPWNvcmUudmlld3MnLCAnLS1jb3Zlci1odG1sLWRpcj10ZXN0L2JhY2tlbmQnLCAnLS1jb3Zlci1odG1sJ10KTlVNQkVSX0dST1VQSU5HID0gMApQQVNTV09SRF9IQVNIRVJTID0gJyoqKioqKioqKioqKioqKioqKioqJwpQQVNTV09SRF9SRVNFVF9USU1FT1VUX0RBWVMgPSAnKioqKioqKioqKioqKioqKioqKionClBSRVBFTkRfV1dXID0gRmFsc2UKUkVTVF9GUkFNRVdPUksgPSB7J0RFRkFVTFRfUEVSTUlTU0lPTl9DTEFTU0VTJzogWydyZXN0X2ZyYW1ld29yay5wZXJtaXNzaW9ucy5EamFuZ29Nb2RlbFBlcm1pc3Npb25zT3JBbm9uUmVhZE9ubHknXX0KUk9PVF9VUkxDT05GID0gJ2thcGUudXJscycKUlVOTklOR19ERVZTRVJWRVIgPSBUcnVlClNFQ1JFVF9LRVkgPSAnKioqKioqKioqKioqKioqKioqKionClNFQ1VSRV9CUk9XU0VSX1hTU19GSUxURVIgPSBGYWxzZQpTRUNVUkVfQ09OVEVOVF9UWVBFX05PU05JRkYgPSBGYWxzZQpTRUNVUkVfSFNUU19JTkNMVURFX1NVQkRPTUFJTlMgPSBGYWxzZQpTRUNVUkVfSFNUU19TRUNPTkRTID0gMApTRUNVUkVfUFJPWFlfU1NMX0hFQURFUiA9IE5vbmUKU0VDVVJFX1JFRElSRUNUX0VYRU1QVCA9IFtdClNFQ1VSRV9TU0xfSE9TVCA9IE5vbmUKU0VDVVJFX1NTTF9SRURJUkVDVCA9IEZhbHNlClNFUlZFUl9FTUFJTCA9ICdyb290QGxvY2FsaG9zdCcKU0VTU0lPTl9DQUNIRV9BTElBUyA9ICdkZWZhdWx0JwpTRVNTSU9OX0NPT0tJRV9BR0UgPSAxMjA5NjAwClNFU1NJT05fQ09PS0lFX0RPTUFJTiA9IE5vbmUKU0VTU0lPTl9DT09LSUVfSFRUUE9OTFkgPSBGYWxzZQpTRVNTSU9OX0NPT0tJRV9OQU1FID0gJ3Nlc3Npb25pZCcKU0VTU0lPTl9DT09LSUVfUEFUSCA9ICcvJwpTRVNTSU9OX0NPT0tJRV9TRUNVUkUgPSBGYWxzZQpTRVNTSU9OX0VOR0lORSA9ICdkamFuZ28uY29udHJpYi5zZXNzaW9ucy5iYWNrZW5kcy5kYicKU0VTU0lPTl9FWFBJUkVfQVRfQlJPV1NFUl9DTE9TRSA9IEZhbHNlClNFU1NJT05fRklMRV9QQVRIID0gTm9uZQpTRVNTSU9OX1NBVkVfRVZFUllfUkVRVUVTVCA9IEZhbHNlClNFU1NJT05fU0VSSUFMSVpFUiA9ICdkamFuZ28uY29udHJpYi5zZXNzaW9ucy5zZXJpYWxpemVycy5KU09OU2VyaWFsaXplcicKU0VUVElOR1NfTU9EVUxFID0gJ2thcGUuc2V0dGluZ3MnClNIT1JUX0RBVEVUSU1FX0ZPUk1BVCA9ICdtL2QvWSBQJwpTSE9SVF9EQVRFX0ZPUk1BVCA9ICdtL2QvWScKU0lHTklOR19CQUNLRU5EID0gJ2RqYW5nby5jb3JlLnNpZ25pbmcuVGltZXN0YW1wU2lnbmVyJwpTSUxFTkNFRF9TWVNURU1fQ0hFQ0tTID0gW10KU1RBVElDRklMRVNfRElSUyA9ICdEOlxcUFBMQVxcYXNzZXRzJwpTVEFUSUNGSUxFU19GSU5ERVJTID0gWydkamFuZ28uY29udHJpYi5zdGF0aWNmaWxlcy5maW5kZXJzLkZpbGVTeXN0ZW1GaW5kZXInLCAnZGphbmdvLmNvbnRyaWIuc3RhdGljZmlsZXMuZmluZGVycy5BcHBEaXJlY3Rvcmllc0ZpbmRlciddClNUQVRJQ0ZJTEVTX1NUT1JBR0UgPSAnZGphbmdvLmNvbnRyaWIuc3RhdGljZmlsZXMuc3RvcmFnZS5TdGF0aWNGaWxlc1N0b3JhZ2UnClNUQVRJQ19ST09UID0gJy9ob21lL2Fzc2V0cycKU1RBVElDX1VSTCA9ICcvYXNzZXRzLycKVEVNUExBVEVTID0gW3snQkFDS0VORCc6ICdkamFuZ28udGVtcGxhdGUuYmFja2VuZHMuZGphbmdvLkRqYW5nb1RlbXBsYXRlcycsICdESVJTJzogW10sICdBUFBfRElSUyc6IFRydWUsICdPUFRJT05TJzogeydjb250ZXh0X3Byb2Nlc3NvcnMnOiBbJ2RqYW5nby50ZW1wbGF0ZS5jb250ZXh0X3Byb2Nlc3NvcnMuZGVidWcnLCAnZGphbmdvLnRlbXBsYXRlLmNvbnRleHRfcHJvY2Vzc29ycy5yZXF1ZXN0JywgJ2RqYW5nby5jb250cmliLmF1dGguY29udGV4dF9wcm9jZXNzb3JzLmF1dGgnLCAnZGphbmdvLmNvbnRyaWIubWVzc2FnZXMuY29udGV4dF9wcm9jZXNzb3JzLm1lc3NhZ2VzJ119fV0KVEVTVF9OT05fU0VSSUFMSVpFRF9BUFBTID0gW10KVEVTVF9SVU5ORVIgPSAnZGphbmdvX25vc2UuTm9zZVRlc3RTdWl0ZVJ1bm5lcicKVEhPVVNBTkRfU0VQQVJBVE9SID0gJywnClRJTUVfRk9STUFUID0gJ1AnClRJTUVfSU5QVVRfRk9STUFUUyA9IFsnJUg6JU06JVMnLCAnJUg6JU06JVMuJWYnLCAnJUg6JU0nXQpUSU1FX1pPTkUgPSAnVVRDJwpVU0VfRVRBR1MgPSBGYWxzZQpVU0VfSTE4TiA9IFRydWUKVVNFX0wxME4gPSBUcnVlClVTRV9USE9VU0FORF9TRVBBUkFUT1IgPSBGYWxzZQpVU0VfVFogPSBUcnVlClVTRV9YX0ZPUldBUkRFRF9IT1NUID0gRmFsc2UKVVNFX1hfRk9SV0FSREVEX1BPUlQgPSBGYWxzZQpXRUJQQUNLX0xPQURFUiA9IHsnREVGQVVMVCc6IHsnQlVORExFX0RJUl9OQU1FJzogJ2J1bmRsZXMvJywgJ1NUQVRTX0ZJTEUnOiAnRDpcXFBQTEFcXHdlYnBhY2stc3RhdHMuanNvbid9fQpXU0dJX0FQUExJQ0FUSU9OID0gJ2thcGUud3NnaS5hcHBsaWNhdGlvbicKWF9GUkFNRV9PUFRJT05TID0gJ1NBTUVPUklHSU4nCllFQVJfTU9OVEhfRk9STUFUID0gJ0YgWScKCgpZb3UncmUgc2VlaW5nIHRoaXMgZXJyb3IgYmVjYXVzZSB5b3UgaGF2ZSBERUJVRyA9IFRydWUgaW4geW91cgpEamFuZ28gc2V0dGluZ3MgZmlsZS4gQ2hhbmdlIHRoYXQgdG8gRmFsc2UsIGFuZCBEamFuZ28gd2lsbApkaXNwbGF5IGEgc3RhbmRhcmQgcGFnZSBnZW5lcmF0ZWQgYnkgdGhlIGhhbmRsZXIgZm9yIHRoaXMgc3RhdHVzIGNvZGUuCgo=", - "body": "", - "encoded_headers": "{\"Content-Type\": \"text/plain\"}" - } -}, -{ - "model": "silk.sqlquery", - "pk": 1, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"username\" = kape", - "start_time": "2017-03-27T14:33:05.987Z", - "end_time": "2017-03-27T14:33:05.993Z", - "time_taken": 6.004, - "request": "94c0ceb8-c58d-4388-97c9-093116ce8dd8", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\base_user.py\", line 48, in get_by_natural_key\n return self.get(**{self.model.USERNAME_FIELD: username})\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 17, in authenticate\n user = UserModel._default_manager.get_by_natural_key(username)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 74, in authenticate\n user = backend.authenticate(**credentials)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\forms.py\", line 191, in clean\n self.user_cache = authenticate(username=username, password=password)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 398, in _clean_form\n cleaned_data = self.clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 371, in full_clean\n self._clean_form()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 161, in errors\n self.full_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 169, in is_valid\n return self.is_bound and not self.errors\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\views.py\", line 81, in login\n if form.is_valid():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\debug.py\", line 76, in sensitive_post_parameters_wrapper\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\views.py\", line 47, in inner\n return func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 377, in login\n return login(request, **defaults)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 2, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"username\" = kape", - "start_time": "2017-03-27T14:33:11.929Z", - "end_time": "2017-03-27T14:33:11.935Z", - "time_taken": 6.002, - "request": "09e13131-05cb-40d6-b5b8-ab9f1909a28b", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\base_user.py\", line 48, in get_by_natural_key\n return self.get(**{self.model.USERNAME_FIELD: username})\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 17, in authenticate\n user = UserModel._default_manager.get_by_natural_key(username)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 74, in authenticate\n user = backend.authenticate(**credentials)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\forms.py\", line 191, in clean\n self.user_cache = authenticate(username=username, password=password)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 398, in _clean_form\n cleaned_data = self.clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 371, in full_clean\n self._clean_form()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 161, in errors\n self.full_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 169, in is_valid\n return self.is_bound and not self.errors\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\views.py\", line 81, in login\n if form.is_valid():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\debug.py\", line 76, in sensitive_post_parameters_wrapper\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\views.py\", line 47, in inner\n return func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 377, in login\n return login(request, **defaults)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 3, - "fields": { - "query": "SELECT (1) AS \"a\" FROM \"django_session\" WHERE \"django_session\".\"session_key\" = 1fih5jt4tc2hl5ww81c0yipoi5szl3r4 LIMIT 1", - "start_time": "2017-03-27T14:33:12.023Z", - "end_time": "2017-03-27T14:33:12.027Z", - "time_taken": 4.003, - "request": "09e13131-05cb-40d6-b5b8-ab9f1909a28b", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\compiler.py\", line 806, in has_results\n return bool(self.execute_sql(SINGLE))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 494, in has_results\n return compiler.has_results()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 660, in exists\n return self.query.has_results(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 46, in exists\n return self.model.objects.filter(session_key=session_key).exists()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 164, in _get_new_session_key\n if not self.exists(session_key):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 50, in create\n self._session_key = self._get_new_session_key()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 311, in cycle_key\n self.create()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 109, in login\n request.session.cycle_key()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\views.py\", line 82, in login\n auth_login(request, form.get_user())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\debug.py\", line 76, in sensitive_post_parameters_wrapper\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\views.py\", line 47, in inner\n return func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 377, in login\n return login(request, **defaults)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 4, - "fields": { - "query": "UPDATE \"auth_user\" SET \"last_login\" = 2017-03-27 14:33:12.033598+00:00 WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:33:12.124Z", - "end_time": "2017-03-27T14:33:12.126Z", - "time_taken": 2.001, - "request": "09e13131-05cb-40d6-b5b8-ab9f1909a28b", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\compiler.py\", line 1148, in execute_sql\n cursor = super(SQLUpdateCompiler, self).execute_sql(result_type)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 654, in _update\n return query.get_compiler(self.db).execute_sql(CURSOR)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 939, in _do_update\n return filtered._update(values) > 0\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 889, in _save_table\n forced_update)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 824, in save_base\n updated = self._save_table(raw, cls, force_insert, force_update, using, update_fields)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 796, in save\n force_update=force_update, update_fields=update_fields)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\base_user.py\", line 80, in save\n super(AbstractBaseUser, self).save(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\models.py\", line 25, in update_last_login\n user.save(update_fields=['last_login'])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\dispatch\\dispatcher.py\", line 191, in send\n response = receiver(signal=self, sender=sender, **named)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 130, in login\n user_logged_in.send(sender=user.__class__, request=request, user=user)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\views.py\", line 82, in login\n auth_login(request, form.get_user())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\debug.py\", line 76, in sensitive_post_parameters_wrapper\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\views.py\", line 47, in inner\n return func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 377, in login\n return login(request, **defaults)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 5, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = 1fih5jt4tc2hl5ww81c0yipoi5szl3r4 AND \"django_session\".\"expire_date\" > 2017-03-27 14:33:12.267754+00:00)", - "start_time": "2017-03-27T14:33:12.273Z", - "end_time": "2017-03-27T14:33:12.299Z", - "time_taken": 26.016, - "request": "8c99b503-6191-4988-9cd1-4cfd8bf70594", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 6, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:33:12.304Z", - "end_time": "2017-03-27T14:33:12.308Z", - "time_taken": 4.002, - "request": "8c99b503-6191-4988-9cd1-4cfd8bf70594", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 7, - "fields": { - "query": "SELECT \"django_admin_log\".\"id\", \"django_admin_log\".\"action_time\", \"django_admin_log\".\"user_id\", \"django_admin_log\".\"content_type_id\", \"django_admin_log\".\"object_id\", \"django_admin_log\".\"object_repr\", \"django_admin_log\".\"action_flag\", \"django_admin_log\".\"change_message\", \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\", \"django_content_type\".\"id\", \"django_content_type\".\"app_label\", \"django_content_type\".\"model\" FROM \"django_admin_log\" INNER JOIN \"auth_user\" ON (\"django_admin_log\".\"user_id\" = \"auth_user\".\"id\") LEFT OUTER JOIN \"django_content_type\" ON (\"django_admin_log\".\"content_type_id\" = \"django_content_type\".\"id\") WHERE \"django_admin_log\".\"user_id\" = 1 ORDER BY \"django_admin_log\".\"action_time\" DESC LIMIT 10", - "start_time": "2017-03-27T14:33:12.368Z", - "end_time": "2017-03-27T14:33:12.374Z", - "time_taken": 6.004, - "request": "8c99b503-6191-4988-9cd1-4cfd8bf70594", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 260, in __bool__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\smartif.py\", line 96, in <lambda>\n 'not': prefix(8, lambda context, x: not x.eval(context)),\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\smartif.py\", line 83, in eval\n return func(context, self.first)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 308, in render\n match = condition.eval(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 8, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = 1fih5jt4tc2hl5ww81c0yipoi5szl3r4 AND \"django_session\".\"expire_date\" > 2017-03-27 14:33:15.051611+00:00)", - "start_time": "2017-03-27T14:33:15.057Z", - "end_time": "2017-03-27T14:33:15.062Z", - "time_taken": 5.004, - "request": "7808e004-a5e9-4c6f-8d07-197250bea2da", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 9, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:33:15.067Z", - "end_time": "2017-03-27T14:33:15.070Z", - "time_taken": 3.003, - "request": "7808e004-a5e9-4c6f-8d07-197250bea2da", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 10, - "fields": { - "query": "SELECT COUNT(*) AS \"__count\" FROM \"core_vacancy\"", - "start_time": "2017-03-27T14:33:15.076Z", - "end_time": "2017-03-27T14:33:15.082Z", - "time_taken": 6.004, - "request": "7808e004-a5e9-4c6f-8d07-197250bea2da", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 457, in get_aggregation\n result = compiler.execute_sql(SINGLE)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 476, in get_count\n number = obj.get_aggregation(using, ['__count'])['__count']\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 369, in count\n return self.query.get_count(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\paginator.py\", line 72, in count\n return self.object_list.count()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 35, in __get__\n res = instance.__dict__[self.name] = self.func(instance)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 172, in get_results\n result_count = paginator.count\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 79, in __init__\n self.get_results(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 11, - "fields": { - "query": "SELECT COUNT(*) AS \"__count\" FROM \"core_vacancy\"", - "start_time": "2017-03-27T14:33:15.085Z", - "end_time": "2017-03-27T14:33:15.086Z", - "time_taken": 1.0, - "request": "7808e004-a5e9-4c6f-8d07-197250bea2da", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 457, in get_aggregation\n result = compiler.execute_sql(SINGLE)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 476, in get_count\n number = obj.get_aggregation(using, ['__count'])['__count']\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 369, in count\n return self.query.get_count(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 176, in get_results\n full_result_count = self.root_queryset.count()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 79, in __init__\n self.get_results(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 12, - "fields": { - "query": "SELECT \"core_vacancy\".\"id\", \"core_vacancy\".\"company_id\", \"core_vacancy\".\"verified\", \"core_vacancy\".\"open_time\", \"core_vacancy\".\"close_time\" FROM \"core_vacancy\" ORDER BY \"core_vacancy\".\"id\" DESC", - "start_time": "2017-03-27T14:33:15.095Z", - "end_time": "2017-03-27T14:33:15.097Z", - "time_taken": 2.001, - "request": "7808e004-a5e9-4c6f-8d07-197250bea2da", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1657, in changelist_view\n selection_note=_('0 of %(cnt)s selected') % {'cnt': len(cl.result_list)},\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 13, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = 1fih5jt4tc2hl5ww81c0yipoi5szl3r4 AND \"django_session\".\"expire_date\" > 2017-03-27 14:33:15.675027+00:00)", - "start_time": "2017-03-27T14:33:15.680Z", - "end_time": "2017-03-27T14:33:15.685Z", - "time_taken": 5.004, - "request": "1d261d75-a829-40c8-8efb-77bb74497a8d", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 14, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:33:15.689Z", - "end_time": "2017-03-27T14:33:15.692Z", - "time_taken": 3.003, - "request": "1d261d75-a829-40c8-8efb-77bb74497a8d", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 15, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = 1fih5jt4tc2hl5ww81c0yipoi5szl3r4 AND \"django_session\".\"expire_date\" > 2017-03-27 14:33:18.682035+00:00)", - "start_time": "2017-03-27T14:33:18.687Z", - "end_time": "2017-03-27T14:33:18.692Z", - "time_taken": 5.004, - "request": "0dd96ff3-9801-47bd-8d52-54418ec9ac65", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 16, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:33:18.696Z", - "end_time": "2017-03-27T14:33:18.699Z", - "time_taken": 3.003, - "request": "0dd96ff3-9801-47bd-8d52-54418ec9ac65", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 17, - "fields": { - "query": "SELECT \"django_content_type\".\"id\", \"django_content_type\".\"app_label\", \"django_content_type\".\"model\" FROM \"django_content_type\" WHERE (\"django_content_type\".\"app_label\" = core AND \"django_content_type\".\"model\" = vacancy)", - "start_time": "2017-03-27T14:33:18.713Z", - "end_time": "2017-03-27T14:33:18.716Z", - "time_taken": 3.002, - "request": "0dd96ff3-9801-47bd-8d52-54418ec9ac65", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\contenttypes\\models.py\", line 52, in get_for_model\n ct = self.get(app_label=opts.app_label, model=opts.model_name)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 64, in get_content_type_for_model\n return ContentType.objects.get_for_model(obj, for_concrete_model=False)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1050, in render_change_form\n 'content_type_id': get_content_type_for_model(self.model).pk,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1506, in changeform_view\n return self.render_change_form(request, context, add=add, change=not add, obj=obj, form_url=form_url)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1509, in add_view\n return self.changeform_view(request, None, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 18, - "fields": { - "query": "SELECT \"core_company\".\"id\", \"core_company\".\"created\", \"core_company\".\"updated\", \"core_company\".\"user_id\", \"core_company\".\"description\", \"core_company\".\"verified\" FROM \"core_company\"", - "start_time": "2017-03-27T14:33:18.769Z", - "end_time": "2017-03-27T14:33:18.772Z", - "time_taken": 3.001, - "request": "0dd96ff3-9801-47bd-8d52-54418ec9ac65", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1118, in __iter__\n for obj in queryset:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 567, in render_options\n for option_value, option_label in self.choices:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 544, in render\n options = self.render_options([value])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\widgets.py\", line 307, in render\n 'widget': self.widget.render(name, value, *args, **kwargs),\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 101, in as_widget\n return force_text(widget.render(name, self.value(), attrs=attrs))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 43, in __str__\n return self.as_widget()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\html.py\", line 391, in <lambda>\n klass.__str__ = lambda self: mark_safe(klass_str(self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\encoding.py\", line 76, in force_text\n s = six.text_type(s)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1028, in render_value_in_context\n value = force_text(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1050, in render\n return render_value_in_context(output, context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 210, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 210, in render\n return template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 19, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = 1fih5jt4tc2hl5ww81c0yipoi5szl3r4 AND \"django_session\".\"expire_date\" > 2017-03-27 14:33:19.264423+00:00)", - "start_time": "2017-03-27T14:33:19.271Z", - "end_time": "2017-03-27T14:33:19.276Z", - "time_taken": 5.003, - "request": "71c46316-a90d-49fa-984e-503034a441d7", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 20, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:33:19.283Z", - "end_time": "2017-03-27T14:33:19.291Z", - "time_taken": 8.006, - "request": "71c46316-a90d-49fa-984e-503034a441d7", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 21, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = 1fih5jt4tc2hl5ww81c0yipoi5szl3r4 AND \"django_session\".\"expire_date\" > 2017-03-27 14:33:31.930876+00:00)", - "start_time": "2017-03-27T14:33:31.934Z", - "end_time": "2017-03-27T14:33:31.941Z", - "time_taken": 7.01, - "request": "ecc712ca-aa5b-467e-9646-a9abf4b50f03", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 22, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:33:31.945Z", - "end_time": "2017-03-27T14:33:31.948Z", - "time_taken": 3.007, - "request": "ecc712ca-aa5b-467e-9646-a9abf4b50f03", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 23, - "fields": { - "query": "SELECT COUNT(*) AS \"__count\" FROM \"core_vacancy\"", - "start_time": "2017-03-27T14:33:31.954Z", - "end_time": "2017-03-27T14:33:31.957Z", - "time_taken": 3.003, - "request": "ecc712ca-aa5b-467e-9646-a9abf4b50f03", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 457, in get_aggregation\n result = compiler.execute_sql(SINGLE)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 476, in get_count\n number = obj.get_aggregation(using, ['__count'])['__count']\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 369, in count\n return self.query.get_count(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\paginator.py\", line 72, in count\n return self.object_list.count()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 35, in __get__\n res = instance.__dict__[self.name] = self.func(instance)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 172, in get_results\n result_count = paginator.count\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 79, in __init__\n self.get_results(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 24, - "fields": { - "query": "SELECT COUNT(*) AS \"__count\" FROM \"core_vacancy\"", - "start_time": "2017-03-27T14:33:31.960Z", - "end_time": "2017-03-27T14:33:31.960Z", - "time_taken": 0.0, - "request": "ecc712ca-aa5b-467e-9646-a9abf4b50f03", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 457, in get_aggregation\n result = compiler.execute_sql(SINGLE)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 476, in get_count\n number = obj.get_aggregation(using, ['__count'])['__count']\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 369, in count\n return self.query.get_count(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 176, in get_results\n full_result_count = self.root_queryset.count()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 79, in __init__\n self.get_results(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 25, - "fields": { - "query": "SELECT \"core_vacancy\".\"id\", \"core_vacancy\".\"company_id\", \"core_vacancy\".\"verified\", \"core_vacancy\".\"open_time\", \"core_vacancy\".\"close_time\" FROM \"core_vacancy\" ORDER BY \"core_vacancy\".\"id\" DESC", - "start_time": "2017-03-27T14:33:31.967Z", - "end_time": "2017-03-27T14:33:31.969Z", - "time_taken": 2.001, - "request": "ecc712ca-aa5b-467e-9646-a9abf4b50f03", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1657, in changelist_view\n selection_note=_('0 of %(cnt)s selected') % {'cnt': len(cl.result_list)},\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 26, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = 1fih5jt4tc2hl5ww81c0yipoi5szl3r4 AND \"django_session\".\"expire_date\" > 2017-03-27 14:33:35.175041+00:00)", - "start_time": "2017-03-27T14:33:35.178Z", - "end_time": "2017-03-27T14:33:35.185Z", - "time_taken": 7.004, - "request": "f280e8b5-1fa6-4c06-aa6e-bcecbb918ead", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 27, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:33:35.189Z", - "end_time": "2017-03-27T14:33:35.192Z", - "time_taken": 3.002, - "request": "f280e8b5-1fa6-4c06-aa6e-bcecbb918ead", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 28, - "fields": { - "query": "SELECT \"django_admin_log\".\"id\", \"django_admin_log\".\"action_time\", \"django_admin_log\".\"user_id\", \"django_admin_log\".\"content_type_id\", \"django_admin_log\".\"object_id\", \"django_admin_log\".\"object_repr\", \"django_admin_log\".\"action_flag\", \"django_admin_log\".\"change_message\", \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\", \"django_content_type\".\"id\", \"django_content_type\".\"app_label\", \"django_content_type\".\"model\" FROM \"django_admin_log\" INNER JOIN \"auth_user\" ON (\"django_admin_log\".\"user_id\" = \"auth_user\".\"id\") LEFT OUTER JOIN \"django_content_type\" ON (\"django_admin_log\".\"content_type_id\" = \"django_content_type\".\"id\") WHERE \"django_admin_log\".\"user_id\" = 1 ORDER BY \"django_admin_log\".\"action_time\" DESC LIMIT 10", - "start_time": "2017-03-27T14:33:35.238Z", - "end_time": "2017-03-27T14:33:35.244Z", - "time_taken": 6.002, - "request": "f280e8b5-1fa6-4c06-aa6e-bcecbb918ead", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 260, in __bool__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\smartif.py\", line 96, in <lambda>\n 'not': prefix(8, lambda context, x: not x.eval(context)),\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\smartif.py\", line 83, in eval\n return func(context, self.first)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 308, in render\n match = condition.eval(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 29, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = 1fih5jt4tc2hl5ww81c0yipoi5szl3r4 AND \"django_session\".\"expire_date\" > 2017-03-27 14:33:37.076310+00:00)", - "start_time": "2017-03-27T14:33:37.081Z", - "end_time": "2017-03-27T14:33:37.085Z", - "time_taken": 4.003, - "request": "369e1c8c-41e9-434d-b4ee-12066a0eea2c", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 30, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:33:37.089Z", - "end_time": "2017-03-27T14:33:37.092Z", - "time_taken": 3.002, - "request": "369e1c8c-41e9-434d-b4ee-12066a0eea2c", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 31, - "fields": { - "query": "SELECT COUNT(*) AS \"__count\" FROM \"core_company\"", - "start_time": "2017-03-27T14:33:37.097Z", - "end_time": "2017-03-27T14:33:37.099Z", - "time_taken": 2.001, - "request": "369e1c8c-41e9-434d-b4ee-12066a0eea2c", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 457, in get_aggregation\n result = compiler.execute_sql(SINGLE)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 476, in get_count\n number = obj.get_aggregation(using, ['__count'])['__count']\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 369, in count\n return self.query.get_count(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\paginator.py\", line 72, in count\n return self.object_list.count()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 35, in __get__\n res = instance.__dict__[self.name] = self.func(instance)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 172, in get_results\n result_count = paginator.count\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 79, in __init__\n self.get_results(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 32, - "fields": { - "query": "SELECT COUNT(*) AS \"__count\" FROM \"core_company\"", - "start_time": "2017-03-27T14:33:37.103Z", - "end_time": "2017-03-27T14:33:37.104Z", - "time_taken": 0.999, - "request": "369e1c8c-41e9-434d-b4ee-12066a0eea2c", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 457, in get_aggregation\n result = compiler.execute_sql(SINGLE)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 476, in get_count\n number = obj.get_aggregation(using, ['__count'])['__count']\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 369, in count\n return self.query.get_count(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 176, in get_results\n full_result_count = self.root_queryset.count()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 79, in __init__\n self.get_results(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 33, - "fields": { - "query": "SELECT \"core_company\".\"id\", \"core_company\".\"created\", \"core_company\".\"updated\", \"core_company\".\"user_id\", \"core_company\".\"description\", \"core_company\".\"verified\" FROM \"core_company\" ORDER BY \"core_company\".\"id\" DESC", - "start_time": "2017-03-27T14:33:37.112Z", - "end_time": "2017-03-27T14:33:37.114Z", - "time_taken": 2.003, - "request": "369e1c8c-41e9-434d-b4ee-12066a0eea2c", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1657, in changelist_view\n selection_note=_('0 of %(cnt)s selected') % {'cnt': len(cl.result_list)},\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 34, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = 1fih5jt4tc2hl5ww81c0yipoi5szl3r4 AND \"django_session\".\"expire_date\" > 2017-03-27 14:33:37.367504+00:00)", - "start_time": "2017-03-27T14:33:37.372Z", - "end_time": "2017-03-27T14:33:37.376Z", - "time_taken": 4.003, - "request": "32d06d39-a94a-4154-8f38-1a4f4eee5817", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 35, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:33:37.381Z", - "end_time": "2017-03-27T14:33:37.385Z", - "time_taken": 4.004, - "request": "32d06d39-a94a-4154-8f38-1a4f4eee5817", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 36, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = 1fih5jt4tc2hl5ww81c0yipoi5szl3r4 AND \"django_session\".\"expire_date\" > 2017-03-27 14:33:39.563970+00:00)", - "start_time": "2017-03-27T14:33:39.567Z", - "end_time": "2017-03-27T14:33:39.571Z", - "time_taken": 4.003, - "request": "de2a5568-1762-4d7d-afe1-733d9f7f985a", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 37, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:33:39.577Z", - "end_time": "2017-03-27T14:33:39.580Z", - "time_taken": 3.002, - "request": "de2a5568-1762-4d7d-afe1-733d9f7f985a", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 38, - "fields": { - "query": "SELECT \"django_content_type\".\"id\", \"django_content_type\".\"app_label\", \"django_content_type\".\"model\" FROM \"django_content_type\" WHERE (\"django_content_type\".\"app_label\" = core AND \"django_content_type\".\"model\" = company)", - "start_time": "2017-03-27T14:33:39.592Z", - "end_time": "2017-03-27T14:33:39.595Z", - "time_taken": 3.002, - "request": "de2a5568-1762-4d7d-afe1-733d9f7f985a", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\contenttypes\\models.py\", line 52, in get_for_model\n ct = self.get(app_label=opts.app_label, model=opts.model_name)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 64, in get_content_type_for_model\n return ContentType.objects.get_for_model(obj, for_concrete_model=False)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1050, in render_change_form\n 'content_type_id': get_content_type_for_model(self.model).pk,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1506, in changeform_view\n return self.render_change_form(request, context, add=add, change=not add, obj=obj, form_url=form_url)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1509, in add_view\n return self.changeform_view(request, None, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 39, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" ORDER BY \"auth_user\".\"username\" ASC", - "start_time": "2017-03-27T14:33:39.642Z", - "end_time": "2017-03-27T14:33:39.644Z", - "time_taken": 2.003, - "request": "de2a5568-1762-4d7d-afe1-733d9f7f985a", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1118, in __iter__\n for obj in queryset:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 567, in render_options\n for option_value, option_label in self.choices:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 544, in render\n options = self.render_options([value])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\widgets.py\", line 307, in render\n 'widget': self.widget.render(name, value, *args, **kwargs),\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 101, in as_widget\n return force_text(widget.render(name, self.value(), attrs=attrs))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 43, in __str__\n return self.as_widget()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\html.py\", line 391, in <lambda>\n klass.__str__ = lambda self: mark_safe(klass_str(self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\encoding.py\", line 76, in force_text\n s = six.text_type(s)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1028, in render_value_in_context\n value = force_text(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1050, in render\n return render_value_in_context(output, context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 210, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 210, in render\n return template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 40, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = 1fih5jt4tc2hl5ww81c0yipoi5szl3r4 AND \"django_session\".\"expire_date\" > 2017-03-27 14:33:39.823143+00:00)", - "start_time": "2017-03-27T14:33:39.827Z", - "end_time": "2017-03-27T14:33:39.832Z", - "time_taken": 5.003, - "request": "ac603383-5bb9-424f-b42d-c3a0b7c17658", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 41, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:33:39.836Z", - "end_time": "2017-03-27T14:33:39.840Z", - "time_taken": 4.002, - "request": "ac603383-5bb9-424f-b42d-c3a0b7c17658", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 42, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = 1fih5jt4tc2hl5ww81c0yipoi5szl3r4 AND \"django_session\".\"expire_date\" > 2017-03-27 14:33:51.600003+00:00)", - "start_time": "2017-03-27T14:33:51.604Z", - "end_time": "2017-03-27T14:33:51.608Z", - "time_taken": 4.003, - "request": "9f472c0f-de1d-45f6-83c4-185efa0d454d", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 43, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:33:51.613Z", - "end_time": "2017-03-27T14:33:51.617Z", - "time_taken": 4.004, - "request": "9f472c0f-de1d-45f6-83c4-185efa0d454d", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 44, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:33:51.625Z", - "end_time": "2017-03-27T14:33:51.626Z", - "time_taken": 1.0, - "request": "9f472c0f-de1d-45f6-83c4-185efa0d454d", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1220, in to_python\n value = self.queryset.get(**{key: value})\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\fields.py\", line 158, in clean\n value = self.to_python(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 388, in _clean_fields\n value = field.clean(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 370, in full_clean\n self._clean_fields()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 161, in errors\n self.full_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 169, in is_valid\n return self.is_bound and not self.errors\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1441, in changeform_view\n if form.is_valid():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1509, in add_view\n return self.changeform_view(request, None, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 45, - "fields": { - "query": "SELECT (1) AS \"a\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1 LIMIT 1", - "start_time": "2017-03-27T14:33:51.635Z", - "end_time": "2017-03-27T14:33:51.637Z", - "time_taken": 2.001, - "request": "9f472c0f-de1d-45f6-83c4-185efa0d454d", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\compiler.py\", line 806, in has_results\n return bool(self.execute_sql(SINGLE))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 494, in has_results\n return compiler.has_results()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 660, in exists\n return self.query.has_results(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\fields\\related.py\", line 878, in validate\n if not qs.exists():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\fields\\__init__.py\", line 591, in clean\n self.validate(value, model_instance)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1252, in clean_fields\n setattr(self, f.attname, f.clean(raw_value, self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1210, in full_clean\n self.clean_fields(exclude=exclude)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 398, in _post_clean\n self.instance.full_clean(exclude=exclude, validate_unique=False)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 372, in full_clean\n self._post_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 161, in errors\n self.full_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 169, in is_valid\n return self.is_bound and not self.errors\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1441, in changeform_view\n if form.is_valid():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1509, in add_view\n return self.changeform_view(request, None, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 46, - "fields": { - "query": "SELECT (1) AS \"a\" FROM \"core_company\" WHERE \"core_company\".\"user_id\" = 1 LIMIT 1", - "start_time": "2017-03-27T14:33:51.641Z", - "end_time": "2017-03-27T14:33:51.644Z", - "time_taken": 3.002, - "request": "9f472c0f-de1d-45f6-83c4-185efa0d454d", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\compiler.py\", line 806, in has_results\n return bool(self.execute_sql(SINGLE))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 494, in has_results\n return compiler.has_results()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 660, in exists\n return self.query.has_results(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1113, in _perform_unique_checks\n if qs.exists():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1018, in validate_unique\n errors = self._perform_unique_checks(unique_checks)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 413, in validate_unique\n self.instance.validate_unique(exclude=exclude)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 404, in _post_clean\n self.validate_unique()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 372, in full_clean\n self._post_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 161, in errors\n self.full_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 169, in is_valid\n return self.is_bound and not self.errors\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1441, in changeform_view\n if form.is_valid():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1509, in add_view\n return self.changeform_view(request, None, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 47, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = 1fih5jt4tc2hl5ww81c0yipoi5szl3r4 AND \"django_session\".\"expire_date\" > 2017-03-27 14:33:51.844166+00:00)", - "start_time": "2017-03-27T14:33:51.848Z", - "end_time": "2017-03-27T14:33:51.853Z", - "time_taken": 5.003, - "request": "5230b0f5-788a-4d12-8708-08a1e5cefce5", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 48, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:33:51.857Z", - "end_time": "2017-03-27T14:33:51.861Z", - "time_taken": 4.003, - "request": "5230b0f5-788a-4d12-8708-08a1e5cefce5", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 49, - "fields": { - "query": "SELECT COUNT(*) AS \"__count\" FROM \"core_company\"", - "start_time": "2017-03-27T14:33:51.865Z", - "end_time": "2017-03-27T14:33:51.867Z", - "time_taken": 2.002, - "request": "5230b0f5-788a-4d12-8708-08a1e5cefce5", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 457, in get_aggregation\n result = compiler.execute_sql(SINGLE)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 476, in get_count\n number = obj.get_aggregation(using, ['__count'])['__count']\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 369, in count\n return self.query.get_count(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\paginator.py\", line 72, in count\n return self.object_list.count()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 35, in __get__\n res = instance.__dict__[self.name] = self.func(instance)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 172, in get_results\n result_count = paginator.count\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 79, in __init__\n self.get_results(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 50, - "fields": { - "query": "SELECT COUNT(*) AS \"__count\" FROM \"core_company\"", - "start_time": "2017-03-27T14:33:51.870Z", - "end_time": "2017-03-27T14:33:51.870Z", - "time_taken": 0.0, - "request": "5230b0f5-788a-4d12-8708-08a1e5cefce5", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 457, in get_aggregation\n result = compiler.execute_sql(SINGLE)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 476, in get_count\n number = obj.get_aggregation(using, ['__count'])['__count']\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 369, in count\n return self.query.get_count(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 176, in get_results\n full_result_count = self.root_queryset.count()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 79, in __init__\n self.get_results(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 51, - "fields": { - "query": "SELECT \"core_company\".\"id\", \"core_company\".\"created\", \"core_company\".\"updated\", \"core_company\".\"user_id\", \"core_company\".\"description\", \"core_company\".\"verified\" FROM \"core_company\" ORDER BY \"core_company\".\"id\" DESC", - "start_time": "2017-03-27T14:33:51.878Z", - "end_time": "2017-03-27T14:33:51.879Z", - "time_taken": 1.0, - "request": "5230b0f5-788a-4d12-8708-08a1e5cefce5", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1657, in changelist_view\n selection_note=_('0 of %(cnt)s selected') % {'cnt': len(cl.result_list)},\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 52, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = 1fih5jt4tc2hl5ww81c0yipoi5szl3r4 AND \"django_session\".\"expire_date\" > 2017-03-27 14:33:52.132358+00:00)", - "start_time": "2017-03-27T14:33:52.136Z", - "end_time": "2017-03-27T14:33:52.141Z", - "time_taken": 5.004, - "request": "76e7547e-885d-4b1f-86e6-29a2931dcdf7", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 53, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:33:52.146Z", - "end_time": "2017-03-27T14:33:52.149Z", - "time_taken": 3.002, - "request": "76e7547e-885d-4b1f-86e6-29a2931dcdf7", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 54, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = 1fih5jt4tc2hl5ww81c0yipoi5szl3r4 AND \"django_session\".\"expire_date\" > 2017-03-27 14:33:54.238764+00:00)", - "start_time": "2017-03-27T14:33:54.243Z", - "end_time": "2017-03-27T14:33:54.247Z", - "time_taken": 4.002, - "request": "538476ed-792a-40ef-ab8a-59383d47a8af", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 55, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:33:54.251Z", - "end_time": "2017-03-27T14:33:54.257Z", - "time_taken": 6.004, - "request": "538476ed-792a-40ef-ab8a-59383d47a8af", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 56, - "fields": { - "query": "SELECT \"core_company\".\"id\", \"core_company\".\"created\", \"core_company\".\"updated\", \"core_company\".\"user_id\", \"core_company\".\"description\", \"core_company\".\"verified\" FROM \"core_company\" WHERE \"core_company\".\"id\" = 1", - "start_time": "2017-03-27T14:33:54.262Z", - "end_time": "2017-03-27T14:33:54.265Z", - "time_taken": 3.003, - "request": "538476ed-792a-40ef-ab8a-59383d47a8af", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 667, in get_object\n return queryset.get(**{field.name: object_id})\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1429, in changeform_view\n obj = self.get_object(request, unquote(object_id), to_field)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1512, in change_view\n return self.changeform_view(request, object_id, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 57, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" ORDER BY \"auth_user\".\"username\" ASC", - "start_time": "2017-03-27T14:33:54.326Z", - "end_time": "2017-03-27T14:33:54.328Z", - "time_taken": 2.001, - "request": "538476ed-792a-40ef-ab8a-59383d47a8af", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1118, in __iter__\n for obj in queryset:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 567, in render_options\n for option_value, option_label in self.choices:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 544, in render\n options = self.render_options([value])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\widgets.py\", line 307, in render\n 'widget': self.widget.render(name, value, *args, **kwargs),\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 101, in as_widget\n return force_text(widget.render(name, self.value(), attrs=attrs))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 43, in __str__\n return self.as_widget()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\html.py\", line 391, in <lambda>\n klass.__str__ = lambda self: mark_safe(klass_str(self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\encoding.py\", line 76, in force_text\n s = six.text_type(s)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1028, in render_value_in_context\n value = force_text(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1050, in render\n return render_value_in_context(output, context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 210, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 210, in render\n return template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 58, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = 1fih5jt4tc2hl5ww81c0yipoi5szl3r4 AND \"django_session\".\"expire_date\" > 2017-03-27 14:33:54.784128+00:00)", - "start_time": "2017-03-27T14:33:54.789Z", - "end_time": "2017-03-27T14:33:54.793Z", - "time_taken": 4.002, - "request": "ce48fc09-aa92-4adb-8bb2-857d8b4427dc", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 59, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:33:54.798Z", - "end_time": "2017-03-27T14:33:54.801Z", - "time_taken": 3.003, - "request": "ce48fc09-aa92-4adb-8bb2-857d8b4427dc", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 60, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = 1fih5jt4tc2hl5ww81c0yipoi5szl3r4 AND \"django_session\".\"expire_date\" > 2017-03-27 14:33:57.680060+00:00)", - "start_time": "2017-03-27T14:33:57.685Z", - "end_time": "2017-03-27T14:33:57.690Z", - "time_taken": 5.003, - "request": "2ad18529-c45b-4cd8-8e86-25dcfe2082d4", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 61, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:33:57.694Z", - "end_time": "2017-03-27T14:33:57.697Z", - "time_taken": 3.002, - "request": "2ad18529-c45b-4cd8-8e86-25dcfe2082d4", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 62, - "fields": { - "query": "SELECT COUNT(*) AS \"__count\" FROM \"core_company\"", - "start_time": "2017-03-27T14:33:57.702Z", - "end_time": "2017-03-27T14:33:57.705Z", - "time_taken": 3.002, - "request": "2ad18529-c45b-4cd8-8e86-25dcfe2082d4", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 457, in get_aggregation\n result = compiler.execute_sql(SINGLE)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 476, in get_count\n number = obj.get_aggregation(using, ['__count'])['__count']\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 369, in count\n return self.query.get_count(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\paginator.py\", line 72, in count\n return self.object_list.count()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 35, in __get__\n res = instance.__dict__[self.name] = self.func(instance)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 172, in get_results\n result_count = paginator.count\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 79, in __init__\n self.get_results(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 63, - "fields": { - "query": "SELECT COUNT(*) AS \"__count\" FROM \"core_company\"", - "start_time": "2017-03-27T14:33:57.709Z", - "end_time": "2017-03-27T14:33:57.709Z", - "time_taken": 0.0, - "request": "2ad18529-c45b-4cd8-8e86-25dcfe2082d4", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 457, in get_aggregation\n result = compiler.execute_sql(SINGLE)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 476, in get_count\n number = obj.get_aggregation(using, ['__count'])['__count']\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 369, in count\n return self.query.get_count(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 176, in get_results\n full_result_count = self.root_queryset.count()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 79, in __init__\n self.get_results(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 64, - "fields": { - "query": "SELECT \"core_company\".\"id\", \"core_company\".\"created\", \"core_company\".\"updated\", \"core_company\".\"user_id\", \"core_company\".\"description\", \"core_company\".\"verified\" FROM \"core_company\" ORDER BY \"core_company\".\"id\" DESC", - "start_time": "2017-03-27T14:33:57.718Z", - "end_time": "2017-03-27T14:33:57.720Z", - "time_taken": 2.002, - "request": "2ad18529-c45b-4cd8-8e86-25dcfe2082d4", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1657, in changelist_view\n selection_note=_('0 of %(cnt)s selected') % {'cnt': len(cl.result_list)},\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 65, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = eaqay773vwjcw6n18xlt68sofnv2q5de AND \"django_session\".\"expire_date\" > 2017-03-27 14:47:00.067164+00:00)", - "start_time": "2017-03-27T14:47:00.086Z", - "end_time": "2017-03-27T14:47:00.091Z", - "time_taken": 5.004, - "request": "59e95cae-0d6d-474c-955e-42ab4de1d36c", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\generic\\base.py\", line 68, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 66, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"username\" = kape", - "start_time": "2017-03-27T14:47:18.624Z", - "end_time": "2017-03-27T14:47:18.628Z", - "time_taken": 4.003, - "request": "3d85b9a4-3b8f-42f0-8c39-aa257dc5088f", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\base_user.py\", line 48, in get_by_natural_key\n return self.get(**{self.model.USERNAME_FIELD: username})\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 17, in authenticate\n user = UserModel._default_manager.get_by_natural_key(username)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 74, in authenticate\n user = backend.authenticate(**credentials)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 96, in authenticate_credentials\n user = authenticate(**credentials)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 86, in authenticate\n return self.authenticate_credentials(userid, password)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\generic\\base.py\", line 68, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 67, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"username\" = kape", - "start_time": "2017-03-27T14:52:05.725Z", - "end_time": "2017-03-27T14:52:05.730Z", - "time_taken": 5.003, - "request": "d42d8683-0db6-4cf9-8ad0-6afdc83d25c0", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\base_user.py\", line 48, in get_by_natural_key\n return self.get(**{self.model.USERNAME_FIELD: username})\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 17, in authenticate\n user = UserModel._default_manager.get_by_natural_key(username)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 74, in authenticate\n user = backend.authenticate(**credentials)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\forms.py\", line 191, in clean\n self.user_cache = authenticate(username=username, password=password)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 398, in _clean_form\n cleaned_data = self.clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 371, in full_clean\n self._clean_form()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 161, in errors\n self.full_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 169, in is_valid\n return self.is_bound and not self.errors\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\views.py\", line 81, in login\n if form.is_valid():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\debug.py\", line 76, in sensitive_post_parameters_wrapper\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\views.py\", line 47, in inner\n return func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 377, in login\n return login(request, **defaults)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 68, - "fields": { - "query": "SELECT (1) AS \"a\" FROM \"django_session\" WHERE \"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov LIMIT 1", - "start_time": "2017-03-27T14:52:05.819Z", - "end_time": "2017-03-27T14:52:05.822Z", - "time_taken": 3.003, - "request": "d42d8683-0db6-4cf9-8ad0-6afdc83d25c0", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\compiler.py\", line 806, in has_results\n return bool(self.execute_sql(SINGLE))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 494, in has_results\n return compiler.has_results()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 660, in exists\n return self.query.has_results(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 46, in exists\n return self.model.objects.filter(session_key=session_key).exists()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 164, in _get_new_session_key\n if not self.exists(session_key):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 50, in create\n self._session_key = self._get_new_session_key()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 311, in cycle_key\n self.create()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 109, in login\n request.session.cycle_key()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\views.py\", line 82, in login\n auth_login(request, form.get_user())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\debug.py\", line 76, in sensitive_post_parameters_wrapper\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\views.py\", line 47, in inner\n return func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 377, in login\n return login(request, **defaults)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 69, - "fields": { - "query": "UPDATE \"auth_user\" SET \"last_login\" = 2017-03-27 14:52:05.825203+00:00 WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:52:05.832Z", - "end_time": "2017-03-27T14:52:05.834Z", - "time_taken": 2.002, - "request": "d42d8683-0db6-4cf9-8ad0-6afdc83d25c0", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\compiler.py\", line 1148, in execute_sql\n cursor = super(SQLUpdateCompiler, self).execute_sql(result_type)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 654, in _update\n return query.get_compiler(self.db).execute_sql(CURSOR)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 939, in _do_update\n return filtered._update(values) > 0\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 889, in _save_table\n forced_update)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 824, in save_base\n updated = self._save_table(raw, cls, force_insert, force_update, using, update_fields)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 796, in save\n force_update=force_update, update_fields=update_fields)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\base_user.py\", line 80, in save\n super(AbstractBaseUser, self).save(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\models.py\", line 25, in update_last_login\n user.save(update_fields=['last_login'])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\dispatch\\dispatcher.py\", line 191, in send\n response = receiver(signal=self, sender=sender, **named)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 130, in login\n user_logged_in.send(sender=user.__class__, request=request, user=user)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\views.py\", line 82, in login\n auth_login(request, form.get_user())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\debug.py\", line 76, in sensitive_post_parameters_wrapper\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\views.py\", line 47, in inner\n return func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 377, in login\n return login(request, **defaults)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 70, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:52:05.976304+00:00)", - "start_time": "2017-03-27T14:52:05.981Z", - "end_time": "2017-03-27T14:52:05.987Z", - "time_taken": 6.004, - "request": "8a384d1d-0241-41ad-a72c-8af9a191b99a", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 71, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:52:05.991Z", - "end_time": "2017-03-27T14:52:05.995Z", - "time_taken": 4.004, - "request": "8a384d1d-0241-41ad-a72c-8af9a191b99a", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 72, - "fields": { - "query": "SELECT \"django_admin_log\".\"id\", \"django_admin_log\".\"action_time\", \"django_admin_log\".\"user_id\", \"django_admin_log\".\"content_type_id\", \"django_admin_log\".\"object_id\", \"django_admin_log\".\"object_repr\", \"django_admin_log\".\"action_flag\", \"django_admin_log\".\"change_message\", \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\", \"django_content_type\".\"id\", \"django_content_type\".\"app_label\", \"django_content_type\".\"model\" FROM \"django_admin_log\" INNER JOIN \"auth_user\" ON (\"django_admin_log\".\"user_id\" = \"auth_user\".\"id\") LEFT OUTER JOIN \"django_content_type\" ON (\"django_admin_log\".\"content_type_id\" = \"django_content_type\".\"id\") WHERE \"django_admin_log\".\"user_id\" = 1 ORDER BY \"django_admin_log\".\"action_time\" DESC LIMIT 10", - "start_time": "2017-03-27T14:52:06.056Z", - "end_time": "2017-03-27T14:52:06.062Z", - "time_taken": 6.005, - "request": "8a384d1d-0241-41ad-a72c-8af9a191b99a", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 260, in __bool__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\smartif.py\", line 96, in <lambda>\n 'not': prefix(8, lambda context, x: not x.eval(context)),\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\smartif.py\", line 83, in eval\n return func(context, self.first)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 308, in render\n match = condition.eval(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 73, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:52:11.812199+00:00)", - "start_time": "2017-03-27T14:52:11.817Z", - "end_time": "2017-03-27T14:52:11.821Z", - "time_taken": 4.004, - "request": "129fb7ed-3688-449c-b959-7203d469086b", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 74, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:52:11.826Z", - "end_time": "2017-03-27T14:52:11.829Z", - "time_taken": 3.002, - "request": "129fb7ed-3688-449c-b959-7203d469086b", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 75, - "fields": { - "query": "SELECT \"auth_group\".\"id\", \"auth_group\".\"name\" FROM \"auth_group\"", - "start_time": "2017-03-27T14:52:11.836Z", - "end_time": "2017-03-27T14:52:11.840Z", - "time_taken": 4.002, - "request": "129fb7ed-3688-449c-b959-7203d469086b", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 256, in __iter__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\fields\\__init__.py\", line 797, in get_choices\n limit_choices_to)]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\filters.py\", line 197, in field_choices\n return field.get_choices(include_blank=False)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\filters.py\", line 170, in __init__\n self.lookup_choices = self.field_choices(field, request, model_admin)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\filters.py\", line 158, in create\n return list_filter_class(field, request, params, model, model_admin, field_path=field_path)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 130, in get_filters\n self.model, self.model_admin, field_path=field_path\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 312, in get_queryset\n filters_use_distinct) = self.get_filters(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 78, in __init__\n self.queryset = self.get_queryset(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 76, - "fields": { - "query": "SELECT COUNT(*) FROM (SELECT DISTINCT \"auth_user\".\"id\" AS Col1, \"auth_user\".\"password\" AS Col2, \"auth_user\".\"last_login\" AS Col3, \"auth_user\".\"is_superuser\" AS Col4, \"auth_user\".\"username\" AS Col5, \"auth_user\".\"first_name\" AS Col6, \"auth_user\".\"last_name\" AS Col7, \"auth_user\".\"email\" AS Col8, \"auth_user\".\"is_staff\" AS Col9, \"auth_user\".\"is_active\" AS Col10, \"auth_user\".\"date_joined\" AS Col11 FROM \"auth_user\") subquery", - "start_time": "2017-03-27T14:52:11.846Z", - "end_time": "2017-03-27T14:52:11.848Z", - "time_taken": 2.002, - "request": "129fb7ed-3688-449c-b959-7203d469086b", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 457, in get_aggregation\n result = compiler.execute_sql(SINGLE)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 476, in get_count\n number = obj.get_aggregation(using, ['__count'])['__count']\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 369, in count\n return self.query.get_count(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\paginator.py\", line 72, in count\n return self.object_list.count()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 35, in __get__\n res = instance.__dict__[self.name] = self.func(instance)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 172, in get_results\n result_count = paginator.count\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 79, in __init__\n self.get_results(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 77, - "fields": { - "query": "SELECT COUNT(*) AS \"__count\" FROM \"auth_user\"", - "start_time": "2017-03-27T14:52:11.851Z", - "end_time": "2017-03-27T14:52:11.852Z", - "time_taken": 1.002, - "request": "129fb7ed-3688-449c-b959-7203d469086b", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 457, in get_aggregation\n result = compiler.execute_sql(SINGLE)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 476, in get_count\n number = obj.get_aggregation(using, ['__count'])['__count']\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 369, in count\n return self.query.get_count(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 176, in get_results\n full_result_count = self.root_queryset.count()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 79, in __init__\n self.get_results(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 78, - "fields": { - "query": "SELECT DISTINCT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" ORDER BY \"auth_user\".\"username\" ASC, \"auth_user\".\"id\" DESC", - "start_time": "2017-03-27T14:52:11.860Z", - "end_time": "2017-03-27T14:52:11.862Z", - "time_taken": 2.001, - "request": "129fb7ed-3688-449c-b959-7203d469086b", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1657, in changelist_view\n selection_note=_('0 of %(cnt)s selected') % {'cnt': len(cl.result_list)},\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 79, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:52:12.136415+00:00)", - "start_time": "2017-03-27T14:52:12.140Z", - "end_time": "2017-03-27T14:52:12.144Z", - "time_taken": 4.003, - "request": "f12da9a5-3ac7-4783-b3cc-ecd92dbb6faf", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 80, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:52:12.149Z", - "end_time": "2017-03-27T14:52:12.153Z", - "time_taken": 4.004, - "request": "f12da9a5-3ac7-4783-b3cc-ecd92dbb6faf", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 81, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:52:18.452630+00:00)", - "start_time": "2017-03-27T14:52:18.456Z", - "end_time": "2017-03-27T14:52:18.460Z", - "time_taken": 4.003, - "request": "baa82de7-859e-47cf-8a41-72e61edd5226", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 82, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:52:18.465Z", - "end_time": "2017-03-27T14:52:18.468Z", - "time_taken": 3.001, - "request": "baa82de7-859e-47cf-8a41-72e61edd5226", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 83, - "fields": { - "query": "SELECT \"django_content_type\".\"id\", \"django_content_type\".\"app_label\", \"django_content_type\".\"model\" FROM \"django_content_type\" WHERE (\"django_content_type\".\"app_label\" = auth AND \"django_content_type\".\"model\" = user)", - "start_time": "2017-03-27T14:52:18.486Z", - "end_time": "2017-03-27T14:52:18.488Z", - "time_taken": 2.001, - "request": "baa82de7-859e-47cf-8a41-72e61edd5226", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\contenttypes\\models.py\", line 52, in get_for_model\n ct = self.get(app_label=opts.app_label, model=opts.model_name)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 64, in get_content_type_for_model\n return ContentType.objects.get_for_model(obj, for_concrete_model=False)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1050, in render_change_form\n 'content_type_id': get_content_type_for_model(self.model).pk,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1506, in changeform_view\n return self.render_change_form(request, context, add=add, change=not add, obj=obj, form_url=form_url)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1509, in add_view\n return self.changeform_view(request, None, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\admin.py\", line 128, in add_view\n extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\debug.py\", line 76, in sensitive_post_parameters_wrapper\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 84, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:52:18.760837+00:00)", - "start_time": "2017-03-27T14:52:18.764Z", - "end_time": "2017-03-27T14:52:18.770Z", - "time_taken": 6.004, - "request": "23f41d67-a675-4ec1-8065-b6efed7133e7", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 85, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:52:18.774Z", - "end_time": "2017-03-27T14:52:18.777Z", - "time_taken": 3.001, - "request": "23f41d67-a675-4ec1-8065-b6efed7133e7", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 86, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:52:22.082052+00:00)", - "start_time": "2017-03-27T14:52:22.086Z", - "end_time": "2017-03-27T14:52:22.091Z", - "time_taken": 5.004, - "request": "dbc2fca4-0983-49f1-b77f-2faa4de8e3c7", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 87, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:52:22.095Z", - "end_time": "2017-03-27T14:52:22.098Z", - "time_taken": 3.002, - "request": "dbc2fca4-0983-49f1-b77f-2faa4de8e3c7", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 88, - "fields": { - "query": "SELECT (1) AS \"a\" FROM \"auth_user\" WHERE \"auth_user\".\"username\" = farhan LIMIT 1", - "start_time": "2017-03-27T14:52:22.109Z", - "end_time": "2017-03-27T14:52:22.110Z", - "time_taken": 1.001, - "request": "dbc2fca4-0983-49f1-b77f-2faa4de8e3c7", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\compiler.py\", line 806, in has_results\n return bool(self.execute_sql(SINGLE))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 494, in has_results\n return compiler.has_results()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 660, in exists\n return self.query.has_results(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1113, in _perform_unique_checks\n if qs.exists():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1018, in validate_unique\n errors = self._perform_unique_checks(unique_checks)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 413, in validate_unique\n self.instance.validate_unique(exclude=exclude)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 404, in _post_clean\n self.validate_unique()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 372, in full_clean\n self._post_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 161, in errors\n self.full_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 169, in is_valid\n return self.is_bound and not self.errors\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1441, in changeform_view\n if form.is_valid():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1509, in add_view\n return self.changeform_view(request, None, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\admin.py\", line 128, in add_view\n extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\debug.py\", line 76, in sensitive_post_parameters_wrapper\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 89, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:52:22.321211+00:00)", - "start_time": "2017-03-27T14:52:22.326Z", - "end_time": "2017-03-27T14:52:22.330Z", - "time_taken": 4.003, - "request": "da06b818-0ead-4cb1-a259-6d8699f8e6d3", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 90, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:52:22.334Z", - "end_time": "2017-03-27T14:52:22.337Z", - "time_taken": 3.003, - "request": "da06b818-0ead-4cb1-a259-6d8699f8e6d3", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 91, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:52:34.664449+00:00)", - "start_time": "2017-03-27T14:52:34.668Z", - "end_time": "2017-03-27T14:52:34.673Z", - "time_taken": 5.004, - "request": "1d5d0c23-fd3f-44da-9141-f0ed95bb2803", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 92, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:52:34.678Z", - "end_time": "2017-03-27T14:52:34.681Z", - "time_taken": 3.002, - "request": "1d5d0c23-fd3f-44da-9141-f0ed95bb2803", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 93, - "fields": { - "query": "SELECT (1) AS \"a\" FROM \"auth_user\" WHERE \"auth_user\".\"username\" = farhan LIMIT 1", - "start_time": "2017-03-27T14:52:34.693Z", - "end_time": "2017-03-27T14:52:34.695Z", - "time_taken": 2.002, - "request": "1d5d0c23-fd3f-44da-9141-f0ed95bb2803", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\compiler.py\", line 806, in has_results\n return bool(self.execute_sql(SINGLE))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 494, in has_results\n return compiler.has_results()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 660, in exists\n return self.query.has_results(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1113, in _perform_unique_checks\n if qs.exists():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1018, in validate_unique\n errors = self._perform_unique_checks(unique_checks)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 413, in validate_unique\n self.instance.validate_unique(exclude=exclude)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 404, in _post_clean\n self.validate_unique()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 372, in full_clean\n self._post_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 161, in errors\n self.full_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 169, in is_valid\n return self.is_bound and not self.errors\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1441, in changeform_view\n if form.is_valid():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1509, in add_view\n return self.changeform_view(request, None, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\admin.py\", line 128, in add_view\n extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\debug.py\", line 76, in sensitive_post_parameters_wrapper\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 94, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:52:34.894602+00:00)", - "start_time": "2017-03-27T14:52:34.899Z", - "end_time": "2017-03-27T14:52:34.905Z", - "time_taken": 6.004, - "request": "993332f5-4b0d-4127-8301-678a5196ca87", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 95, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:52:34.910Z", - "end_time": "2017-03-27T14:52:34.913Z", - "time_taken": 3.004, - "request": "993332f5-4b0d-4127-8301-678a5196ca87", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 96, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 2", - "start_time": "2017-03-27T14:52:34.917Z", - "end_time": "2017-03-27T14:52:34.919Z", - "time_taken": 2.002, - "request": "993332f5-4b0d-4127-8301-678a5196ca87", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 667, in get_object\n return queryset.get(**{field.name: object_id})\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1429, in changeform_view\n obj = self.get_object(request, unquote(object_id), to_field)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1512, in change_view\n return self.changeform_view(request, object_id, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 97, - "fields": { - "query": "SELECT \"auth_group\".\"id\", \"auth_group\".\"name\" FROM \"auth_group\" INNER JOIN \"auth_user_groups\" ON (\"auth_group\".\"id\" = \"auth_user_groups\".\"group_id\") WHERE \"auth_user_groups\".\"user_id\" = 2", - "start_time": "2017-03-27T14:52:35.010Z", - "end_time": "2017-03-27T14:52:35.015Z", - "time_taken": 5.004, - "request": "993332f5-4b0d-4127-8301-678a5196ca87", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 256, in __iter__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1312, in prepare_value\n return [super(ModelMultipleChoiceField, self).prepare_value(v) for v in value]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 137, in value\n return self.field.prepare_value(data)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 101, in as_widget\n return force_text(widget.render(name, self.value(), attrs=attrs))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 43, in __str__\n return self.as_widget()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\html.py\", line 391, in <lambda>\n klass.__str__ = lambda self: mark_safe(klass_str(self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\encoding.py\", line 76, in force_text\n s = six.text_type(s)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1028, in render_value_in_context\n value = force_text(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1050, in render\n return render_value_in_context(output, context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 210, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 210, in render\n return template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 98, - "fields": { - "query": "SELECT \"auth_group\".\"id\", \"auth_group\".\"name\" FROM \"auth_group\" ORDER BY \"auth_group\".\"name\" ASC", - "start_time": "2017-03-27T14:52:35.023Z", - "end_time": "2017-03-27T14:52:35.025Z", - "time_taken": 2.002, - "request": "993332f5-4b0d-4127-8301-678a5196ca87", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1118, in __iter__\n for obj in queryset:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 567, in render_options\n for option_value, option_label in self.choices:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 617, in render\n options = self.render_options(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\widgets.py\", line 49, in render\n output = super(FilteredSelectMultiple, self).render(name, value, attrs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\widgets.py\", line 307, in render\n 'widget': self.widget.render(name, value, *args, **kwargs),\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 101, in as_widget\n return force_text(widget.render(name, self.value(), attrs=attrs))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 43, in __str__\n return self.as_widget()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\html.py\", line 391, in <lambda>\n klass.__str__ = lambda self: mark_safe(klass_str(self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\encoding.py\", line 76, in force_text\n s = six.text_type(s)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1028, in render_value_in_context\n value = force_text(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1050, in render\n return render_value_in_context(output, context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 210, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 210, in render\n return template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 99, - "fields": { - "query": "SELECT \"auth_permission\".\"id\", \"auth_permission\".\"name\", \"auth_permission\".\"content_type_id\", \"auth_permission\".\"codename\" FROM \"auth_permission\" INNER JOIN \"auth_user_user_permissions\" ON (\"auth_permission\".\"id\" = \"auth_user_user_permissions\".\"permission_id\") INNER JOIN \"django_content_type\" ON (\"auth_permission\".\"content_type_id\" = \"django_content_type\".\"id\") WHERE \"auth_user_user_permissions\".\"user_id\" = 2 ORDER BY \"django_content_type\".\"app_label\" ASC, \"django_content_type\".\"model\" ASC, \"auth_permission\".\"codename\" ASC", - "start_time": "2017-03-27T14:52:35.036Z", - "end_time": "2017-03-27T14:52:35.044Z", - "time_taken": 8.005, - "request": "993332f5-4b0d-4127-8301-678a5196ca87", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 256, in __iter__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1312, in prepare_value\n return [super(ModelMultipleChoiceField, self).prepare_value(v) for v in value]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 137, in value\n return self.field.prepare_value(data)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 101, in as_widget\n return force_text(widget.render(name, self.value(), attrs=attrs))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 43, in __str__\n return self.as_widget()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\html.py\", line 391, in <lambda>\n klass.__str__ = lambda self: mark_safe(klass_str(self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\encoding.py\", line 76, in force_text\n s = six.text_type(s)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1028, in render_value_in_context\n value = force_text(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1050, in render\n return render_value_in_context(output, context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 210, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 210, in render\n return template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 100, - "fields": { - "query": "SELECT \"auth_permission\".\"id\", \"auth_permission\".\"name\", \"auth_permission\".\"content_type_id\", \"auth_permission\".\"codename\", \"django_content_type\".\"id\", \"django_content_type\".\"app_label\", \"django_content_type\".\"model\" FROM \"auth_permission\" INNER JOIN \"django_content_type\" ON (\"auth_permission\".\"content_type_id\" = \"django_content_type\".\"id\") ORDER BY \"django_content_type\".\"app_label\" ASC, \"django_content_type\".\"model\" ASC, \"auth_permission\".\"codename\" ASC", - "start_time": "2017-03-27T14:52:35.053Z", - "end_time": "2017-03-27T14:52:35.057Z", - "time_taken": 4.004, - "request": "993332f5-4b0d-4127-8301-678a5196ca87", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1118, in __iter__\n for obj in queryset:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 567, in render_options\n for option_value, option_label in self.choices:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 617, in render\n options = self.render_options(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\widgets.py\", line 49, in render\n output = super(FilteredSelectMultiple, self).render(name, value, attrs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\widgets.py\", line 307, in render\n 'widget': self.widget.render(name, value, *args, **kwargs),\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 101, in as_widget\n return force_text(widget.render(name, self.value(), attrs=attrs))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 43, in __str__\n return self.as_widget()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\html.py\", line 391, in <lambda>\n klass.__str__ = lambda self: mark_safe(klass_str(self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\encoding.py\", line 76, in force_text\n s = six.text_type(s)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1028, in render_value_in_context\n value = force_text(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1050, in render\n return render_value_in_context(output, context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 210, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 210, in render\n return template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 101, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:52:35.326891+00:00)", - "start_time": "2017-03-27T14:52:35.331Z", - "end_time": "2017-03-27T14:52:35.335Z", - "time_taken": 4.003, - "request": "bc6350f5-d212-4f3c-a898-66544f3fc7ec", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 102, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:52:35.341Z", - "end_time": "2017-03-27T14:52:35.344Z", - "time_taken": 3.003, - "request": "bc6350f5-d212-4f3c-a898-66544f3fc7ec", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 103, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:52:50.271865+00:00)", - "start_time": "2017-03-27T14:52:50.274Z", - "end_time": "2017-03-27T14:52:50.278Z", - "time_taken": 4.004, - "request": "77f011df-993c-460a-a23f-8c5dcbb71aea", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 104, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:52:50.283Z", - "end_time": "2017-03-27T14:52:50.286Z", - "time_taken": 3.0, - "request": "77f011df-993c-460a-a23f-8c5dcbb71aea", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 105, - "fields": { - "query": "SELECT \"django_admin_log\".\"id\", \"django_admin_log\".\"action_time\", \"django_admin_log\".\"user_id\", \"django_admin_log\".\"content_type_id\", \"django_admin_log\".\"object_id\", \"django_admin_log\".\"object_repr\", \"django_admin_log\".\"action_flag\", \"django_admin_log\".\"change_message\", \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\", \"django_content_type\".\"id\", \"django_content_type\".\"app_label\", \"django_content_type\".\"model\" FROM \"django_admin_log\" INNER JOIN \"auth_user\" ON (\"django_admin_log\".\"user_id\" = \"auth_user\".\"id\") LEFT OUTER JOIN \"django_content_type\" ON (\"django_admin_log\".\"content_type_id\" = \"django_content_type\".\"id\") WHERE \"django_admin_log\".\"user_id\" = 1 ORDER BY \"django_admin_log\".\"action_time\" DESC LIMIT 10", - "start_time": "2017-03-27T14:52:50.328Z", - "end_time": "2017-03-27T14:52:50.335Z", - "time_taken": 7.006, - "request": "77f011df-993c-460a-a23f-8c5dcbb71aea", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 260, in __bool__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\smartif.py\", line 96, in <lambda>\n 'not': prefix(8, lambda context, x: not x.eval(context)),\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\smartif.py\", line 83, in eval\n return func(context, self.first)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 308, in render\n match = condition.eval(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 106, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:52:55.385277+00:00)", - "start_time": "2017-03-27T14:52:55.389Z", - "end_time": "2017-03-27T14:52:55.395Z", - "time_taken": 6.004, - "request": "52795346-f5d0-4cf5-a883-b377a260b95d", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 107, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:52:55.400Z", - "end_time": "2017-03-27T14:52:55.403Z", - "time_taken": 3.002, - "request": "52795346-f5d0-4cf5-a883-b377a260b95d", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 108, - "fields": { - "query": "SELECT \"auth_group\".\"id\", \"auth_group\".\"name\" FROM \"auth_group\"", - "start_time": "2017-03-27T14:52:55.408Z", - "end_time": "2017-03-27T14:52:55.412Z", - "time_taken": 4.002, - "request": "52795346-f5d0-4cf5-a883-b377a260b95d", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 256, in __iter__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\fields\\__init__.py\", line 797, in get_choices\n limit_choices_to)]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\filters.py\", line 197, in field_choices\n return field.get_choices(include_blank=False)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\filters.py\", line 170, in __init__\n self.lookup_choices = self.field_choices(field, request, model_admin)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\filters.py\", line 158, in create\n return list_filter_class(field, request, params, model, model_admin, field_path=field_path)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 130, in get_filters\n self.model, self.model_admin, field_path=field_path\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 312, in get_queryset\n filters_use_distinct) = self.get_filters(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 78, in __init__\n self.queryset = self.get_queryset(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 109, - "fields": { - "query": "SELECT COUNT(*) FROM (SELECT DISTINCT \"auth_user\".\"id\" AS Col1, \"auth_user\".\"password\" AS Col2, \"auth_user\".\"last_login\" AS Col3, \"auth_user\".\"is_superuser\" AS Col4, \"auth_user\".\"username\" AS Col5, \"auth_user\".\"first_name\" AS Col6, \"auth_user\".\"last_name\" AS Col7, \"auth_user\".\"email\" AS Col8, \"auth_user\".\"is_staff\" AS Col9, \"auth_user\".\"is_active\" AS Col10, \"auth_user\".\"date_joined\" AS Col11 FROM \"auth_user\") subquery", - "start_time": "2017-03-27T14:52:55.416Z", - "end_time": "2017-03-27T14:52:55.419Z", - "time_taken": 3.002, - "request": "52795346-f5d0-4cf5-a883-b377a260b95d", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 457, in get_aggregation\n result = compiler.execute_sql(SINGLE)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 476, in get_count\n number = obj.get_aggregation(using, ['__count'])['__count']\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 369, in count\n return self.query.get_count(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\paginator.py\", line 72, in count\n return self.object_list.count()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 35, in __get__\n res = instance.__dict__[self.name] = self.func(instance)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 172, in get_results\n result_count = paginator.count\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 79, in __init__\n self.get_results(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 110, - "fields": { - "query": "SELECT COUNT(*) AS \"__count\" FROM \"auth_user\"", - "start_time": "2017-03-27T14:52:55.422Z", - "end_time": "2017-03-27T14:52:55.423Z", - "time_taken": 1.0, - "request": "52795346-f5d0-4cf5-a883-b377a260b95d", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 457, in get_aggregation\n result = compiler.execute_sql(SINGLE)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 476, in get_count\n number = obj.get_aggregation(using, ['__count'])['__count']\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 369, in count\n return self.query.get_count(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 176, in get_results\n full_result_count = self.root_queryset.count()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 79, in __init__\n self.get_results(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 111, - "fields": { - "query": "SELECT DISTINCT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" ORDER BY \"auth_user\".\"username\" ASC, \"auth_user\".\"id\" DESC", - "start_time": "2017-03-27T14:52:55.432Z", - "end_time": "2017-03-27T14:52:55.434Z", - "time_taken": 2.003, - "request": "52795346-f5d0-4cf5-a883-b377a260b95d", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1657, in changelist_view\n selection_note=_('0 of %(cnt)s selected') % {'cnt': len(cl.result_list)},\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 112, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:52:55.696484+00:00)", - "start_time": "2017-03-27T14:52:55.701Z", - "end_time": "2017-03-27T14:52:55.705Z", - "time_taken": 4.002, - "request": "9f60293c-f96b-4f99-b14c-af3d7d6ea8b6", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 113, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:52:55.711Z", - "end_time": "2017-03-27T14:52:55.715Z", - "time_taken": 4.001, - "request": "9f60293c-f96b-4f99-b14c-af3d7d6ea8b6", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 114, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:53:00.273540+00:00)", - "start_time": "2017-03-27T14:53:00.277Z", - "end_time": "2017-03-27T14:53:00.281Z", - "time_taken": 4.003, - "request": "978c4c7c-3c00-4248-aaef-730c5880e9a5", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 115, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:53:00.286Z", - "end_time": "2017-03-27T14:53:00.289Z", - "time_taken": 3.002, - "request": "978c4c7c-3c00-4248-aaef-730c5880e9a5", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 116, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:53:00.659797+00:00)", - "start_time": "2017-03-27T14:53:00.663Z", - "end_time": "2017-03-27T14:53:00.669Z", - "time_taken": 6.004, - "request": "1c6c07ac-9b30-4cfb-ba35-ac77fafaf59b", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 117, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:53:00.673Z", - "end_time": "2017-03-27T14:53:00.677Z", - "time_taken": 4.002, - "request": "1c6c07ac-9b30-4cfb-ba35-ac77fafaf59b", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 118, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:53:16.672482+00:00)", - "start_time": "2017-03-27T14:53:16.676Z", - "end_time": "2017-03-27T14:53:16.682Z", - "time_taken": 6.006, - "request": "56d4a802-8642-4f43-922d-29ed8edeb677", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 119, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:53:16.686Z", - "end_time": "2017-03-27T14:53:16.689Z", - "time_taken": 3.002, - "request": "56d4a802-8642-4f43-922d-29ed8edeb677", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 120, - "fields": { - "query": "SELECT (1) AS \"a\" FROM \"auth_user\" WHERE \"auth_user\".\"username\" = farhancorp LIMIT 1", - "start_time": "2017-03-27T14:53:16.699Z", - "end_time": "2017-03-27T14:53:16.700Z", - "time_taken": 1.001, - "request": "56d4a802-8642-4f43-922d-29ed8edeb677", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\compiler.py\", line 806, in has_results\n return bool(self.execute_sql(SINGLE))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 494, in has_results\n return compiler.has_results()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 660, in exists\n return self.query.has_results(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1113, in _perform_unique_checks\n if qs.exists():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1018, in validate_unique\n errors = self._perform_unique_checks(unique_checks)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 413, in validate_unique\n self.instance.validate_unique(exclude=exclude)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 404, in _post_clean\n self.validate_unique()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 372, in full_clean\n self._post_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 161, in errors\n self.full_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 169, in is_valid\n return self.is_bound and not self.errors\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1441, in changeform_view\n if form.is_valid():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1509, in add_view\n return self.changeform_view(request, None, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\admin.py\", line 128, in add_view\n extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\debug.py\", line 76, in sensitive_post_parameters_wrapper\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 121, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:53:16.908641+00:00)", - "start_time": "2017-03-27T14:53:16.912Z", - "end_time": "2017-03-27T14:53:16.917Z", - "time_taken": 5.003, - "request": "4e87e2c8-37bb-4e18-ae40-5fd2f5c2cf4d", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 122, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:53:16.921Z", - "end_time": "2017-03-27T14:53:16.925Z", - "time_taken": 4.002, - "request": "4e87e2c8-37bb-4e18-ae40-5fd2f5c2cf4d", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 123, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:53:28.696507+00:00)", - "start_time": "2017-03-27T14:53:28.701Z", - "end_time": "2017-03-27T14:53:28.705Z", - "time_taken": 4.0, - "request": "8e802c92-c86f-4c93-a58f-5d0f741c46fd", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 124, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:53:28.709Z", - "end_time": "2017-03-27T14:53:28.713Z", - "time_taken": 4.003, - "request": "8e802c92-c86f-4c93-a58f-5d0f741c46fd", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 125, - "fields": { - "query": "SELECT (1) AS \"a\" FROM \"auth_user\" WHERE \"auth_user\".\"username\" = farhancorp LIMIT 1", - "start_time": "2017-03-27T14:53:28.723Z", - "end_time": "2017-03-27T14:53:28.724Z", - "time_taken": 1.0, - "request": "8e802c92-c86f-4c93-a58f-5d0f741c46fd", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\compiler.py\", line 806, in has_results\n return bool(self.execute_sql(SINGLE))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 494, in has_results\n return compiler.has_results()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 660, in exists\n return self.query.has_results(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1113, in _perform_unique_checks\n if qs.exists():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1018, in validate_unique\n errors = self._perform_unique_checks(unique_checks)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 413, in validate_unique\n self.instance.validate_unique(exclude=exclude)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 404, in _post_clean\n self.validate_unique()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 372, in full_clean\n self._post_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 161, in errors\n self.full_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 169, in is_valid\n return self.is_bound and not self.errors\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1441, in changeform_view\n if form.is_valid():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1509, in add_view\n return self.changeform_view(request, None, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\admin.py\", line 128, in add_view\n extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\debug.py\", line 76, in sensitive_post_parameters_wrapper\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 126, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:53:29.041738+00:00)", - "start_time": "2017-03-27T14:53:29.045Z", - "end_time": "2017-03-27T14:53:29.053Z", - "time_taken": 8.006, - "request": "d95c74b4-3cb6-48d3-b8db-51f1858078db", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 127, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:53:29.057Z", - "end_time": "2017-03-27T14:53:29.062Z", - "time_taken": 5.005, - "request": "d95c74b4-3cb6-48d3-b8db-51f1858078db", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 128, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:53:39.573766+00:00)", - "start_time": "2017-03-27T14:53:39.577Z", - "end_time": "2017-03-27T14:53:39.581Z", - "time_taken": 4.003, - "request": "f984e7a0-4d1a-4ebc-9e24-b250f2664a8a", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 129, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:53:39.587Z", - "end_time": "2017-03-27T14:53:39.591Z", - "time_taken": 4.002, - "request": "f984e7a0-4d1a-4ebc-9e24-b250f2664a8a", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 130, - "fields": { - "query": "SELECT (1) AS \"a\" FROM \"auth_user\" WHERE \"auth_user\".\"username\" = farhancorp LIMIT 1", - "start_time": "2017-03-27T14:53:39.602Z", - "end_time": "2017-03-27T14:53:39.603Z", - "time_taken": 1.001, - "request": "f984e7a0-4d1a-4ebc-9e24-b250f2664a8a", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\compiler.py\", line 806, in has_results\n return bool(self.execute_sql(SINGLE))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 494, in has_results\n return compiler.has_results()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 660, in exists\n return self.query.has_results(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1113, in _perform_unique_checks\n if qs.exists():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1018, in validate_unique\n errors = self._perform_unique_checks(unique_checks)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 413, in validate_unique\n self.instance.validate_unique(exclude=exclude)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 404, in _post_clean\n self.validate_unique()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 372, in full_clean\n self._post_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 161, in errors\n self.full_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 169, in is_valid\n return self.is_bound and not self.errors\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1441, in changeform_view\n if form.is_valid():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1509, in add_view\n return self.changeform_view(request, None, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\admin.py\", line 128, in add_view\n extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\debug.py\", line 76, in sensitive_post_parameters_wrapper\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 131, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:53:39.846949+00:00)", - "start_time": "2017-03-27T14:53:39.850Z", - "end_time": "2017-03-27T14:53:39.865Z", - "time_taken": 15.01, - "request": "4b5d1449-118f-44cc-8013-061d1911675b", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 132, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:53:39.870Z", - "end_time": "2017-03-27T14:53:39.873Z", - "time_taken": 3.002, - "request": "4b5d1449-118f-44cc-8013-061d1911675b", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 133, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 3", - "start_time": "2017-03-27T14:53:39.877Z", - "end_time": "2017-03-27T14:53:39.879Z", - "time_taken": 2.002, - "request": "4b5d1449-118f-44cc-8013-061d1911675b", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 667, in get_object\n return queryset.get(**{field.name: object_id})\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1429, in changeform_view\n obj = self.get_object(request, unquote(object_id), to_field)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1512, in change_view\n return self.changeform_view(request, object_id, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 134, - "fields": { - "query": "SELECT \"auth_group\".\"id\", \"auth_group\".\"name\" FROM \"auth_group\" INNER JOIN \"auth_user_groups\" ON (\"auth_group\".\"id\" = \"auth_user_groups\".\"group_id\") WHERE \"auth_user_groups\".\"user_id\" = 3", - "start_time": "2017-03-27T14:53:39.961Z", - "end_time": "2017-03-27T14:53:39.967Z", - "time_taken": 6.004, - "request": "4b5d1449-118f-44cc-8013-061d1911675b", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 256, in __iter__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1312, in prepare_value\n return [super(ModelMultipleChoiceField, self).prepare_value(v) for v in value]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 137, in value\n return self.field.prepare_value(data)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 101, in as_widget\n return force_text(widget.render(name, self.value(), attrs=attrs))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 43, in __str__\n return self.as_widget()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\html.py\", line 391, in <lambda>\n klass.__str__ = lambda self: mark_safe(klass_str(self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\encoding.py\", line 76, in force_text\n s = six.text_type(s)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1028, in render_value_in_context\n value = force_text(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1050, in render\n return render_value_in_context(output, context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 210, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 210, in render\n return template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 135, - "fields": { - "query": "SELECT \"auth_group\".\"id\", \"auth_group\".\"name\" FROM \"auth_group\" ORDER BY \"auth_group\".\"name\" ASC", - "start_time": "2017-03-27T14:53:39.973Z", - "end_time": "2017-03-27T14:53:39.975Z", - "time_taken": 2.002, - "request": "4b5d1449-118f-44cc-8013-061d1911675b", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1118, in __iter__\n for obj in queryset:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 567, in render_options\n for option_value, option_label in self.choices:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 617, in render\n options = self.render_options(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\widgets.py\", line 49, in render\n output = super(FilteredSelectMultiple, self).render(name, value, attrs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\widgets.py\", line 307, in render\n 'widget': self.widget.render(name, value, *args, **kwargs),\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 101, in as_widget\n return force_text(widget.render(name, self.value(), attrs=attrs))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 43, in __str__\n return self.as_widget()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\html.py\", line 391, in <lambda>\n klass.__str__ = lambda self: mark_safe(klass_str(self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\encoding.py\", line 76, in force_text\n s = six.text_type(s)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1028, in render_value_in_context\n value = force_text(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1050, in render\n return render_value_in_context(output, context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 210, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 210, in render\n return template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 136, - "fields": { - "query": "SELECT \"auth_permission\".\"id\", \"auth_permission\".\"name\", \"auth_permission\".\"content_type_id\", \"auth_permission\".\"codename\" FROM \"auth_permission\" INNER JOIN \"auth_user_user_permissions\" ON (\"auth_permission\".\"id\" = \"auth_user_user_permissions\".\"permission_id\") INNER JOIN \"django_content_type\" ON (\"auth_permission\".\"content_type_id\" = \"django_content_type\".\"id\") WHERE \"auth_user_user_permissions\".\"user_id\" = 3 ORDER BY \"django_content_type\".\"app_label\" ASC, \"django_content_type\".\"model\" ASC, \"auth_permission\".\"codename\" ASC", - "start_time": "2017-03-27T14:53:39.988Z", - "end_time": "2017-03-27T14:53:39.996Z", - "time_taken": 8.005, - "request": "4b5d1449-118f-44cc-8013-061d1911675b", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 256, in __iter__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1312, in prepare_value\n return [super(ModelMultipleChoiceField, self).prepare_value(v) for v in value]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 137, in value\n return self.field.prepare_value(data)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 101, in as_widget\n return force_text(widget.render(name, self.value(), attrs=attrs))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 43, in __str__\n return self.as_widget()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\html.py\", line 391, in <lambda>\n klass.__str__ = lambda self: mark_safe(klass_str(self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\encoding.py\", line 76, in force_text\n s = six.text_type(s)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1028, in render_value_in_context\n value = force_text(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1050, in render\n return render_value_in_context(output, context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 210, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 210, in render\n return template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 137, - "fields": { - "query": "SELECT \"auth_permission\".\"id\", \"auth_permission\".\"name\", \"auth_permission\".\"content_type_id\", \"auth_permission\".\"codename\", \"django_content_type\".\"id\", \"django_content_type\".\"app_label\", \"django_content_type\".\"model\" FROM \"auth_permission\" INNER JOIN \"django_content_type\" ON (\"auth_permission\".\"content_type_id\" = \"django_content_type\".\"id\") ORDER BY \"django_content_type\".\"app_label\" ASC, \"django_content_type\".\"model\" ASC, \"auth_permission\".\"codename\" ASC", - "start_time": "2017-03-27T14:53:40.002Z", - "end_time": "2017-03-27T14:53:40.004Z", - "time_taken": 2.002, - "request": "4b5d1449-118f-44cc-8013-061d1911675b", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1118, in __iter__\n for obj in queryset:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 567, in render_options\n for option_value, option_label in self.choices:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 617, in render\n options = self.render_options(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\widgets.py\", line 49, in render\n output = super(FilteredSelectMultiple, self).render(name, value, attrs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\widgets.py\", line 307, in render\n 'widget': self.widget.render(name, value, *args, **kwargs),\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 101, in as_widget\n return force_text(widget.render(name, self.value(), attrs=attrs))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 43, in __str__\n return self.as_widget()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\html.py\", line 391, in <lambda>\n klass.__str__ = lambda self: mark_safe(klass_str(self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\encoding.py\", line 76, in force_text\n s = six.text_type(s)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1028, in render_value_in_context\n value = force_text(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1050, in render\n return render_value_in_context(output, context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 210, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 210, in render\n return template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 138, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:53:40.281238+00:00)", - "start_time": "2017-03-27T14:53:40.286Z", - "end_time": "2017-03-27T14:53:40.290Z", - "time_taken": 4.003, - "request": "4457e90b-4047-4101-ac15-1ebe431cd0de", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 139, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:53:40.295Z", - "end_time": "2017-03-27T14:53:40.299Z", - "time_taken": 4.001, - "request": "4457e90b-4047-4101-ac15-1ebe431cd0de", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 140, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:53:46.360295+00:00)", - "start_time": "2017-03-27T14:53:46.364Z", - "end_time": "2017-03-27T14:53:46.368Z", - "time_taken": 4.003, - "request": "203f7672-48e0-4745-8bd1-1d46567febf2", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 141, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:53:46.373Z", - "end_time": "2017-03-27T14:53:46.378Z", - "time_taken": 5.003, - "request": "203f7672-48e0-4745-8bd1-1d46567febf2", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 142, - "fields": { - "query": "SELECT \"django_admin_log\".\"id\", \"django_admin_log\".\"action_time\", \"django_admin_log\".\"user_id\", \"django_admin_log\".\"content_type_id\", \"django_admin_log\".\"object_id\", \"django_admin_log\".\"object_repr\", \"django_admin_log\".\"action_flag\", \"django_admin_log\".\"change_message\", \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\", \"django_content_type\".\"id\", \"django_content_type\".\"app_label\", \"django_content_type\".\"model\" FROM \"django_admin_log\" INNER JOIN \"auth_user\" ON (\"django_admin_log\".\"user_id\" = \"auth_user\".\"id\") LEFT OUTER JOIN \"django_content_type\" ON (\"django_admin_log\".\"content_type_id\" = \"django_content_type\".\"id\") WHERE \"django_admin_log\".\"user_id\" = 1 ORDER BY \"django_admin_log\".\"action_time\" DESC LIMIT 10", - "start_time": "2017-03-27T14:53:46.422Z", - "end_time": "2017-03-27T14:53:46.429Z", - "time_taken": 7.004, - "request": "203f7672-48e0-4745-8bd1-1d46567febf2", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 260, in __bool__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\smartif.py\", line 96, in <lambda>\n 'not': prefix(8, lambda context, x: not x.eval(context)),\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\smartif.py\", line 83, in eval\n return func(context, self.first)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 308, in render\n match = condition.eval(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 143, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:53:53.671174+00:00)", - "start_time": "2017-03-27T14:53:53.676Z", - "end_time": "2017-03-27T14:53:53.681Z", - "time_taken": 5.003, - "request": "7810b10a-0034-473d-91f0-dc9175a5ea3c", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 144, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:53:53.685Z", - "end_time": "2017-03-27T14:53:53.688Z", - "time_taken": 2.946, - "request": "7810b10a-0034-473d-91f0-dc9175a5ea3c", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 145, - "fields": { - "query": "SELECT \"auth_group\".\"id\", \"auth_group\".\"name\" FROM \"auth_group\"", - "start_time": "2017-03-27T14:53:53.693Z", - "end_time": "2017-03-27T14:53:53.697Z", - "time_taken": 4.003, - "request": "7810b10a-0034-473d-91f0-dc9175a5ea3c", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 256, in __iter__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\fields\\__init__.py\", line 797, in get_choices\n limit_choices_to)]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\filters.py\", line 197, in field_choices\n return field.get_choices(include_blank=False)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\filters.py\", line 170, in __init__\n self.lookup_choices = self.field_choices(field, request, model_admin)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\filters.py\", line 158, in create\n return list_filter_class(field, request, params, model, model_admin, field_path=field_path)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 130, in get_filters\n self.model, self.model_admin, field_path=field_path\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 312, in get_queryset\n filters_use_distinct) = self.get_filters(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 78, in __init__\n self.queryset = self.get_queryset(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 146, - "fields": { - "query": "SELECT COUNT(*) FROM (SELECT DISTINCT \"auth_user\".\"id\" AS Col1, \"auth_user\".\"password\" AS Col2, \"auth_user\".\"last_login\" AS Col3, \"auth_user\".\"is_superuser\" AS Col4, \"auth_user\".\"username\" AS Col5, \"auth_user\".\"first_name\" AS Col6, \"auth_user\".\"last_name\" AS Col7, \"auth_user\".\"email\" AS Col8, \"auth_user\".\"is_staff\" AS Col9, \"auth_user\".\"is_active\" AS Col10, \"auth_user\".\"date_joined\" AS Col11 FROM \"auth_user\") subquery", - "start_time": "2017-03-27T14:53:53.702Z", - "end_time": "2017-03-27T14:53:53.705Z", - "time_taken": 3.002, - "request": "7810b10a-0034-473d-91f0-dc9175a5ea3c", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 457, in get_aggregation\n result = compiler.execute_sql(SINGLE)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 476, in get_count\n number = obj.get_aggregation(using, ['__count'])['__count']\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 369, in count\n return self.query.get_count(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\paginator.py\", line 72, in count\n return self.object_list.count()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 35, in __get__\n res = instance.__dict__[self.name] = self.func(instance)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 172, in get_results\n result_count = paginator.count\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 79, in __init__\n self.get_results(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 147, - "fields": { - "query": "SELECT COUNT(*) AS \"__count\" FROM \"auth_user\"", - "start_time": "2017-03-27T14:53:53.708Z", - "end_time": "2017-03-27T14:53:53.709Z", - "time_taken": 1.001, - "request": "7810b10a-0034-473d-91f0-dc9175a5ea3c", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 457, in get_aggregation\n result = compiler.execute_sql(SINGLE)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 476, in get_count\n number = obj.get_aggregation(using, ['__count'])['__count']\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 369, in count\n return self.query.get_count(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 176, in get_results\n full_result_count = self.root_queryset.count()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 79, in __init__\n self.get_results(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 148, - "fields": { - "query": "SELECT DISTINCT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" ORDER BY \"auth_user\".\"username\" ASC, \"auth_user\".\"id\" DESC", - "start_time": "2017-03-27T14:53:53.717Z", - "end_time": "2017-03-27T14:53:53.720Z", - "time_taken": 3.003, - "request": "7810b10a-0034-473d-91f0-dc9175a5ea3c", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1657, in changelist_view\n selection_note=_('0 of %(cnt)s selected') % {'cnt': len(cl.result_list)},\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 149, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:53:54.033416+00:00)", - "start_time": "2017-03-27T14:53:54.037Z", - "end_time": "2017-03-27T14:53:54.045Z", - "time_taken": 8.007, - "request": "d717b3f3-9a6f-45a2-b4da-5606289f6426", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 150, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:53:54.050Z", - "end_time": "2017-03-27T14:53:54.054Z", - "time_taken": 4.003, - "request": "d717b3f3-9a6f-45a2-b4da-5606289f6426", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 151, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:53:56.575113+00:00)", - "start_time": "2017-03-27T14:53:56.580Z", - "end_time": "2017-03-27T14:53:56.584Z", - "time_taken": 4.007, - "request": "c2ea75e4-8c80-474a-8ca7-b73d6ed51480", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 152, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:53:56.588Z", - "end_time": "2017-03-27T14:53:56.591Z", - "time_taken": 3.003, - "request": "c2ea75e4-8c80-474a-8ca7-b73d6ed51480", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 153, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:53:56.799262+00:00)", - "start_time": "2017-03-27T14:53:56.803Z", - "end_time": "2017-03-27T14:53:56.808Z", - "time_taken": 5.005, - "request": "36c80b59-5c19-49c9-bb78-0bc331cc9ece", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 154, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:53:56.812Z", - "end_time": "2017-03-27T14:53:56.815Z", - "time_taken": 3.001, - "request": "36c80b59-5c19-49c9-bb78-0bc331cc9ece", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 155, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:54:13.961715+00:00)", - "start_time": "2017-03-27T14:54:13.966Z", - "end_time": "2017-03-27T14:54:13.970Z", - "time_taken": 4.002, - "request": "6bc8bd32-3324-4a2a-8a9e-53692e4f80a4", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 156, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:54:13.975Z", - "end_time": "2017-03-27T14:54:13.979Z", - "time_taken": 4.004, - "request": "6bc8bd32-3324-4a2a-8a9e-53692e4f80a4", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 157, - "fields": { - "query": "SELECT (1) AS \"a\" FROM \"auth_user\" WHERE \"auth_user\".\"username\" = farhansuper LIMIT 1", - "start_time": "2017-03-27T14:54:13.990Z", - "end_time": "2017-03-27T14:54:13.991Z", - "time_taken": 1.0, - "request": "6bc8bd32-3324-4a2a-8a9e-53692e4f80a4", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\compiler.py\", line 806, in has_results\n return bool(self.execute_sql(SINGLE))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 494, in has_results\n return compiler.has_results()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 660, in exists\n return self.query.has_results(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1113, in _perform_unique_checks\n if qs.exists():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1018, in validate_unique\n errors = self._perform_unique_checks(unique_checks)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 413, in validate_unique\n self.instance.validate_unique(exclude=exclude)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 404, in _post_clean\n self.validate_unique()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 372, in full_clean\n self._post_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 161, in errors\n self.full_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 169, in is_valid\n return self.is_bound and not self.errors\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1441, in changeform_view\n if form.is_valid():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1509, in add_view\n return self.changeform_view(request, None, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\admin.py\", line 128, in add_view\n extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\debug.py\", line 76, in sensitive_post_parameters_wrapper\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 158, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:54:14.204877+00:00)", - "start_time": "2017-03-27T14:54:14.208Z", - "end_time": "2017-03-27T14:54:14.214Z", - "time_taken": 6.004, - "request": "d4577c81-2b8f-4163-ae1b-1e29d0d161b1", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 159, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:54:14.218Z", - "end_time": "2017-03-27T14:54:14.222Z", - "time_taken": 4.002, - "request": "d4577c81-2b8f-4163-ae1b-1e29d0d161b1", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 160, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:54:46.686919+00:00)", - "start_time": "2017-03-27T14:54:46.690Z", - "end_time": "2017-03-27T14:54:46.694Z", - "time_taken": 4.001, - "request": "b66d940b-e3b9-4ae4-96ee-9b0e684c0e53", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 161, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:54:46.699Z", - "end_time": "2017-03-27T14:54:46.702Z", - "time_taken": 3.002, - "request": "b66d940b-e3b9-4ae4-96ee-9b0e684c0e53", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 162, - "fields": { - "query": "SELECT (1) AS \"a\" FROM \"auth_user\" WHERE \"auth_user\".\"username\" = farhansuper LIMIT 1", - "start_time": "2017-03-27T14:54:46.713Z", - "end_time": "2017-03-27T14:54:46.716Z", - "time_taken": 3.002, - "request": "b66d940b-e3b9-4ae4-96ee-9b0e684c0e53", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\compiler.py\", line 806, in has_results\n return bool(self.execute_sql(SINGLE))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 494, in has_results\n return compiler.has_results()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 660, in exists\n return self.query.has_results(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1113, in _perform_unique_checks\n if qs.exists():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1018, in validate_unique\n errors = self._perform_unique_checks(unique_checks)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 413, in validate_unique\n self.instance.validate_unique(exclude=exclude)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 404, in _post_clean\n self.validate_unique()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 372, in full_clean\n self._post_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 161, in errors\n self.full_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 169, in is_valid\n return self.is_bound and not self.errors\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1441, in changeform_view\n if form.is_valid():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1509, in add_view\n return self.changeform_view(request, None, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\admin.py\", line 128, in add_view\n extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\debug.py\", line 76, in sensitive_post_parameters_wrapper\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 163, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:54:46.979114+00:00)", - "start_time": "2017-03-27T14:54:46.984Z", - "end_time": "2017-03-27T14:54:46.989Z", - "time_taken": 5.004, - "request": "2d83b6c4-f5c0-4bc6-a6d7-90873b98a938", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 164, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:54:46.993Z", - "end_time": "2017-03-27T14:54:46.997Z", - "time_taken": 4.003, - "request": "2d83b6c4-f5c0-4bc6-a6d7-90873b98a938", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 165, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:55:00.525155+00:00)", - "start_time": "2017-03-27T14:55:00.529Z", - "end_time": "2017-03-27T14:55:00.535Z", - "time_taken": 6.004, - "request": "a6de7863-f116-46cd-b4da-4316130a94de", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 166, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:55:00.539Z", - "end_time": "2017-03-27T14:55:00.542Z", - "time_taken": 3.002, - "request": "a6de7863-f116-46cd-b4da-4316130a94de", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 167, - "fields": { - "query": "SELECT (1) AS \"a\" FROM \"auth_user\" WHERE \"auth_user\".\"username\" = farhansuper LIMIT 1", - "start_time": "2017-03-27T14:55:00.553Z", - "end_time": "2017-03-27T14:55:00.554Z", - "time_taken": 1.001, - "request": "a6de7863-f116-46cd-b4da-4316130a94de", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\compiler.py\", line 806, in has_results\n return bool(self.execute_sql(SINGLE))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 494, in has_results\n return compiler.has_results()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 660, in exists\n return self.query.has_results(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1113, in _perform_unique_checks\n if qs.exists():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1018, in validate_unique\n errors = self._perform_unique_checks(unique_checks)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 413, in validate_unique\n self.instance.validate_unique(exclude=exclude)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 404, in _post_clean\n self.validate_unique()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 372, in full_clean\n self._post_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 161, in errors\n self.full_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 169, in is_valid\n return self.is_bound and not self.errors\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1441, in changeform_view\n if form.is_valid():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1509, in add_view\n return self.changeform_view(request, None, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\admin.py\", line 128, in add_view\n extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\debug.py\", line 76, in sensitive_post_parameters_wrapper\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 168, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:55:00.812345+00:00)", - "start_time": "2017-03-27T14:55:00.816Z", - "end_time": "2017-03-27T14:55:00.820Z", - "time_taken": 4.002, - "request": "5baea9fc-2d19-4ce9-9daa-6911342f79a1", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 169, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:55:00.825Z", - "end_time": "2017-03-27T14:55:00.828Z", - "time_taken": 3.002, - "request": "5baea9fc-2d19-4ce9-9daa-6911342f79a1", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 170, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:55:09.234967+00:00)", - "start_time": "2017-03-27T14:55:09.238Z", - "end_time": "2017-03-27T14:55:09.243Z", - "time_taken": 5.004, - "request": "5d854890-b0c8-449d-b3c1-270673eec6b3", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 171, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:55:09.247Z", - "end_time": "2017-03-27T14:55:09.251Z", - "time_taken": 4.004, - "request": "5d854890-b0c8-449d-b3c1-270673eec6b3", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 172, - "fields": { - "query": "SELECT (1) AS \"a\" FROM \"auth_user\" WHERE \"auth_user\".\"username\" = farhansuper LIMIT 1", - "start_time": "2017-03-27T14:55:09.261Z", - "end_time": "2017-03-27T14:55:09.263Z", - "time_taken": 2.003, - "request": "5d854890-b0c8-449d-b3c1-270673eec6b3", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\compiler.py\", line 806, in has_results\n return bool(self.execute_sql(SINGLE))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 494, in has_results\n return compiler.has_results()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 660, in exists\n return self.query.has_results(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1113, in _perform_unique_checks\n if qs.exists():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1018, in validate_unique\n errors = self._perform_unique_checks(unique_checks)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 413, in validate_unique\n self.instance.validate_unique(exclude=exclude)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 404, in _post_clean\n self.validate_unique()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 372, in full_clean\n self._post_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 161, in errors\n self.full_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 169, in is_valid\n return self.is_bound and not self.errors\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1441, in changeform_view\n if form.is_valid():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1509, in add_view\n return self.changeform_view(request, None, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\admin.py\", line 128, in add_view\n extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\debug.py\", line 76, in sensitive_post_parameters_wrapper\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 173, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:55:09.544173+00:00)", - "start_time": "2017-03-27T14:55:09.549Z", - "end_time": "2017-03-27T14:55:09.553Z", - "time_taken": 4.002, - "request": "50dc6132-bfbf-4eeb-acad-4efcf6b8c585", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 174, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:55:09.557Z", - "end_time": "2017-03-27T14:55:09.561Z", - "time_taken": 4.003, - "request": "50dc6132-bfbf-4eeb-acad-4efcf6b8c585", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 175, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 4", - "start_time": "2017-03-27T14:55:09.566Z", - "end_time": "2017-03-27T14:55:09.568Z", - "time_taken": 2.0, - "request": "50dc6132-bfbf-4eeb-acad-4efcf6b8c585", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 667, in get_object\n return queryset.get(**{field.name: object_id})\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1429, in changeform_view\n obj = self.get_object(request, unquote(object_id), to_field)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1512, in change_view\n return self.changeform_view(request, object_id, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 176, - "fields": { - "query": "SELECT \"auth_group\".\"id\", \"auth_group\".\"name\" FROM \"auth_group\" INNER JOIN \"auth_user_groups\" ON (\"auth_group\".\"id\" = \"auth_user_groups\".\"group_id\") WHERE \"auth_user_groups\".\"user_id\" = 4", - "start_time": "2017-03-27T14:55:09.657Z", - "end_time": "2017-03-27T14:55:09.662Z", - "time_taken": 5.004, - "request": "50dc6132-bfbf-4eeb-acad-4efcf6b8c585", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 256, in __iter__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1312, in prepare_value\n return [super(ModelMultipleChoiceField, self).prepare_value(v) for v in value]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 137, in value\n return self.field.prepare_value(data)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 101, in as_widget\n return force_text(widget.render(name, self.value(), attrs=attrs))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 43, in __str__\n return self.as_widget()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\html.py\", line 391, in <lambda>\n klass.__str__ = lambda self: mark_safe(klass_str(self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\encoding.py\", line 76, in force_text\n s = six.text_type(s)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1028, in render_value_in_context\n value = force_text(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1050, in render\n return render_value_in_context(output, context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 210, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 210, in render\n return template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 177, - "fields": { - "query": "SELECT \"auth_group\".\"id\", \"auth_group\".\"name\" FROM \"auth_group\" ORDER BY \"auth_group\".\"name\" ASC", - "start_time": "2017-03-27T14:55:09.668Z", - "end_time": "2017-03-27T14:55:09.669Z", - "time_taken": 1.002, - "request": "50dc6132-bfbf-4eeb-acad-4efcf6b8c585", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1118, in __iter__\n for obj in queryset:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 567, in render_options\n for option_value, option_label in self.choices:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 617, in render\n options = self.render_options(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\widgets.py\", line 49, in render\n output = super(FilteredSelectMultiple, self).render(name, value, attrs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\widgets.py\", line 307, in render\n 'widget': self.widget.render(name, value, *args, **kwargs),\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 101, in as_widget\n return force_text(widget.render(name, self.value(), attrs=attrs))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 43, in __str__\n return self.as_widget()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\html.py\", line 391, in <lambda>\n klass.__str__ = lambda self: mark_safe(klass_str(self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\encoding.py\", line 76, in force_text\n s = six.text_type(s)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1028, in render_value_in_context\n value = force_text(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1050, in render\n return render_value_in_context(output, context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 210, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 210, in render\n return template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 178, - "fields": { - "query": "SELECT \"auth_permission\".\"id\", \"auth_permission\".\"name\", \"auth_permission\".\"content_type_id\", \"auth_permission\".\"codename\" FROM \"auth_permission\" INNER JOIN \"auth_user_user_permissions\" ON (\"auth_permission\".\"id\" = \"auth_user_user_permissions\".\"permission_id\") INNER JOIN \"django_content_type\" ON (\"auth_permission\".\"content_type_id\" = \"django_content_type\".\"id\") WHERE \"auth_user_user_permissions\".\"user_id\" = 4 ORDER BY \"django_content_type\".\"app_label\" ASC, \"django_content_type\".\"model\" ASC, \"auth_permission\".\"codename\" ASC", - "start_time": "2017-03-27T14:55:09.680Z", - "end_time": "2017-03-27T14:55:09.688Z", - "time_taken": 8.004, - "request": "50dc6132-bfbf-4eeb-acad-4efcf6b8c585", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 256, in __iter__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1312, in prepare_value\n return [super(ModelMultipleChoiceField, self).prepare_value(v) for v in value]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 137, in value\n return self.field.prepare_value(data)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 101, in as_widget\n return force_text(widget.render(name, self.value(), attrs=attrs))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 43, in __str__\n return self.as_widget()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\html.py\", line 391, in <lambda>\n klass.__str__ = lambda self: mark_safe(klass_str(self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\encoding.py\", line 76, in force_text\n s = six.text_type(s)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1028, in render_value_in_context\n value = force_text(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1050, in render\n return render_value_in_context(output, context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 210, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 210, in render\n return template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 179, - "fields": { - "query": "SELECT \"auth_permission\".\"id\", \"auth_permission\".\"name\", \"auth_permission\".\"content_type_id\", \"auth_permission\".\"codename\", \"django_content_type\".\"id\", \"django_content_type\".\"app_label\", \"django_content_type\".\"model\" FROM \"auth_permission\" INNER JOIN \"django_content_type\" ON (\"auth_permission\".\"content_type_id\" = \"django_content_type\".\"id\") ORDER BY \"django_content_type\".\"app_label\" ASC, \"django_content_type\".\"model\" ASC, \"auth_permission\".\"codename\" ASC", - "start_time": "2017-03-27T14:55:09.694Z", - "end_time": "2017-03-27T14:55:09.697Z", - "time_taken": 3.002, - "request": "50dc6132-bfbf-4eeb-acad-4efcf6b8c585", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1118, in __iter__\n for obj in queryset:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 567, in render_options\n for option_value, option_label in self.choices:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 617, in render\n options = self.render_options(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\widgets.py\", line 49, in render\n output = super(FilteredSelectMultiple, self).render(name, value, attrs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\widgets.py\", line 307, in render\n 'widget': self.widget.render(name, value, *args, **kwargs),\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 101, in as_widget\n return force_text(widget.render(name, self.value(), attrs=attrs))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 43, in __str__\n return self.as_widget()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\html.py\", line 391, in <lambda>\n klass.__str__ = lambda self: mark_safe(klass_str(self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\encoding.py\", line 76, in force_text\n s = six.text_type(s)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1028, in render_value_in_context\n value = force_text(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1050, in render\n return render_value_in_context(output, context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 210, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 210, in render\n return template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 180, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:55:09.962452+00:00)", - "start_time": "2017-03-27T14:55:09.968Z", - "end_time": "2017-03-27T14:55:09.972Z", - "time_taken": 4.003, - "request": "d3eca652-eebe-4962-938f-a94a842d84d9", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 181, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:55:09.976Z", - "end_time": "2017-03-27T14:55:09.979Z", - "time_taken": 3.002, - "request": "d3eca652-eebe-4962-938f-a94a842d84d9", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 182, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:55:12.801347+00:00)", - "start_time": "2017-03-27T14:55:12.805Z", - "end_time": "2017-03-27T14:55:12.809Z", - "time_taken": 4.002, - "request": "99750c5e-39b0-45ff-a581-ce05b2143394", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 183, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:55:12.813Z", - "end_time": "2017-03-27T14:55:12.817Z", - "time_taken": 4.003, - "request": "99750c5e-39b0-45ff-a581-ce05b2143394", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 184, - "fields": { - "query": "SELECT \"django_admin_log\".\"id\", \"django_admin_log\".\"action_time\", \"django_admin_log\".\"user_id\", \"django_admin_log\".\"content_type_id\", \"django_admin_log\".\"object_id\", \"django_admin_log\".\"object_repr\", \"django_admin_log\".\"action_flag\", \"django_admin_log\".\"change_message\", \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\", \"django_content_type\".\"id\", \"django_content_type\".\"app_label\", \"django_content_type\".\"model\" FROM \"django_admin_log\" INNER JOIN \"auth_user\" ON (\"django_admin_log\".\"user_id\" = \"auth_user\".\"id\") LEFT OUTER JOIN \"django_content_type\" ON (\"django_admin_log\".\"content_type_id\" = \"django_content_type\".\"id\") WHERE \"django_admin_log\".\"user_id\" = 1 ORDER BY \"django_admin_log\".\"action_time\" DESC LIMIT 10", - "start_time": "2017-03-27T14:55:12.860Z", - "end_time": "2017-03-27T14:55:12.868Z", - "time_taken": 8.005, - "request": "99750c5e-39b0-45ff-a581-ce05b2143394", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 260, in __bool__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\smartif.py\", line 96, in <lambda>\n 'not': prefix(8, lambda context, x: not x.eval(context)),\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\smartif.py\", line 83, in eval\n return func(context, self.first)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 308, in render\n match = condition.eval(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 185, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:55:16.737974+00:00)", - "start_time": "2017-03-27T14:55:16.742Z", - "end_time": "2017-03-27T14:55:16.746Z", - "time_taken": 4.002, - "request": "9743506e-3031-4802-b588-b8ce41b20e98", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 186, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:55:16.750Z", - "end_time": "2017-03-27T14:55:16.753Z", - "time_taken": 3.002, - "request": "9743506e-3031-4802-b588-b8ce41b20e98", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 187, - "fields": { - "query": "SELECT COUNT(*) AS \"__count\" FROM \"core_company\"", - "start_time": "2017-03-27T14:55:16.757Z", - "end_time": "2017-03-27T14:55:16.760Z", - "time_taken": 3.002, - "request": "9743506e-3031-4802-b588-b8ce41b20e98", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 457, in get_aggregation\n result = compiler.execute_sql(SINGLE)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 476, in get_count\n number = obj.get_aggregation(using, ['__count'])['__count']\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 369, in count\n return self.query.get_count(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\paginator.py\", line 72, in count\n return self.object_list.count()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 35, in __get__\n res = instance.__dict__[self.name] = self.func(instance)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 172, in get_results\n result_count = paginator.count\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 79, in __init__\n self.get_results(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 188, - "fields": { - "query": "SELECT COUNT(*) AS \"__count\" FROM \"core_company\"", - "start_time": "2017-03-27T14:55:16.763Z", - "end_time": "2017-03-27T14:55:16.764Z", - "time_taken": 1.003, - "request": "9743506e-3031-4802-b588-b8ce41b20e98", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 457, in get_aggregation\n result = compiler.execute_sql(SINGLE)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 476, in get_count\n number = obj.get_aggregation(using, ['__count'])['__count']\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 369, in count\n return self.query.get_count(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 176, in get_results\n full_result_count = self.root_queryset.count()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 79, in __init__\n self.get_results(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 189, - "fields": { - "query": "SELECT \"core_company\".\"id\", \"core_company\".\"created\", \"core_company\".\"updated\", \"core_company\".\"user_id\", \"core_company\".\"description\", \"core_company\".\"verified\" FROM \"core_company\" ORDER BY \"core_company\".\"id\" DESC", - "start_time": "2017-03-27T14:55:16.771Z", - "end_time": "2017-03-27T14:55:16.773Z", - "time_taken": 2.003, - "request": "9743506e-3031-4802-b588-b8ce41b20e98", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1657, in changelist_view\n selection_note=_('0 of %(cnt)s selected') % {'cnt': len(cl.result_list)},\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 190, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:55:16.997148+00:00)", - "start_time": "2017-03-27T14:55:17Z", - "end_time": "2017-03-27T14:55:17.004Z", - "time_taken": 4.003, - "request": "5468cdb0-bd42-4723-8589-125424d50c70", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 191, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:55:17.009Z", - "end_time": "2017-03-27T14:55:17.012Z", - "time_taken": 3.003, - "request": "5468cdb0-bd42-4723-8589-125424d50c70", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 192, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:55:24.631245+00:00)", - "start_time": "2017-03-27T14:55:24.635Z", - "end_time": "2017-03-27T14:55:24.639Z", - "time_taken": 4.002, - "request": "0cdfed90-bb34-446f-930e-952829d4ac39", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 193, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:55:24.643Z", - "end_time": "2017-03-27T14:55:24.647Z", - "time_taken": 4.004, - "request": "0cdfed90-bb34-446f-930e-952829d4ac39", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 194, - "fields": { - "query": "SELECT COUNT(*) AS \"__count\" FROM \"core_company\"", - "start_time": "2017-03-27T14:55:24.652Z", - "end_time": "2017-03-27T14:55:24.654Z", - "time_taken": 2.001, - "request": "0cdfed90-bb34-446f-930e-952829d4ac39", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 457, in get_aggregation\n result = compiler.execute_sql(SINGLE)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 476, in get_count\n number = obj.get_aggregation(using, ['__count'])['__count']\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 369, in count\n return self.query.get_count(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\paginator.py\", line 72, in count\n return self.object_list.count()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 35, in __get__\n res = instance.__dict__[self.name] = self.func(instance)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 172, in get_results\n result_count = paginator.count\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 79, in __init__\n self.get_results(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 195, - "fields": { - "query": "SELECT COUNT(*) AS \"__count\" FROM \"core_company\"", - "start_time": "2017-03-27T14:55:24.657Z", - "end_time": "2017-03-27T14:55:24.657Z", - "time_taken": 0.0, - "request": "0cdfed90-bb34-446f-930e-952829d4ac39", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 457, in get_aggregation\n result = compiler.execute_sql(SINGLE)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 476, in get_count\n number = obj.get_aggregation(using, ['__count'])['__count']\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 369, in count\n return self.query.get_count(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 176, in get_results\n full_result_count = self.root_queryset.count()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 79, in __init__\n self.get_results(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 196, - "fields": { - "query": "SELECT \"core_company\".\"id\", \"core_company\".\"created\", \"core_company\".\"updated\", \"core_company\".\"user_id\", \"core_company\".\"description\", \"core_company\".\"verified\" FROM \"core_company\" WHERE \"core_company\".\"id\" IN (1) ORDER BY \"core_company\".\"id\" DESC", - "start_time": "2017-03-27T14:55:24.664Z", - "end_time": "2017-03-27T14:55:24.666Z", - "time_taken": 2.002, - "request": "0cdfed90-bb34-446f-930e-952829d4ac39", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 256, in __iter__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\utils.py\", line 182, in collect\n for obj in objs:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\utils.py\", line 128, in get_deleted_objects\n collector.collect(objs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\actions.py\", line 37, in delete_selected\n queryset, opts, request.user, modeladmin.admin_site, using)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1305, in response_action\n response = func(self, request, queryset)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1569, in changelist_view\n response = self.response_action(request, queryset=cl.get_queryset(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 197, - "fields": { - "query": "SELECT \"core_vacancy\".\"id\", \"core_vacancy\".\"company_id\", \"core_vacancy\".\"verified\", \"core_vacancy\".\"open_time\", \"core_vacancy\".\"close_time\", \"core_company\".\"id\", \"core_company\".\"created\", \"core_company\".\"updated\", \"core_company\".\"user_id\", \"core_company\".\"description\", \"core_company\".\"verified\" FROM \"core_vacancy\" INNER JOIN \"core_company\" ON (\"core_vacancy\".\"company_id\" = \"core_company\".\"id\") WHERE \"core_vacancy\".\"company_id\" IN (1)", - "start_time": "2017-03-27T14:55:24.672Z", - "end_time": "2017-03-27T14:55:24.675Z", - "time_taken": 3.002, - "request": "0cdfed90-bb34-446f-930e-952829d4ac39", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 260, in __bool__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\deletion.py\", line 226, in collect\n elif sub_objs:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\utils.py\", line 193, in collect\n return super(NestedObjects, self).collect(objs, source_attr=source_attr, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\utils.py\", line 128, in get_deleted_objects\n collector.collect(objs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\actions.py\", line 37, in delete_selected\n queryset, opts, request.user, modeladmin.admin_site, using)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1305, in response_action\n response = func(self, request, queryset)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1569, in changelist_view\n response = self.response_action(request, queryset=cl.get_queryset(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 198, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:55:26.504492+00:00)", - "start_time": "2017-03-27T14:55:26.508Z", - "end_time": "2017-03-27T14:55:26.513Z", - "time_taken": 5.003, - "request": "3f70cfc7-2eb6-4ca0-bb1e-357de168cce2", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 199, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:55:26.517Z", - "end_time": "2017-03-27T14:55:26.520Z", - "time_taken": 3.002, - "request": "3f70cfc7-2eb6-4ca0-bb1e-357de168cce2", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 200, - "fields": { - "query": "SELECT COUNT(*) AS \"__count\" FROM \"core_company\"", - "start_time": "2017-03-27T14:55:26.525Z", - "end_time": "2017-03-27T14:55:26.527Z", - "time_taken": 2.002, - "request": "3f70cfc7-2eb6-4ca0-bb1e-357de168cce2", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 457, in get_aggregation\n result = compiler.execute_sql(SINGLE)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 476, in get_count\n number = obj.get_aggregation(using, ['__count'])['__count']\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 369, in count\n return self.query.get_count(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\paginator.py\", line 72, in count\n return self.object_list.count()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 35, in __get__\n res = instance.__dict__[self.name] = self.func(instance)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 172, in get_results\n result_count = paginator.count\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 79, in __init__\n self.get_results(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 201, - "fields": { - "query": "SELECT COUNT(*) AS \"__count\" FROM \"core_company\"", - "start_time": "2017-03-27T14:55:26.530Z", - "end_time": "2017-03-27T14:55:26.531Z", - "time_taken": 0.999, - "request": "3f70cfc7-2eb6-4ca0-bb1e-357de168cce2", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 457, in get_aggregation\n result = compiler.execute_sql(SINGLE)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 476, in get_count\n number = obj.get_aggregation(using, ['__count'])['__count']\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 369, in count\n return self.query.get_count(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 176, in get_results\n full_result_count = self.root_queryset.count()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 79, in __init__\n self.get_results(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 202, - "fields": { - "query": "SELECT \"core_company\".\"id\", \"core_company\".\"created\", \"core_company\".\"updated\", \"core_company\".\"user_id\", \"core_company\".\"description\", \"core_company\".\"verified\" FROM \"core_company\" WHERE \"core_company\".\"id\" IN (1) ORDER BY \"core_company\".\"id\" DESC", - "start_time": "2017-03-27T14:55:26.536Z", - "end_time": "2017-03-27T14:55:26.538Z", - "time_taken": 2.002, - "request": "3f70cfc7-2eb6-4ca0-bb1e-357de168cce2", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 256, in __iter__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\utils.py\", line 182, in collect\n for obj in objs:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\utils.py\", line 128, in get_deleted_objects\n collector.collect(objs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\actions.py\", line 37, in delete_selected\n queryset, opts, request.user, modeladmin.admin_site, using)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1305, in response_action\n response = func(self, request, queryset)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1585, in changelist_view\n response = self.response_action(request, queryset=cl.get_queryset(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 203, - "fields": { - "query": "SELECT \"core_vacancy\".\"id\", \"core_vacancy\".\"company_id\", \"core_vacancy\".\"verified\", \"core_vacancy\".\"open_time\", \"core_vacancy\".\"close_time\", \"core_company\".\"id\", \"core_company\".\"created\", \"core_company\".\"updated\", \"core_company\".\"user_id\", \"core_company\".\"description\", \"core_company\".\"verified\" FROM \"core_vacancy\" INNER JOIN \"core_company\" ON (\"core_vacancy\".\"company_id\" = \"core_company\".\"id\") WHERE \"core_vacancy\".\"company_id\" IN (1)", - "start_time": "2017-03-27T14:55:26.543Z", - "end_time": "2017-03-27T14:55:26.547Z", - "time_taken": 4.004, - "request": "3f70cfc7-2eb6-4ca0-bb1e-357de168cce2", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 260, in __bool__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\deletion.py\", line 226, in collect\n elif sub_objs:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\utils.py\", line 193, in collect\n return super(NestedObjects, self).collect(objs, source_attr=source_attr, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\utils.py\", line 128, in get_deleted_objects\n collector.collect(objs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\actions.py\", line 37, in delete_selected\n queryset, opts, request.user, modeladmin.admin_site, using)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1305, in response_action\n response = func(self, request, queryset)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1585, in changelist_view\n response = self.response_action(request, queryset=cl.get_queryset(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 204, - "fields": { - "query": "SELECT \"django_content_type\".\"id\", \"django_content_type\".\"app_label\", \"django_content_type\".\"model\" FROM \"django_content_type\" WHERE (\"django_content_type\".\"app_label\" = core AND \"django_content_type\".\"model\" = company)", - "start_time": "2017-03-27T14:55:26.551Z", - "end_time": "2017-03-27T14:55:26.553Z", - "time_taken": 2.003, - "request": "3f70cfc7-2eb6-4ca0-bb1e-357de168cce2", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\contenttypes\\models.py\", line 52, in get_for_model\n ct = self.get(app_label=opts.app_label, model=opts.model_name)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 64, in get_content_type_for_model\n return ContentType.objects.get_for_model(obj, for_concrete_model=False)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 750, in log_deletion\n content_type_id=get_content_type_for_model(object).pk,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\actions.py\", line 48, in delete_selected\n modeladmin.log_deletion(request, obj, obj_display)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1305, in response_action\n response = func(self, request, queryset)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1585, in changelist_view\n response = self.response_action(request, queryset=cl.get_queryset(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 205, - "fields": { - "query": "SELECT \"core_company\".\"id\", \"core_company\".\"created\", \"core_company\".\"updated\", \"core_company\".\"user_id\", \"core_company\".\"description\", \"core_company\".\"verified\" FROM \"core_company\" WHERE \"core_company\".\"id\" IN (1)", - "start_time": "2017-03-27T14:55:26.561Z", - "end_time": "2017-03-27T14:55:26.562Z", - "time_taken": 1.001, - "request": "3f70cfc7-2eb6-4ca0-bb1e-357de168cce2", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 260, in __bool__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\deletion.py\", line 89, in add\n if not objs:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\deletion.py\", line 191, in collect\n reverse_dependency=reverse_dependency)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 608, in delete\n collector.collect(del_query)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\actions.py\", line 49, in delete_selected\n queryset.delete()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1305, in response_action\n response = func(self, request, queryset)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1585, in changelist_view\n response = self.response_action(request, queryset=cl.get_queryset(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 206, - "fields": { - "query": "SELECT \"core_vacancy\".\"id\", \"core_vacancy\".\"company_id\", \"core_vacancy\".\"verified\", \"core_vacancy\".\"open_time\", \"core_vacancy\".\"close_time\" FROM \"core_vacancy\" WHERE \"core_vacancy\".\"company_id\" IN (1)", - "start_time": "2017-03-27T14:55:26.566Z", - "end_time": "2017-03-27T14:55:26.567Z", - "time_taken": 1.001, - "request": "3f70cfc7-2eb6-4ca0-bb1e-357de168cce2", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 260, in __bool__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\deletion.py\", line 226, in collect\n elif sub_objs:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 608, in delete\n collector.collect(del_query)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\actions.py\", line 49, in delete_selected\n queryset.delete()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1305, in response_action\n response = func(self, request, queryset)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1585, in changelist_view\n response = self.response_action(request, queryset=cl.get_queryset(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 207, - "fields": { - "query": "DELETE FROM \"core_company\" WHERE \"core_company\".\"id\" IN (1)", - "start_time": "2017-03-27T14:55:26.571Z", - "end_time": "2017-03-27T14:55:26.572Z", - "time_taken": 1.0, - "request": "3f70cfc7-2eb6-4ca0-bb1e-357de168cce2", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\subqueries.py\", line 28, in do_query\n cursor = self.get_compiler(using).execute_sql(CURSOR)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\subqueries.py\", line 46, in delete_batch\n num_deleted += self.do_query(self.get_meta().db_table, self.where, using=using)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\deletion.py\", line 306, in delete\n count = query.delete_batch(pk_list, self.using)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 609, in delete\n deleted, _rows_count = collector.delete()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\actions.py\", line 49, in delete_selected\n queryset.delete()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1305, in response_action\n response = func(self, request, queryset)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1585, in changelist_view\n response = self.response_action(request, queryset=cl.get_queryset(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 208, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:55:26.796686+00:00)", - "start_time": "2017-03-27T14:55:26.801Z", - "end_time": "2017-03-27T14:55:26.805Z", - "time_taken": 4.003, - "request": "541f40f5-3409-496d-8970-e333aa4efcab", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 209, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:55:26.810Z", - "end_time": "2017-03-27T14:55:26.813Z", - "time_taken": 3.002, - "request": "541f40f5-3409-496d-8970-e333aa4efcab", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 210, - "fields": { - "query": "SELECT COUNT(*) AS \"__count\" FROM \"core_company\"", - "start_time": "2017-03-27T14:55:26.817Z", - "end_time": "2017-03-27T14:55:26.820Z", - "time_taken": 3.002, - "request": "541f40f5-3409-496d-8970-e333aa4efcab", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 457, in get_aggregation\n result = compiler.execute_sql(SINGLE)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 476, in get_count\n number = obj.get_aggregation(using, ['__count'])['__count']\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 369, in count\n return self.query.get_count(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\paginator.py\", line 72, in count\n return self.object_list.count()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 35, in __get__\n res = instance.__dict__[self.name] = self.func(instance)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 172, in get_results\n result_count = paginator.count\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 79, in __init__\n self.get_results(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 211, - "fields": { - "query": "SELECT COUNT(*) AS \"__count\" FROM \"core_company\"", - "start_time": "2017-03-27T14:55:26.823Z", - "end_time": "2017-03-27T14:55:26.824Z", - "time_taken": 1.001, - "request": "541f40f5-3409-496d-8970-e333aa4efcab", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 457, in get_aggregation\n result = compiler.execute_sql(SINGLE)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 476, in get_count\n number = obj.get_aggregation(using, ['__count'])['__count']\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 369, in count\n return self.query.get_count(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 176, in get_results\n full_result_count = self.root_queryset.count()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 79, in __init__\n self.get_results(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 212, - "fields": { - "query": "SELECT \"core_company\".\"id\", \"core_company\".\"created\", \"core_company\".\"updated\", \"core_company\".\"user_id\", \"core_company\".\"description\", \"core_company\".\"verified\" FROM \"core_company\" ORDER BY \"core_company\".\"id\" DESC", - "start_time": "2017-03-27T14:55:26.832Z", - "end_time": "2017-03-27T14:55:26.834Z", - "time_taken": 2.002, - "request": "541f40f5-3409-496d-8970-e333aa4efcab", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1657, in changelist_view\n selection_note=_('0 of %(cnt)s selected') % {'cnt': len(cl.result_list)},\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 213, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:55:27.083878+00:00)", - "start_time": "2017-03-27T14:55:27.087Z", - "end_time": "2017-03-27T14:55:27.094Z", - "time_taken": 7.005, - "request": "f0578b22-8d60-4fb1-ab15-d876fc737597", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 214, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:55:27.098Z", - "end_time": "2017-03-27T14:55:27.101Z", - "time_taken": 3.002, - "request": "f0578b22-8d60-4fb1-ab15-d876fc737597", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 215, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:55:29.637584+00:00)", - "start_time": "2017-03-27T14:55:29.641Z", - "end_time": "2017-03-27T14:55:29.645Z", - "time_taken": 4.002, - "request": "ee6bc742-b098-4527-b8c0-23afb7406905", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 216, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:55:29.649Z", - "end_time": "2017-03-27T14:55:29.653Z", - "time_taken": 4.004, - "request": "ee6bc742-b098-4527-b8c0-23afb7406905", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 217, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" ORDER BY \"auth_user\".\"username\" ASC", - "start_time": "2017-03-27T14:55:29.708Z", - "end_time": "2017-03-27T14:55:29.709Z", - "time_taken": 1.001, - "request": "ee6bc742-b098-4527-b8c0-23afb7406905", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1118, in __iter__\n for obj in queryset:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 567, in render_options\n for option_value, option_label in self.choices:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 544, in render\n options = self.render_options([value])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\widgets.py\", line 307, in render\n 'widget': self.widget.render(name, value, *args, **kwargs),\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 101, in as_widget\n return force_text(widget.render(name, self.value(), attrs=attrs))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 43, in __str__\n return self.as_widget()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\html.py\", line 391, in <lambda>\n klass.__str__ = lambda self: mark_safe(klass_str(self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\encoding.py\", line 76, in force_text\n s = six.text_type(s)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1028, in render_value_in_context\n value = force_text(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1050, in render\n return render_value_in_context(output, context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 210, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 210, in render\n return template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 218, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:55:29.880745+00:00)", - "start_time": "2017-03-27T14:55:29.884Z", - "end_time": "2017-03-27T14:55:29.889Z", - "time_taken": 5.004, - "request": "fe406072-ebcf-4d02-9a33-62aa3efa8c68", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 219, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:55:29.893Z", - "end_time": "2017-03-27T14:55:29.897Z", - "time_taken": 4.004, - "request": "fe406072-ebcf-4d02-9a33-62aa3efa8c68", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 220, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:55:44.637593+00:00)", - "start_time": "2017-03-27T14:55:44.641Z", - "end_time": "2017-03-27T14:55:44.645Z", - "time_taken": 4.002, - "request": "e6e5a6a2-7aa1-467d-8ea7-76e51bbdec78", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 221, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:55:44.650Z", - "end_time": "2017-03-27T14:55:44.653Z", - "time_taken": 3.003, - "request": "e6e5a6a2-7aa1-467d-8ea7-76e51bbdec78", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 222, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 3", - "start_time": "2017-03-27T14:55:44.662Z", - "end_time": "2017-03-27T14:55:44.664Z", - "time_taken": 2.001, - "request": "e6e5a6a2-7aa1-467d-8ea7-76e51bbdec78", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1220, in to_python\n value = self.queryset.get(**{key: value})\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\fields.py\", line 158, in clean\n value = self.to_python(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 388, in _clean_fields\n value = field.clean(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 370, in full_clean\n self._clean_fields()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 161, in errors\n self.full_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 169, in is_valid\n return self.is_bound and not self.errors\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1441, in changeform_view\n if form.is_valid():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1509, in add_view\n return self.changeform_view(request, None, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 223, - "fields": { - "query": "SELECT (1) AS \"a\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 3 LIMIT 1", - "start_time": "2017-03-27T14:55:44.670Z", - "end_time": "2017-03-27T14:55:44.672Z", - "time_taken": 2.001, - "request": "e6e5a6a2-7aa1-467d-8ea7-76e51bbdec78", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\compiler.py\", line 806, in has_results\n return bool(self.execute_sql(SINGLE))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 494, in has_results\n return compiler.has_results()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 660, in exists\n return self.query.has_results(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\fields\\related.py\", line 878, in validate\n if not qs.exists():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\fields\\__init__.py\", line 591, in clean\n self.validate(value, model_instance)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1252, in clean_fields\n setattr(self, f.attname, f.clean(raw_value, self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1210, in full_clean\n self.clean_fields(exclude=exclude)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 398, in _post_clean\n self.instance.full_clean(exclude=exclude, validate_unique=False)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 372, in full_clean\n self._post_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 161, in errors\n self.full_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 169, in is_valid\n return self.is_bound and not self.errors\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1441, in changeform_view\n if form.is_valid():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1509, in add_view\n return self.changeform_view(request, None, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 224, - "fields": { - "query": "SELECT (1) AS \"a\" FROM \"core_company\" WHERE \"core_company\".\"user_id\" = 3 LIMIT 1", - "start_time": "2017-03-27T14:55:44.676Z", - "end_time": "2017-03-27T14:55:44.678Z", - "time_taken": 2.003, - "request": "e6e5a6a2-7aa1-467d-8ea7-76e51bbdec78", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\compiler.py\", line 806, in has_results\n return bool(self.execute_sql(SINGLE))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 494, in has_results\n return compiler.has_results()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 660, in exists\n return self.query.has_results(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1113, in _perform_unique_checks\n if qs.exists():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1018, in validate_unique\n errors = self._perform_unique_checks(unique_checks)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 413, in validate_unique\n self.instance.validate_unique(exclude=exclude)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 404, in _post_clean\n self.validate_unique()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 372, in full_clean\n self._post_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 161, in errors\n self.full_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 169, in is_valid\n return self.is_bound and not self.errors\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1441, in changeform_view\n if form.is_valid():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1509, in add_view\n return self.changeform_view(request, None, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 225, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:55:44.824719+00:00)", - "start_time": "2017-03-27T14:55:44.828Z", - "end_time": "2017-03-27T14:55:44.832Z", - "time_taken": 4.003, - "request": "e6b4aee5-58fc-4a26-9a04-49a066759e8c", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 226, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:55:44.837Z", - "end_time": "2017-03-27T14:55:44.840Z", - "time_taken": 3.002, - "request": "e6b4aee5-58fc-4a26-9a04-49a066759e8c", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 227, - "fields": { - "query": "SELECT COUNT(*) AS \"__count\" FROM \"core_company\"", - "start_time": "2017-03-27T14:55:44.844Z", - "end_time": "2017-03-27T14:55:44.846Z", - "time_taken": 2.002, - "request": "e6b4aee5-58fc-4a26-9a04-49a066759e8c", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 457, in get_aggregation\n result = compiler.execute_sql(SINGLE)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 476, in get_count\n number = obj.get_aggregation(using, ['__count'])['__count']\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 369, in count\n return self.query.get_count(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\paginator.py\", line 72, in count\n return self.object_list.count()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 35, in __get__\n res = instance.__dict__[self.name] = self.func(instance)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 172, in get_results\n result_count = paginator.count\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 79, in __init__\n self.get_results(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 228, - "fields": { - "query": "SELECT COUNT(*) AS \"__count\" FROM \"core_company\"", - "start_time": "2017-03-27T14:55:44.850Z", - "end_time": "2017-03-27T14:55:44.851Z", - "time_taken": 1.001, - "request": "e6b4aee5-58fc-4a26-9a04-49a066759e8c", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 457, in get_aggregation\n result = compiler.execute_sql(SINGLE)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 476, in get_count\n number = obj.get_aggregation(using, ['__count'])['__count']\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 369, in count\n return self.query.get_count(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 176, in get_results\n full_result_count = self.root_queryset.count()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 79, in __init__\n self.get_results(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 229, - "fields": { - "query": "SELECT \"core_company\".\"id\", \"core_company\".\"created\", \"core_company\".\"updated\", \"core_company\".\"user_id\", \"core_company\".\"description\", \"core_company\".\"verified\" FROM \"core_company\" ORDER BY \"core_company\".\"id\" DESC", - "start_time": "2017-03-27T14:55:44.858Z", - "end_time": "2017-03-27T14:55:44.860Z", - "time_taken": 2.003, - "request": "e6b4aee5-58fc-4a26-9a04-49a066759e8c", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1657, in changelist_view\n selection_note=_('0 of %(cnt)s selected') % {'cnt': len(cl.result_list)},\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 230, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:55:45.179955+00:00)", - "start_time": "2017-03-27T14:55:45.183Z", - "end_time": "2017-03-27T14:55:45.188Z", - "time_taken": 5.003, - "request": "70062575-4e0e-42da-8034-f02434dd3991", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 231, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:55:45.195Z", - "end_time": "2017-03-27T14:55:45.199Z", - "time_taken": 4.002, - "request": "70062575-4e0e-42da-8034-f02434dd3991", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 232, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:55:49.094567+00:00)", - "start_time": "2017-03-27T14:55:49.098Z", - "end_time": "2017-03-27T14:55:49.102Z", - "time_taken": 4.004, - "request": "a11dfab9-53c8-4360-b48e-b11c0a11794a", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 233, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:55:49.106Z", - "end_time": "2017-03-27T14:55:49.110Z", - "time_taken": 4.004, - "request": "a11dfab9-53c8-4360-b48e-b11c0a11794a", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 234, - "fields": { - "query": "SELECT \"django_admin_log\".\"id\", \"django_admin_log\".\"action_time\", \"django_admin_log\".\"user_id\", \"django_admin_log\".\"content_type_id\", \"django_admin_log\".\"object_id\", \"django_admin_log\".\"object_repr\", \"django_admin_log\".\"action_flag\", \"django_admin_log\".\"change_message\", \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\", \"django_content_type\".\"id\", \"django_content_type\".\"app_label\", \"django_content_type\".\"model\" FROM \"django_admin_log\" INNER JOIN \"auth_user\" ON (\"django_admin_log\".\"user_id\" = \"auth_user\".\"id\") LEFT OUTER JOIN \"django_content_type\" ON (\"django_admin_log\".\"content_type_id\" = \"django_content_type\".\"id\") WHERE \"django_admin_log\".\"user_id\" = 1 ORDER BY \"django_admin_log\".\"action_time\" DESC LIMIT 10", - "start_time": "2017-03-27T14:55:49.152Z", - "end_time": "2017-03-27T14:55:49.159Z", - "time_taken": 7.005, - "request": "a11dfab9-53c8-4360-b48e-b11c0a11794a", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 260, in __bool__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\smartif.py\", line 96, in <lambda>\n 'not': prefix(8, lambda context, x: not x.eval(context)),\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\smartif.py\", line 83, in eval\n return func(context, self.first)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 308, in render\n match = condition.eval(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 235, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:55:54.117920+00:00)", - "start_time": "2017-03-27T14:55:54.121Z", - "end_time": "2017-03-27T14:55:54.125Z", - "time_taken": 4.001, - "request": "2b21a674-7e8b-4dfe-ab7d-5b2a3e22265e", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 236, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:55:54.130Z", - "end_time": "2017-03-27T14:55:54.134Z", - "time_taken": 4.004, - "request": "2b21a674-7e8b-4dfe-ab7d-5b2a3e22265e", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 237, - "fields": { - "query": "SELECT COUNT(*) AS \"__count\" FROM \"core_student\"", - "start_time": "2017-03-27T14:55:54.139Z", - "end_time": "2017-03-27T14:55:54.142Z", - "time_taken": 3.002, - "request": "2b21a674-7e8b-4dfe-ab7d-5b2a3e22265e", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 457, in get_aggregation\n result = compiler.execute_sql(SINGLE)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 476, in get_count\n number = obj.get_aggregation(using, ['__count'])['__count']\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 369, in count\n return self.query.get_count(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\paginator.py\", line 72, in count\n return self.object_list.count()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 35, in __get__\n res = instance.__dict__[self.name] = self.func(instance)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 172, in get_results\n result_count = paginator.count\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 79, in __init__\n self.get_results(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 238, - "fields": { - "query": "SELECT COUNT(*) AS \"__count\" FROM \"core_student\"", - "start_time": "2017-03-27T14:55:54.146Z", - "end_time": "2017-03-27T14:55:54.147Z", - "time_taken": 1.002, - "request": "2b21a674-7e8b-4dfe-ab7d-5b2a3e22265e", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 457, in get_aggregation\n result = compiler.execute_sql(SINGLE)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 476, in get_count\n number = obj.get_aggregation(using, ['__count'])['__count']\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 369, in count\n return self.query.get_count(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 176, in get_results\n full_result_count = self.root_queryset.count()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 79, in __init__\n self.get_results(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 239, - "fields": { - "query": "SELECT \"core_student\".\"id\", \"core_student\".\"created\", \"core_student\".\"updated\", \"core_student\".\"user_id\", \"core_student\".\"npm\", \"core_student\".\"resume\", \"core_student\".\"phone_number\" FROM \"core_student\" ORDER BY \"core_student\".\"id\" DESC", - "start_time": "2017-03-27T14:55:54.155Z", - "end_time": "2017-03-27T14:55:54.156Z", - "time_taken": 1.001, - "request": "2b21a674-7e8b-4dfe-ab7d-5b2a3e22265e", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1657, in changelist_view\n selection_note=_('0 of %(cnt)s selected') % {'cnt': len(cl.result_list)},\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 240, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:55:54.456145+00:00)", - "start_time": "2017-03-27T14:55:54.474Z", - "end_time": "2017-03-27T14:55:54.479Z", - "time_taken": 5.004, - "request": "f6347d4d-6662-4b8d-baa2-2f87a116b484", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 241, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:55:54.484Z", - "end_time": "2017-03-27T14:55:54.489Z", - "time_taken": 5.004, - "request": "f6347d4d-6662-4b8d-baa2-2f87a116b484", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 242, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:55:56.683632+00:00)", - "start_time": "2017-03-27T14:55:56.688Z", - "end_time": "2017-03-27T14:55:56.692Z", - "time_taken": 4.003, - "request": "61cdb88b-5504-4a53-aab7-7fb04278e75b", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 243, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:55:56.696Z", - "end_time": "2017-03-27T14:55:56.700Z", - "time_taken": 4.003, - "request": "61cdb88b-5504-4a53-aab7-7fb04278e75b", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 244, - "fields": { - "query": "SELECT \"django_content_type\".\"id\", \"django_content_type\".\"app_label\", \"django_content_type\".\"model\" FROM \"django_content_type\" WHERE (\"django_content_type\".\"app_label\" = core AND \"django_content_type\".\"model\" = student)", - "start_time": "2017-03-27T14:55:56.714Z", - "end_time": "2017-03-27T14:55:56.718Z", - "time_taken": 4.003, - "request": "61cdb88b-5504-4a53-aab7-7fb04278e75b", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\contenttypes\\models.py\", line 52, in get_for_model\n ct = self.get(app_label=opts.app_label, model=opts.model_name)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 64, in get_content_type_for_model\n return ContentType.objects.get_for_model(obj, for_concrete_model=False)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1050, in render_change_form\n 'content_type_id': get_content_type_for_model(self.model).pk,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1506, in changeform_view\n return self.render_change_form(request, context, add=add, change=not add, obj=obj, form_url=form_url)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1509, in add_view\n return self.changeform_view(request, None, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 245, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" ORDER BY \"auth_user\".\"username\" ASC", - "start_time": "2017-03-27T14:55:56.766Z", - "end_time": "2017-03-27T14:55:56.768Z", - "time_taken": 2.004, - "request": "61cdb88b-5504-4a53-aab7-7fb04278e75b", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1118, in __iter__\n for obj in queryset:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 567, in render_options\n for option_value, option_label in self.choices:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 544, in render\n options = self.render_options([value])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\widgets.py\", line 307, in render\n 'widget': self.widget.render(name, value, *args, **kwargs),\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 101, in as_widget\n return force_text(widget.render(name, self.value(), attrs=attrs))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 43, in __str__\n return self.as_widget()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\html.py\", line 391, in <lambda>\n klass.__str__ = lambda self: mark_safe(klass_str(self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\encoding.py\", line 76, in force_text\n s = six.text_type(s)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1028, in render_value_in_context\n value = force_text(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1050, in render\n return render_value_in_context(output, context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 210, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 210, in render\n return template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 246, - "fields": { - "query": "SELECT \"core_vacancy\".\"id\", \"core_vacancy\".\"company_id\", \"core_vacancy\".\"verified\", \"core_vacancy\".\"open_time\", \"core_vacancy\".\"close_time\" FROM \"core_vacancy\"", - "start_time": "2017-03-27T14:55:56.785Z", - "end_time": "2017-03-27T14:55:56.787Z", - "time_taken": 2.002, - "request": "61cdb88b-5504-4a53-aab7-7fb04278e75b", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1118, in __iter__\n for obj in queryset:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 567, in render_options\n for option_value, option_label in self.choices:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 617, in render\n options = self.render_options(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\widgets.py\", line 307, in render\n 'widget': self.widget.render(name, value, *args, **kwargs),\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 101, in as_widget\n return force_text(widget.render(name, self.value(), attrs=attrs))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 43, in __str__\n return self.as_widget()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\html.py\", line 391, in <lambda>\n klass.__str__ = lambda self: mark_safe(klass_str(self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\encoding.py\", line 76, in force_text\n s = six.text_type(s)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1028, in render_value_in_context\n value = force_text(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1050, in render\n return render_value_in_context(output, context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 210, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 210, in render\n return template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 247, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:55:56.969823+00:00)", - "start_time": "2017-03-27T14:55:56.973Z", - "end_time": "2017-03-27T14:55:56.977Z", - "time_taken": 4.002, - "request": "3bc5dce1-c38c-4853-b8da-b5f8f1f1eca9", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 248, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:55:56.981Z", - "end_time": "2017-03-27T14:55:56.985Z", - "time_taken": 4.004, - "request": "3bc5dce1-c38c-4853-b8da-b5f8f1f1eca9", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 249, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:56:14.663630+00:00)", - "start_time": "2017-03-27T14:56:14.667Z", - "end_time": "2017-03-27T14:56:14.673Z", - "time_taken": 6.004, - "request": "a92c7b87-6b5f-482a-94aa-f53d3a80ff6d", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 250, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:56:14.678Z", - "end_time": "2017-03-27T14:56:14.682Z", - "time_taken": 4.008, - "request": "a92c7b87-6b5f-482a-94aa-f53d3a80ff6d", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 251, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 2", - "start_time": "2017-03-27T14:56:14.691Z", - "end_time": "2017-03-27T14:56:14.692Z", - "time_taken": 1.005, - "request": "a92c7b87-6b5f-482a-94aa-f53d3a80ff6d", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1220, in to_python\n value = self.queryset.get(**{key: value})\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\fields.py\", line 158, in clean\n value = self.to_python(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 388, in _clean_fields\n value = field.clean(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 370, in full_clean\n self._clean_fields()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 161, in errors\n self.full_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 169, in is_valid\n return self.is_bound and not self.errors\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1441, in changeform_view\n if form.is_valid():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1509, in add_view\n return self.changeform_view(request, None, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 252, - "fields": { - "query": "SELECT (1) AS \"a\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 2 LIMIT 1", - "start_time": "2017-03-27T14:56:14.697Z", - "end_time": "2017-03-27T14:56:14.699Z", - "time_taken": 2.001, - "request": "a92c7b87-6b5f-482a-94aa-f53d3a80ff6d", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\compiler.py\", line 806, in has_results\n return bool(self.execute_sql(SINGLE))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 494, in has_results\n return compiler.has_results()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 660, in exists\n return self.query.has_results(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\fields\\related.py\", line 878, in validate\n if not qs.exists():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\fields\\__init__.py\", line 591, in clean\n self.validate(value, model_instance)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1252, in clean_fields\n setattr(self, f.attname, f.clean(raw_value, self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1210, in full_clean\n self.clean_fields(exclude=exclude)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 398, in _post_clean\n self.instance.full_clean(exclude=exclude, validate_unique=False)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 372, in full_clean\n self._post_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 161, in errors\n self.full_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 169, in is_valid\n return self.is_bound and not self.errors\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1441, in changeform_view\n if form.is_valid():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1509, in add_view\n return self.changeform_view(request, None, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 253, - "fields": { - "query": "SELECT (1) AS \"a\" FROM \"core_student\" WHERE \"core_student\".\"user_id\" = 2 LIMIT 1", - "start_time": "2017-03-27T14:56:14.703Z", - "end_time": "2017-03-27T14:56:14.709Z", - "time_taken": 6.0, - "request": "a92c7b87-6b5f-482a-94aa-f53d3a80ff6d", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\compiler.py\", line 806, in has_results\n return bool(self.execute_sql(SINGLE))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 494, in has_results\n return compiler.has_results()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 660, in exists\n return self.query.has_results(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1113, in _perform_unique_checks\n if qs.exists():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1018, in validate_unique\n errors = self._perform_unique_checks(unique_checks)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 413, in validate_unique\n self.instance.validate_unique(exclude=exclude)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 404, in _post_clean\n self.validate_unique()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 372, in full_clean\n self._post_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 161, in errors\n self.full_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 169, in is_valid\n return self.is_bound and not self.errors\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1441, in changeform_view\n if form.is_valid():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1509, in add_view\n return self.changeform_view(request, None, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 254, - "fields": { - "query": "SELECT (1) AS \"a\" FROM \"core_student\" WHERE \"core_student\".\"npm\" = 1406572321 LIMIT 1", - "start_time": "2017-03-27T14:56:14.713Z", - "end_time": "2017-03-27T14:56:14.714Z", - "time_taken": 1.001, - "request": "a92c7b87-6b5f-482a-94aa-f53d3a80ff6d", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\compiler.py\", line 806, in has_results\n return bool(self.execute_sql(SINGLE))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 494, in has_results\n return compiler.has_results()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 660, in exists\n return self.query.has_results(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1113, in _perform_unique_checks\n if qs.exists():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1018, in validate_unique\n errors = self._perform_unique_checks(unique_checks)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 413, in validate_unique\n self.instance.validate_unique(exclude=exclude)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 404, in _post_clean\n self.validate_unique()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 372, in full_clean\n self._post_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 161, in errors\n self.full_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 169, in is_valid\n return self.is_bound and not self.errors\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1441, in changeform_view\n if form.is_valid():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1509, in add_view\n return self.changeform_view(request, None, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 255, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" ORDER BY \"auth_user\".\"username\" ASC", - "start_time": "2017-03-27T14:56:14.766Z", - "end_time": "2017-03-27T14:56:14.768Z", - "time_taken": 2.002, - "request": "a92c7b87-6b5f-482a-94aa-f53d3a80ff6d", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1118, in __iter__\n for obj in queryset:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 567, in render_options\n for option_value, option_label in self.choices:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 544, in render\n options = self.render_options([value])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\widgets.py\", line 307, in render\n 'widget': self.widget.render(name, value, *args, **kwargs),\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 101, in as_widget\n return force_text(widget.render(name, self.value(), attrs=attrs))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 43, in __str__\n return self.as_widget()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\html.py\", line 391, in <lambda>\n klass.__str__ = lambda self: mark_safe(klass_str(self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\encoding.py\", line 76, in force_text\n s = six.text_type(s)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1028, in render_value_in_context\n value = force_text(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1050, in render\n return render_value_in_context(output, context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 210, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 210, in render\n return template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 256, - "fields": { - "query": "SELECT \"core_vacancy\".\"id\", \"core_vacancy\".\"company_id\", \"core_vacancy\".\"verified\", \"core_vacancy\".\"open_time\", \"core_vacancy\".\"close_time\" FROM \"core_vacancy\"", - "start_time": "2017-03-27T14:56:14.785Z", - "end_time": "2017-03-27T14:56:14.787Z", - "time_taken": 2.002, - "request": "a92c7b87-6b5f-482a-94aa-f53d3a80ff6d", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1118, in __iter__\n for obj in queryset:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 567, in render_options\n for option_value, option_label in self.choices:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 617, in render\n options = self.render_options(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\widgets.py\", line 307, in render\n 'widget': self.widget.render(name, value, *args, **kwargs),\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 101, in as_widget\n return force_text(widget.render(name, self.value(), attrs=attrs))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 43, in __str__\n return self.as_widget()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\html.py\", line 391, in <lambda>\n klass.__str__ = lambda self: mark_safe(klass_str(self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\encoding.py\", line 76, in force_text\n s = six.text_type(s)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1028, in render_value_in_context\n value = force_text(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1050, in render\n return render_value_in_context(output, context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 210, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 210, in render\n return template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 257, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:56:14.992850+00:00)", - "start_time": "2017-03-27T14:56:14.995Z", - "end_time": "2017-03-27T14:56:14.999Z", - "time_taken": 4.002, - "request": "e5f5074b-d001-482c-ae12-05d2879d5249", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 258, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:56:15.004Z", - "end_time": "2017-03-27T14:56:15.009Z", - "time_taken": 5.005, - "request": "e5f5074b-d001-482c-ae12-05d2879d5249", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 259, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:56:21.787384+00:00)", - "start_time": "2017-03-27T14:56:21.791Z", - "end_time": "2017-03-27T14:56:21.796Z", - "time_taken": 5.003, - "request": "3c345fde-221f-429e-9532-478f2318b170", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 260, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:56:21.801Z", - "end_time": "2017-03-27T14:56:21.804Z", - "time_taken": 3.003, - "request": "3c345fde-221f-429e-9532-478f2318b170", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 261, - "fields": { - "query": "SELECT \"django_admin_log\".\"id\", \"django_admin_log\".\"action_time\", \"django_admin_log\".\"user_id\", \"django_admin_log\".\"content_type_id\", \"django_admin_log\".\"object_id\", \"django_admin_log\".\"object_repr\", \"django_admin_log\".\"action_flag\", \"django_admin_log\".\"change_message\", \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\", \"django_content_type\".\"id\", \"django_content_type\".\"app_label\", \"django_content_type\".\"model\" FROM \"django_admin_log\" INNER JOIN \"auth_user\" ON (\"django_admin_log\".\"user_id\" = \"auth_user\".\"id\") LEFT OUTER JOIN \"django_content_type\" ON (\"django_admin_log\".\"content_type_id\" = \"django_content_type\".\"id\") WHERE \"django_admin_log\".\"user_id\" = 1 ORDER BY \"django_admin_log\".\"action_time\" DESC LIMIT 10", - "start_time": "2017-03-27T14:56:21.847Z", - "end_time": "2017-03-27T14:56:21.853Z", - "time_taken": 6.004, - "request": "3c345fde-221f-429e-9532-478f2318b170", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 260, in __bool__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\smartif.py\", line 96, in <lambda>\n 'not': prefix(8, lambda context, x: not x.eval(context)),\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\smartif.py\", line 83, in eval\n return func(context, self.first)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 308, in render\n match = condition.eval(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 262, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:56:26.517541+00:00)", - "start_time": "2017-03-27T14:56:26.522Z", - "end_time": "2017-03-27T14:56:26.527Z", - "time_taken": 5.005, - "request": "32dad80d-8c1a-4d75-96ae-8cb1811fcd3f", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 263, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:56:26.531Z", - "end_time": "2017-03-27T14:56:26.535Z", - "time_taken": 4.003, - "request": "32dad80d-8c1a-4d75-96ae-8cb1811fcd3f", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 264, - "fields": { - "query": "SELECT COUNT(*) AS \"__count\" FROM \"core_student\"", - "start_time": "2017-03-27T14:56:26.540Z", - "end_time": "2017-03-27T14:56:26.543Z", - "time_taken": 3.001, - "request": "32dad80d-8c1a-4d75-96ae-8cb1811fcd3f", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 457, in get_aggregation\n result = compiler.execute_sql(SINGLE)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 476, in get_count\n number = obj.get_aggregation(using, ['__count'])['__count']\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 369, in count\n return self.query.get_count(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\paginator.py\", line 72, in count\n return self.object_list.count()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 35, in __get__\n res = instance.__dict__[self.name] = self.func(instance)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 172, in get_results\n result_count = paginator.count\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 79, in __init__\n self.get_results(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 265, - "fields": { - "query": "SELECT COUNT(*) AS \"__count\" FROM \"core_student\"", - "start_time": "2017-03-27T14:56:26.547Z", - "end_time": "2017-03-27T14:56:26.548Z", - "time_taken": 1.0, - "request": "32dad80d-8c1a-4d75-96ae-8cb1811fcd3f", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 457, in get_aggregation\n result = compiler.execute_sql(SINGLE)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 476, in get_count\n number = obj.get_aggregation(using, ['__count'])['__count']\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 369, in count\n return self.query.get_count(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 176, in get_results\n full_result_count = self.root_queryset.count()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 79, in __init__\n self.get_results(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 266, - "fields": { - "query": "SELECT \"core_student\".\"id\", \"core_student\".\"created\", \"core_student\".\"updated\", \"core_student\".\"user_id\", \"core_student\".\"npm\", \"core_student\".\"resume\", \"core_student\".\"phone_number\" FROM \"core_student\" ORDER BY \"core_student\".\"id\" DESC", - "start_time": "2017-03-27T14:56:26.555Z", - "end_time": "2017-03-27T14:56:26.557Z", - "time_taken": 2.001, - "request": "32dad80d-8c1a-4d75-96ae-8cb1811fcd3f", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1657, in changelist_view\n selection_note=_('0 of %(cnt)s selected') % {'cnt': len(cl.result_list)},\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 267, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:56:26.776715+00:00)", - "start_time": "2017-03-27T14:56:26.780Z", - "end_time": "2017-03-27T14:56:26.784Z", - "time_taken": 4.003, - "request": "efb8ec32-b2e0-49d1-9f62-d83ba32057b5", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 268, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:56:26.788Z", - "end_time": "2017-03-27T14:56:26.793Z", - "time_taken": 5.004, - "request": "efb8ec32-b2e0-49d1-9f62-d83ba32057b5", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 269, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:56:29.045228+00:00)", - "start_time": "2017-03-27T14:56:29.049Z", - "end_time": "2017-03-27T14:56:29.054Z", - "time_taken": 5.004, - "request": "994f0918-8f9e-4251-a568-e1dce4bec3fa", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 270, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:56:29.058Z", - "end_time": "2017-03-27T14:56:29.061Z", - "time_taken": 3.001, - "request": "994f0918-8f9e-4251-a568-e1dce4bec3fa", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 271, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" ORDER BY \"auth_user\".\"username\" ASC", - "start_time": "2017-03-27T14:56:29.137Z", - "end_time": "2017-03-27T14:56:29.140Z", - "time_taken": 3.003, - "request": "994f0918-8f9e-4251-a568-e1dce4bec3fa", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1118, in __iter__\n for obj in queryset:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 567, in render_options\n for option_value, option_label in self.choices:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 544, in render\n options = self.render_options([value])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\widgets.py\", line 307, in render\n 'widget': self.widget.render(name, value, *args, **kwargs),\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 101, in as_widget\n return force_text(widget.render(name, self.value(), attrs=attrs))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 43, in __str__\n return self.as_widget()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\html.py\", line 391, in <lambda>\n klass.__str__ = lambda self: mark_safe(klass_str(self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\encoding.py\", line 76, in force_text\n s = six.text_type(s)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1028, in render_value_in_context\n value = force_text(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1050, in render\n return render_value_in_context(output, context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 210, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 210, in render\n return template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 272, - "fields": { - "query": "SELECT \"core_vacancy\".\"id\", \"core_vacancy\".\"company_id\", \"core_vacancy\".\"verified\", \"core_vacancy\".\"open_time\", \"core_vacancy\".\"close_time\" FROM \"core_vacancy\"", - "start_time": "2017-03-27T14:56:29.170Z", - "end_time": "2017-03-27T14:56:29.173Z", - "time_taken": 2.999, - "request": "994f0918-8f9e-4251-a568-e1dce4bec3fa", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1118, in __iter__\n for obj in queryset:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 567, in render_options\n for option_value, option_label in self.choices:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 617, in render\n options = self.render_options(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\widgets.py\", line 307, in render\n 'widget': self.widget.render(name, value, *args, **kwargs),\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 101, in as_widget\n return force_text(widget.render(name, self.value(), attrs=attrs))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 43, in __str__\n return self.as_widget()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\html.py\", line 391, in <lambda>\n klass.__str__ = lambda self: mark_safe(klass_str(self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\encoding.py\", line 76, in force_text\n s = six.text_type(s)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1028, in render_value_in_context\n value = force_text(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1050, in render\n return render_value_in_context(output, context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 210, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 210, in render\n return template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 273, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:56:29.379451+00:00)", - "start_time": "2017-03-27T14:56:29.383Z", - "end_time": "2017-03-27T14:56:29.389Z", - "time_taken": 6.006, - "request": "565a9250-4770-4b87-a72e-5463d634999d", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 274, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:56:29.394Z", - "end_time": "2017-03-27T14:56:29.397Z", - "time_taken": 3.002, - "request": "565a9250-4770-4b87-a72e-5463d634999d", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 275, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:57:02.399894+00:00)", - "start_time": "2017-03-27T14:57:02.405Z", - "end_time": "2017-03-27T14:57:02.547Z", - "time_taken": 142.096, - "request": "f94edfdb-6f55-433f-b377-927783328dbf", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 276, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:57:02.555Z", - "end_time": "2017-03-27T14:57:02.635Z", - "time_taken": 80.052, - "request": "f94edfdb-6f55-433f-b377-927783328dbf", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 277, - "fields": { - "query": "SELECT \"django_content_type\".\"id\", \"django_content_type\".\"app_label\", \"django_content_type\".\"model\" FROM \"django_content_type\" WHERE (\"django_content_type\".\"app_label\" = core AND \"django_content_type\".\"model\" = vacancy)", - "start_time": "2017-03-27T14:57:02.651Z", - "end_time": "2017-03-27T14:57:02.701Z", - "time_taken": 50.033, - "request": "f94edfdb-6f55-433f-b377-927783328dbf", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\contenttypes\\models.py\", line 52, in get_for_model\n ct = self.get(app_label=opts.app_label, model=opts.model_name)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 64, in get_content_type_for_model\n return ContentType.objects.get_for_model(obj, for_concrete_model=False)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1050, in render_change_form\n 'content_type_id': get_content_type_for_model(self.model).pk,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1506, in changeform_view\n return self.render_change_form(request, context, add=add, change=not add, obj=obj, form_url=form_url)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1509, in add_view\n return self.changeform_view(request, None, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 278, - "fields": { - "query": "SELECT \"core_company\".\"id\", \"core_company\".\"created\", \"core_company\".\"updated\", \"core_company\".\"user_id\", \"core_company\".\"description\", \"core_company\".\"verified\" FROM \"core_company\"", - "start_time": "2017-03-27T14:57:02.826Z", - "end_time": "2017-03-27T14:57:02.878Z", - "time_taken": 52.035, - "request": "f94edfdb-6f55-433f-b377-927783328dbf", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1118, in __iter__\n for obj in queryset:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 567, in render_options\n for option_value, option_label in self.choices:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 544, in render\n options = self.render_options([value])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\widgets.py\", line 307, in render\n 'widget': self.widget.render(name, value, *args, **kwargs),\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 101, in as_widget\n return force_text(widget.render(name, self.value(), attrs=attrs))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 43, in __str__\n return self.as_widget()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\html.py\", line 391, in <lambda>\n klass.__str__ = lambda self: mark_safe(klass_str(self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\encoding.py\", line 76, in force_text\n s = six.text_type(s)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1028, in render_value_in_context\n value = force_text(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1050, in render\n return render_value_in_context(output, context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 210, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 210, in render\n return template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 279, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:57:03.826847+00:00)", - "start_time": "2017-03-27T14:57:03.830Z", - "end_time": "2017-03-27T14:57:03.837Z", - "time_taken": 7.007, - "request": "2813ca7c-e78e-44b5-9011-54baf7129682", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 280, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:57:03.841Z", - "end_time": "2017-03-27T14:57:03.845Z", - "time_taken": 4.003, - "request": "2813ca7c-e78e-44b5-9011-54baf7129682", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 281, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:57:06.336522+00:00)", - "start_time": "2017-03-27T14:57:06.340Z", - "end_time": "2017-03-27T14:57:06.344Z", - "time_taken": 4.003, - "request": "05e7aa77-3994-4302-acac-e22df0daa344", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 282, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:57:06.350Z", - "end_time": "2017-03-27T14:57:06.353Z", - "time_taken": 3.001, - "request": "05e7aa77-3994-4302-acac-e22df0daa344", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 283, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 2", - "start_time": "2017-03-27T14:57:06.361Z", - "end_time": "2017-03-27T14:57:06.363Z", - "time_taken": 2.002, - "request": "05e7aa77-3994-4302-acac-e22df0daa344", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1220, in to_python\n value = self.queryset.get(**{key: value})\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\fields.py\", line 158, in clean\n value = self.to_python(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 388, in _clean_fields\n value = field.clean(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 370, in full_clean\n self._clean_fields()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 161, in errors\n self.full_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 169, in is_valid\n return self.is_bound and not self.errors\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1441, in changeform_view\n if form.is_valid():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1509, in add_view\n return self.changeform_view(request, None, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 284, - "fields": { - "query": "SELECT (1) AS \"a\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 2 LIMIT 1", - "start_time": "2017-03-27T14:57:06.371Z", - "end_time": "2017-03-27T14:57:06.372Z", - "time_taken": 1.001, - "request": "05e7aa77-3994-4302-acac-e22df0daa344", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\compiler.py\", line 806, in has_results\n return bool(self.execute_sql(SINGLE))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 494, in has_results\n return compiler.has_results()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 660, in exists\n return self.query.has_results(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\fields\\related.py\", line 878, in validate\n if not qs.exists():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\fields\\__init__.py\", line 591, in clean\n self.validate(value, model_instance)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1252, in clean_fields\n setattr(self, f.attname, f.clean(raw_value, self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1210, in full_clean\n self.clean_fields(exclude=exclude)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 398, in _post_clean\n self.instance.full_clean(exclude=exclude, validate_unique=False)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 372, in full_clean\n self._post_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 161, in errors\n self.full_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 169, in is_valid\n return self.is_bound and not self.errors\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1441, in changeform_view\n if form.is_valid():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1509, in add_view\n return self.changeform_view(request, None, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 285, - "fields": { - "query": "SELECT (1) AS \"a\" FROM \"core_student\" WHERE \"core_student\".\"user_id\" = 2 LIMIT 1", - "start_time": "2017-03-27T14:57:06.377Z", - "end_time": "2017-03-27T14:57:06.382Z", - "time_taken": 5.004, - "request": "05e7aa77-3994-4302-acac-e22df0daa344", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\compiler.py\", line 806, in has_results\n return bool(self.execute_sql(SINGLE))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 494, in has_results\n return compiler.has_results()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 660, in exists\n return self.query.has_results(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1113, in _perform_unique_checks\n if qs.exists():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1018, in validate_unique\n errors = self._perform_unique_checks(unique_checks)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 413, in validate_unique\n self.instance.validate_unique(exclude=exclude)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 404, in _post_clean\n self.validate_unique()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 372, in full_clean\n self._post_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 161, in errors\n self.full_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 169, in is_valid\n return self.is_bound and not self.errors\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1441, in changeform_view\n if form.is_valid():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1509, in add_view\n return self.changeform_view(request, None, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 286, - "fields": { - "query": "SELECT (1) AS \"a\" FROM \"core_student\" WHERE \"core_student\".\"npm\" = 1406572321 LIMIT 1", - "start_time": "2017-03-27T14:57:06.386Z", - "end_time": "2017-03-27T14:57:06.387Z", - "time_taken": 1.003, - "request": "05e7aa77-3994-4302-acac-e22df0daa344", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\compiler.py\", line 806, in has_results\n return bool(self.execute_sql(SINGLE))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 494, in has_results\n return compiler.has_results()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 660, in exists\n return self.query.has_results(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1113, in _perform_unique_checks\n if qs.exists():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1018, in validate_unique\n errors = self._perform_unique_checks(unique_checks)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 413, in validate_unique\n self.instance.validate_unique(exclude=exclude)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 404, in _post_clean\n self.validate_unique()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 372, in full_clean\n self._post_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 161, in errors\n self.full_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 169, in is_valid\n return self.is_bound and not self.errors\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1441, in changeform_view\n if form.is_valid():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1509, in add_view\n return self.changeform_view(request, None, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 287, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" ORDER BY \"auth_user\".\"username\" ASC", - "start_time": "2017-03-27T14:57:06.439Z", - "end_time": "2017-03-27T14:57:06.441Z", - "time_taken": 2.004, - "request": "05e7aa77-3994-4302-acac-e22df0daa344", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1118, in __iter__\n for obj in queryset:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 567, in render_options\n for option_value, option_label in self.choices:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 544, in render\n options = self.render_options([value])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\widgets.py\", line 307, in render\n 'widget': self.widget.render(name, value, *args, **kwargs),\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 101, in as_widget\n return force_text(widget.render(name, self.value(), attrs=attrs))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 43, in __str__\n return self.as_widget()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\html.py\", line 391, in <lambda>\n klass.__str__ = lambda self: mark_safe(klass_str(self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\encoding.py\", line 76, in force_text\n s = six.text_type(s)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1028, in render_value_in_context\n value = force_text(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1050, in render\n return render_value_in_context(output, context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 210, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 210, in render\n return template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 288, - "fields": { - "query": "SELECT \"core_vacancy\".\"id\", \"core_vacancy\".\"company_id\", \"core_vacancy\".\"verified\", \"core_vacancy\".\"open_time\", \"core_vacancy\".\"close_time\" FROM \"core_vacancy\"", - "start_time": "2017-03-27T14:57:06.459Z", - "end_time": "2017-03-27T14:57:06.461Z", - "time_taken": 2.002, - "request": "05e7aa77-3994-4302-acac-e22df0daa344", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1118, in __iter__\n for obj in queryset:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 567, in render_options\n for option_value, option_label in self.choices:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 617, in render\n options = self.render_options(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\widgets.py\", line 307, in render\n 'widget': self.widget.render(name, value, *args, **kwargs),\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 101, in as_widget\n return force_text(widget.render(name, self.value(), attrs=attrs))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 43, in __str__\n return self.as_widget()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\html.py\", line 391, in <lambda>\n klass.__str__ = lambda self: mark_safe(klass_str(self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\encoding.py\", line 76, in force_text\n s = six.text_type(s)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1028, in render_value_in_context\n value = force_text(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1050, in render\n return render_value_in_context(output, context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 210, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 210, in render\n return template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 289, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:57:06.749798+00:00)", - "start_time": "2017-03-27T14:57:06.753Z", - "end_time": "2017-03-27T14:57:06.757Z", - "time_taken": 4.004, - "request": "0cbe92e1-c115-4fcd-96f0-c8ba9d0d23b9", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 290, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:57:06.761Z", - "end_time": "2017-03-27T14:57:06.765Z", - "time_taken": 4.003, - "request": "0cbe92e1-c115-4fcd-96f0-c8ba9d0d23b9", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 291, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:58:05.770934+00:00)", - "start_time": "2017-03-27T14:58:05.774Z", - "end_time": "2017-03-27T14:58:05.780Z", - "time_taken": 6.005, - "request": "710b16dc-80e1-4366-b71f-219940321f75", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 292, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:58:05.784Z", - "end_time": "2017-03-27T14:58:05.787Z", - "time_taken": 3.002, - "request": "710b16dc-80e1-4366-b71f-219940321f75", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 293, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 2", - "start_time": "2017-03-27T14:58:05.799Z", - "end_time": "2017-03-27T14:58:05.800Z", - "time_taken": 0.999, - "request": "710b16dc-80e1-4366-b71f-219940321f75", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1220, in to_python\n value = self.queryset.get(**{key: value})\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\fields.py\", line 158, in clean\n value = self.to_python(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 388, in _clean_fields\n value = field.clean(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 370, in full_clean\n self._clean_fields()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 161, in errors\n self.full_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 169, in is_valid\n return self.is_bound and not self.errors\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1441, in changeform_view\n if form.is_valid():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1509, in add_view\n return self.changeform_view(request, None, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 294, - "fields": { - "query": "SELECT (1) AS \"a\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 2 LIMIT 1", - "start_time": "2017-03-27T14:58:05.805Z", - "end_time": "2017-03-27T14:58:05.807Z", - "time_taken": 2.001, - "request": "710b16dc-80e1-4366-b71f-219940321f75", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\compiler.py\", line 806, in has_results\n return bool(self.execute_sql(SINGLE))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 494, in has_results\n return compiler.has_results()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 660, in exists\n return self.query.has_results(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\fields\\related.py\", line 878, in validate\n if not qs.exists():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\fields\\__init__.py\", line 591, in clean\n self.validate(value, model_instance)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1252, in clean_fields\n setattr(self, f.attname, f.clean(raw_value, self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1210, in full_clean\n self.clean_fields(exclude=exclude)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 398, in _post_clean\n self.instance.full_clean(exclude=exclude, validate_unique=False)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 372, in full_clean\n self._post_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 161, in errors\n self.full_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 169, in is_valid\n return self.is_bound and not self.errors\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1441, in changeform_view\n if form.is_valid():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1509, in add_view\n return self.changeform_view(request, None, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 295, - "fields": { - "query": "SELECT (1) AS \"a\" FROM \"core_student\" WHERE \"core_student\".\"user_id\" = 2 LIMIT 1", - "start_time": "2017-03-27T14:58:05.812Z", - "end_time": "2017-03-27T14:58:05.815Z", - "time_taken": 3.003, - "request": "710b16dc-80e1-4366-b71f-219940321f75", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\compiler.py\", line 806, in has_results\n return bool(self.execute_sql(SINGLE))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 494, in has_results\n return compiler.has_results()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 660, in exists\n return self.query.has_results(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1113, in _perform_unique_checks\n if qs.exists():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1018, in validate_unique\n errors = self._perform_unique_checks(unique_checks)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 413, in validate_unique\n self.instance.validate_unique(exclude=exclude)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 404, in _post_clean\n self.validate_unique()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 372, in full_clean\n self._post_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 161, in errors\n self.full_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 169, in is_valid\n return self.is_bound and not self.errors\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1441, in changeform_view\n if form.is_valid():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1509, in add_view\n return self.changeform_view(request, None, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 296, - "fields": { - "query": "SELECT (1) AS \"a\" FROM \"core_student\" WHERE \"core_student\".\"npm\" = 1406572321 LIMIT 1", - "start_time": "2017-03-27T14:58:05.819Z", - "end_time": "2017-03-27T14:58:05.821Z", - "time_taken": 2.002, - "request": "710b16dc-80e1-4366-b71f-219940321f75", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\compiler.py\", line 806, in has_results\n return bool(self.execute_sql(SINGLE))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 494, in has_results\n return compiler.has_results()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 660, in exists\n return self.query.has_results(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1113, in _perform_unique_checks\n if qs.exists():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1018, in validate_unique\n errors = self._perform_unique_checks(unique_checks)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 413, in validate_unique\n self.instance.validate_unique(exclude=exclude)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 404, in _post_clean\n self.validate_unique()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 372, in full_clean\n self._post_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 161, in errors\n self.full_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 169, in is_valid\n return self.is_bound and not self.errors\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1441, in changeform_view\n if form.is_valid():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1509, in add_view\n return self.changeform_view(request, None, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 297, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" ORDER BY \"auth_user\".\"username\" ASC", - "start_time": "2017-03-27T14:58:05.874Z", - "end_time": "2017-03-27T14:58:05.876Z", - "time_taken": 2.003, - "request": "710b16dc-80e1-4366-b71f-219940321f75", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1118, in __iter__\n for obj in queryset:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 567, in render_options\n for option_value, option_label in self.choices:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 544, in render\n options = self.render_options([value])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\widgets.py\", line 307, in render\n 'widget': self.widget.render(name, value, *args, **kwargs),\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 101, in as_widget\n return force_text(widget.render(name, self.value(), attrs=attrs))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 43, in __str__\n return self.as_widget()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\html.py\", line 391, in <lambda>\n klass.__str__ = lambda self: mark_safe(klass_str(self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\encoding.py\", line 76, in force_text\n s = six.text_type(s)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1028, in render_value_in_context\n value = force_text(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1050, in render\n return render_value_in_context(output, context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 210, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 210, in render\n return template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 298, - "fields": { - "query": "SELECT \"core_vacancy\".\"id\", \"core_vacancy\".\"company_id\", \"core_vacancy\".\"verified\", \"core_vacancy\".\"open_time\", \"core_vacancy\".\"close_time\" FROM \"core_vacancy\"", - "start_time": "2017-03-27T14:58:05.894Z", - "end_time": "2017-03-27T14:58:05.897Z", - "time_taken": 3.003, - "request": "710b16dc-80e1-4366-b71f-219940321f75", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1118, in __iter__\n for obj in queryset:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 567, in render_options\n for option_value, option_label in self.choices:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 617, in render\n options = self.render_options(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\widgets.py\", line 307, in render\n 'widget': self.widget.render(name, value, *args, **kwargs),\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 101, in as_widget\n return force_text(widget.render(name, self.value(), attrs=attrs))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 43, in __str__\n return self.as_widget()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\html.py\", line 391, in <lambda>\n klass.__str__ = lambda self: mark_safe(klass_str(self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\encoding.py\", line 76, in force_text\n s = six.text_type(s)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1028, in render_value_in_context\n value = force_text(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1050, in render\n return render_value_in_context(output, context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 210, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 210, in render\n return template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 299, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 14:58:06.102154+00:00)", - "start_time": "2017-03-27T14:58:06.106Z", - "end_time": "2017-03-27T14:58:06.110Z", - "time_taken": 4.004, - "request": "d2cce75c-1b2c-4f52-8c6c-9ee18a942084", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 300, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T14:58:06.115Z", - "end_time": "2017-03-27T14:58:06.119Z", - "time_taken": 4.004, - "request": "d2cce75c-1b2c-4f52-8c6c-9ee18a942084", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 301, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:14:24.031395+00:00)", - "start_time": "2017-03-27T15:14:24.040Z", - "end_time": "2017-03-27T15:14:24.045Z", - "time_taken": 5.003, - "request": "86ae3739-ebf0-48b5-a091-1a80bedfca0c", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 302, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:14:24.051Z", - "end_time": "2017-03-27T15:14:24.054Z", - "time_taken": 3.003, - "request": "86ae3739-ebf0-48b5-a091-1a80bedfca0c", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 303, - "fields": { - "query": "SELECT \"django_admin_log\".\"id\", \"django_admin_log\".\"action_time\", \"django_admin_log\".\"user_id\", \"django_admin_log\".\"content_type_id\", \"django_admin_log\".\"object_id\", \"django_admin_log\".\"object_repr\", \"django_admin_log\".\"action_flag\", \"django_admin_log\".\"change_message\", \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\", \"django_content_type\".\"id\", \"django_content_type\".\"app_label\", \"django_content_type\".\"model\" FROM \"django_admin_log\" INNER JOIN \"auth_user\" ON (\"django_admin_log\".\"user_id\" = \"auth_user\".\"id\") LEFT OUTER JOIN \"django_content_type\" ON (\"django_admin_log\".\"content_type_id\" = \"django_content_type\".\"id\") WHERE \"django_admin_log\".\"user_id\" = 1 ORDER BY \"django_admin_log\".\"action_time\" DESC LIMIT 10", - "start_time": "2017-03-27T15:14:24.185Z", - "end_time": "2017-03-27T15:14:24.191Z", - "time_taken": 6.003, - "request": "86ae3739-ebf0-48b5-a091-1a80bedfca0c", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 260, in __bool__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\smartif.py\", line 96, in <lambda>\n 'not': prefix(8, lambda context, x: not x.eval(context)),\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\smartif.py\", line 83, in eval\n return func(context, self.first)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 308, in render\n match = condition.eval(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 304, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:14:27.302578+00:00)", - "start_time": "2017-03-27T15:14:27.307Z", - "end_time": "2017-03-27T15:14:27.311Z", - "time_taken": 4.003, - "request": "ea92b5da-2291-4fbe-bb06-e93f363596e0", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 305, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:14:27.316Z", - "end_time": "2017-03-27T15:14:27.319Z", - "time_taken": 3.003, - "request": "ea92b5da-2291-4fbe-bb06-e93f363596e0", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 306, - "fields": { - "query": "SELECT COUNT(*) AS \"__count\" FROM \"core_student\"", - "start_time": "2017-03-27T15:14:27.326Z", - "end_time": "2017-03-27T15:14:27.329Z", - "time_taken": 3.002, - "request": "ea92b5da-2291-4fbe-bb06-e93f363596e0", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 457, in get_aggregation\n result = compiler.execute_sql(SINGLE)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 476, in get_count\n number = obj.get_aggregation(using, ['__count'])['__count']\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 369, in count\n return self.query.get_count(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\paginator.py\", line 72, in count\n return self.object_list.count()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 35, in __get__\n res = instance.__dict__[self.name] = self.func(instance)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 172, in get_results\n result_count = paginator.count\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 79, in __init__\n self.get_results(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 307, - "fields": { - "query": "SELECT COUNT(*) AS \"__count\" FROM \"core_student\"", - "start_time": "2017-03-27T15:14:27.334Z", - "end_time": "2017-03-27T15:14:27.335Z", - "time_taken": 1.001, - "request": "ea92b5da-2291-4fbe-bb06-e93f363596e0", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 457, in get_aggregation\n result = compiler.execute_sql(SINGLE)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 476, in get_count\n number = obj.get_aggregation(using, ['__count'])['__count']\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 369, in count\n return self.query.get_count(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 176, in get_results\n full_result_count = self.root_queryset.count()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 79, in __init__\n self.get_results(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 308, - "fields": { - "query": "SELECT \"core_student\".\"id\", \"core_student\".\"created\", \"core_student\".\"updated\", \"core_student\".\"user_id\", \"core_student\".\"npm\", \"core_student\".\"resume\", \"core_student\".\"phone_number\" FROM \"core_student\" ORDER BY \"core_student\".\"id\" DESC", - "start_time": "2017-03-27T15:14:27.342Z", - "end_time": "2017-03-27T15:14:27.344Z", - "time_taken": 2.003, - "request": "ea92b5da-2291-4fbe-bb06-e93f363596e0", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1657, in changelist_view\n selection_note=_('0 of %(cnt)s selected') % {'cnt': len(cl.result_list)},\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 309, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:14:27.559749+00:00)", - "start_time": "2017-03-27T15:14:27.564Z", - "end_time": "2017-03-27T15:14:27.568Z", - "time_taken": 4.003, - "request": "a2cbf430-13f7-4179-9875-53c6156a1ef5", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 310, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:14:27.572Z", - "end_time": "2017-03-27T15:14:27.576Z", - "time_taken": 4.004, - "request": "a2cbf430-13f7-4179-9875-53c6156a1ef5", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 311, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:14:29.830265+00:00)", - "start_time": "2017-03-27T15:14:29.834Z", - "end_time": "2017-03-27T15:14:29.839Z", - "time_taken": 5.005, - "request": "2b739563-68b9-418a-8f0f-bd8752914512", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 312, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:14:29.844Z", - "end_time": "2017-03-27T15:14:29.847Z", - "time_taken": 3.001, - "request": "2b739563-68b9-418a-8f0f-bd8752914512", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 313, - "fields": { - "query": "SELECT \"django_content_type\".\"id\", \"django_content_type\".\"app_label\", \"django_content_type\".\"model\" FROM \"django_content_type\" WHERE (\"django_content_type\".\"app_label\" = core AND \"django_content_type\".\"model\" = student)", - "start_time": "2017-03-27T15:14:29.863Z", - "end_time": "2017-03-27T15:14:29.866Z", - "time_taken": 3.002, - "request": "2b739563-68b9-418a-8f0f-bd8752914512", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\contenttypes\\models.py\", line 52, in get_for_model\n ct = self.get(app_label=opts.app_label, model=opts.model_name)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 64, in get_content_type_for_model\n return ContentType.objects.get_for_model(obj, for_concrete_model=False)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1050, in render_change_form\n 'content_type_id': get_content_type_for_model(self.model).pk,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1506, in changeform_view\n return self.render_change_form(request, context, add=add, change=not add, obj=obj, form_url=form_url)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1509, in add_view\n return self.changeform_view(request, None, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 314, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" ORDER BY \"auth_user\".\"username\" ASC", - "start_time": "2017-03-27T15:14:29.920Z", - "end_time": "2017-03-27T15:14:29.922Z", - "time_taken": 2.002, - "request": "2b739563-68b9-418a-8f0f-bd8752914512", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1118, in __iter__\n for obj in queryset:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 567, in render_options\n for option_value, option_label in self.choices:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 544, in render\n options = self.render_options([value])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\widgets.py\", line 307, in render\n 'widget': self.widget.render(name, value, *args, **kwargs),\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 101, in as_widget\n return force_text(widget.render(name, self.value(), attrs=attrs))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 43, in __str__\n return self.as_widget()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\html.py\", line 391, in <lambda>\n klass.__str__ = lambda self: mark_safe(klass_str(self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\encoding.py\", line 76, in force_text\n s = six.text_type(s)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1028, in render_value_in_context\n value = force_text(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1050, in render\n return render_value_in_context(output, context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 210, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 210, in render\n return template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 315, - "fields": { - "query": "SELECT \"core_vacancy\".\"id\", \"core_vacancy\".\"company_id\", \"core_vacancy\".\"verified\", \"core_vacancy\".\"open_time\", \"core_vacancy\".\"close_time\" FROM \"core_vacancy\"", - "start_time": "2017-03-27T15:14:29.940Z", - "end_time": "2017-03-27T15:14:29.942Z", - "time_taken": 2.001, - "request": "2b739563-68b9-418a-8f0f-bd8752914512", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1118, in __iter__\n for obj in queryset:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 567, in render_options\n for option_value, option_label in self.choices:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 617, in render\n options = self.render_options(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\widgets.py\", line 307, in render\n 'widget': self.widget.render(name, value, *args, **kwargs),\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 101, in as_widget\n return force_text(widget.render(name, self.value(), attrs=attrs))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 43, in __str__\n return self.as_widget()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\html.py\", line 391, in <lambda>\n klass.__str__ = lambda self: mark_safe(klass_str(self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\encoding.py\", line 76, in force_text\n s = six.text_type(s)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1028, in render_value_in_context\n value = force_text(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1050, in render\n return render_value_in_context(output, context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 210, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 210, in render\n return template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 316, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:14:30.185502+00:00)", - "start_time": "2017-03-27T15:14:30.189Z", - "end_time": "2017-03-27T15:14:30.193Z", - "time_taken": 4.004, - "request": "65a46d83-3ee3-41fe-9acd-5150f80ebc89", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 317, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:14:30.198Z", - "end_time": "2017-03-27T15:14:30.202Z", - "time_taken": 4.005, - "request": "65a46d83-3ee3-41fe-9acd-5150f80ebc89", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 318, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:16:21.524551+00:00)", - "start_time": "2017-03-27T15:16:21.528Z", - "end_time": "2017-03-27T15:16:21.620Z", - "time_taken": 92.062, - "request": "e688b22c-4aa4-4254-b2fc-542dc6e70eb5", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 319, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:16:21.624Z", - "end_time": "2017-03-27T15:16:21.758Z", - "time_taken": 134.092, - "request": "e688b22c-4aa4-4254-b2fc-542dc6e70eb5", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 320, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 2", - "start_time": "2017-03-27T15:16:21.858Z", - "end_time": "2017-03-27T15:16:21.859Z", - "time_taken": 1.0, - "request": "e688b22c-4aa4-4254-b2fc-542dc6e70eb5", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1220, in to_python\n value = self.queryset.get(**{key: value})\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\fields.py\", line 158, in clean\n value = self.to_python(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 388, in _clean_fields\n value = field.clean(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 370, in full_clean\n self._clean_fields()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 161, in errors\n self.full_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 169, in is_valid\n return self.is_bound and not self.errors\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1441, in changeform_view\n if form.is_valid():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1509, in add_view\n return self.changeform_view(request, None, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 321, - "fields": { - "query": "SELECT (1) AS \"a\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 2 LIMIT 1", - "start_time": "2017-03-27T15:16:21.961Z", - "end_time": "2017-03-27T15:16:21.964Z", - "time_taken": 3.002, - "request": "e688b22c-4aa4-4254-b2fc-542dc6e70eb5", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\compiler.py\", line 806, in has_results\n return bool(self.execute_sql(SINGLE))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 494, in has_results\n return compiler.has_results()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 660, in exists\n return self.query.has_results(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\fields\\related.py\", line 878, in validate\n if not qs.exists():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\fields\\__init__.py\", line 591, in clean\n self.validate(value, model_instance)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1252, in clean_fields\n setattr(self, f.attname, f.clean(raw_value, self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1210, in full_clean\n self.clean_fields(exclude=exclude)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 398, in _post_clean\n self.instance.full_clean(exclude=exclude, validate_unique=False)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 372, in full_clean\n self._post_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 161, in errors\n self.full_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 169, in is_valid\n return self.is_bound and not self.errors\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1441, in changeform_view\n if form.is_valid():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1509, in add_view\n return self.changeform_view(request, None, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 322, - "fields": { - "query": "SELECT (1) AS \"a\" FROM \"core_student\" WHERE \"core_student\".\"user_id\" = 2 LIMIT 1", - "start_time": "2017-03-27T15:16:21.970Z", - "end_time": "2017-03-27T15:16:22.031Z", - "time_taken": 61.044, - "request": "e688b22c-4aa4-4254-b2fc-542dc6e70eb5", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\compiler.py\", line 806, in has_results\n return bool(self.execute_sql(SINGLE))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 494, in has_results\n return compiler.has_results()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 660, in exists\n return self.query.has_results(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1113, in _perform_unique_checks\n if qs.exists():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1018, in validate_unique\n errors = self._perform_unique_checks(unique_checks)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 413, in validate_unique\n self.instance.validate_unique(exclude=exclude)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 404, in _post_clean\n self.validate_unique()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 372, in full_clean\n self._post_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 161, in errors\n self.full_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 169, in is_valid\n return self.is_bound and not self.errors\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1441, in changeform_view\n if form.is_valid():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1509, in add_view\n return self.changeform_view(request, None, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 323, - "fields": { - "query": "SELECT (1) AS \"a\" FROM \"core_student\" WHERE \"core_student\".\"npm\" = 1406572321 LIMIT 1", - "start_time": "2017-03-27T15:16:22.036Z", - "end_time": "2017-03-27T15:16:22.037Z", - "time_taken": 1.001, - "request": "e688b22c-4aa4-4254-b2fc-542dc6e70eb5", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\compiler.py\", line 806, in has_results\n return bool(self.execute_sql(SINGLE))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 494, in has_results\n return compiler.has_results()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 660, in exists\n return self.query.has_results(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1113, in _perform_unique_checks\n if qs.exists():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1018, in validate_unique\n errors = self._perform_unique_checks(unique_checks)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 413, in validate_unique\n self.instance.validate_unique(exclude=exclude)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 404, in _post_clean\n self.validate_unique()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 372, in full_clean\n self._post_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 161, in errors\n self.full_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 169, in is_valid\n return self.is_bound and not self.errors\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1441, in changeform_view\n if form.is_valid():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1509, in add_view\n return self.changeform_view(request, None, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 324, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" ORDER BY \"auth_user\".\"username\" ASC", - "start_time": "2017-03-27T15:16:22.092Z", - "end_time": "2017-03-27T15:16:22.094Z", - "time_taken": 1.998, - "request": "e688b22c-4aa4-4254-b2fc-542dc6e70eb5", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1118, in __iter__\n for obj in queryset:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 567, in render_options\n for option_value, option_label in self.choices:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 544, in render\n options = self.render_options([value])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\widgets.py\", line 307, in render\n 'widget': self.widget.render(name, value, *args, **kwargs),\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 101, in as_widget\n return force_text(widget.render(name, self.value(), attrs=attrs))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 43, in __str__\n return self.as_widget()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\html.py\", line 391, in <lambda>\n klass.__str__ = lambda self: mark_safe(klass_str(self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\encoding.py\", line 76, in force_text\n s = six.text_type(s)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1028, in render_value_in_context\n value = force_text(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1050, in render\n return render_value_in_context(output, context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 210, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 210, in render\n return template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 325, - "fields": { - "query": "SELECT \"core_vacancy\".\"id\", \"core_vacancy\".\"company_id\", \"core_vacancy\".\"verified\", \"core_vacancy\".\"open_time\", \"core_vacancy\".\"close_time\" FROM \"core_vacancy\"", - "start_time": "2017-03-27T15:16:22.111Z", - "end_time": "2017-03-27T15:16:22.144Z", - "time_taken": 33.019, - "request": "e688b22c-4aa4-4254-b2fc-542dc6e70eb5", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1118, in __iter__\n for obj in queryset:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 567, in render_options\n for option_value, option_label in self.choices:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 617, in render\n options = self.render_options(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\widgets.py\", line 307, in render\n 'widget': self.widget.render(name, value, *args, **kwargs),\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 101, in as_widget\n return force_text(widget.render(name, self.value(), attrs=attrs))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 43, in __str__\n return self.as_widget()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\html.py\", line 391, in <lambda>\n klass.__str__ = lambda self: mark_safe(klass_str(self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\encoding.py\", line 76, in force_text\n s = six.text_type(s)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1028, in render_value_in_context\n value = force_text(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1050, in render\n return render_value_in_context(output, context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 210, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 210, in render\n return template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 326, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:16:22.665313+00:00)", - "start_time": "2017-03-27T15:16:22.670Z", - "end_time": "2017-03-27T15:16:22.674Z", - "time_taken": 4.002, - "request": "41e0ea01-0962-4882-b829-399fe0299b9c", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 327, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:16:22.679Z", - "end_time": "2017-03-27T15:16:22.683Z", - "time_taken": 4.004, - "request": "41e0ea01-0962-4882-b829-399fe0299b9c", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 328, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:21:41.112356+00:00)", - "start_time": "2017-03-27T15:21:41.127Z", - "end_time": "2017-03-27T15:21:41.132Z", - "time_taken": 5.003, - "request": "d37159f8-b02d-4f6c-949e-d5d7497242f8", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 329, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:21:41.136Z", - "end_time": "2017-03-27T15:21:41.139Z", - "time_taken": 3.003, - "request": "d37159f8-b02d-4f6c-949e-d5d7497242f8", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 330, - "fields": { - "query": "SELECT \"django_admin_log\".\"id\", \"django_admin_log\".\"action_time\", \"django_admin_log\".\"user_id\", \"django_admin_log\".\"content_type_id\", \"django_admin_log\".\"object_id\", \"django_admin_log\".\"object_repr\", \"django_admin_log\".\"action_flag\", \"django_admin_log\".\"change_message\", \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\", \"django_content_type\".\"id\", \"django_content_type\".\"app_label\", \"django_content_type\".\"model\" FROM \"django_admin_log\" INNER JOIN \"auth_user\" ON (\"django_admin_log\".\"user_id\" = \"auth_user\".\"id\") LEFT OUTER JOIN \"django_content_type\" ON (\"django_admin_log\".\"content_type_id\" = \"django_content_type\".\"id\") WHERE \"django_admin_log\".\"user_id\" = 1 ORDER BY \"django_admin_log\".\"action_time\" DESC LIMIT 10", - "start_time": "2017-03-27T15:21:41.266Z", - "end_time": "2017-03-27T15:21:41.390Z", - "time_taken": 124.084, - "request": "d37159f8-b02d-4f6c-949e-d5d7497242f8", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 260, in __bool__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\smartif.py\", line 96, in <lambda>\n 'not': prefix(8, lambda context, x: not x.eval(context)),\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\smartif.py\", line 83, in eval\n return func(context, self.first)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 308, in render\n match = condition.eval(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 331, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:21:41.960924+00:00)", - "start_time": "2017-03-27T15:21:41.963Z", - "end_time": "2017-03-27T15:21:41.969Z", - "time_taken": 6.005, - "request": "82e2135b-5e72-485f-ada1-2905219f609b", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 332, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:21:41.973Z", - "end_time": "2017-03-27T15:21:41.976Z", - "time_taken": 3.003, - "request": "82e2135b-5e72-485f-ada1-2905219f609b", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 333, - "fields": { - "query": "SELECT \"django_admin_log\".\"id\", \"django_admin_log\".\"action_time\", \"django_admin_log\".\"user_id\", \"django_admin_log\".\"content_type_id\", \"django_admin_log\".\"object_id\", \"django_admin_log\".\"object_repr\", \"django_admin_log\".\"action_flag\", \"django_admin_log\".\"change_message\", \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\", \"django_content_type\".\"id\", \"django_content_type\".\"app_label\", \"django_content_type\".\"model\" FROM \"django_admin_log\" INNER JOIN \"auth_user\" ON (\"django_admin_log\".\"user_id\" = \"auth_user\".\"id\") LEFT OUTER JOIN \"django_content_type\" ON (\"django_admin_log\".\"content_type_id\" = \"django_content_type\".\"id\") WHERE \"django_admin_log\".\"user_id\" = 1 ORDER BY \"django_admin_log\".\"action_time\" DESC LIMIT 10", - "start_time": "2017-03-27T15:21:42.022Z", - "end_time": "2017-03-27T15:21:42.028Z", - "time_taken": 6.005, - "request": "82e2135b-5e72-485f-ada1-2905219f609b", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 260, in __bool__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\smartif.py\", line 96, in <lambda>\n 'not': prefix(8, lambda context, x: not x.eval(context)),\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\smartif.py\", line 83, in eval\n return func(context, self.first)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 308, in render\n match = condition.eval(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 334, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:21:45.016963+00:00)", - "start_time": "2017-03-27T15:21:45.023Z", - "end_time": "2017-03-27T15:21:45.027Z", - "time_taken": 4.002, - "request": "c57bc636-c91b-4e51-a6db-46e1487ac3c0", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 335, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:21:45.031Z", - "end_time": "2017-03-27T15:21:45.035Z", - "time_taken": 4.004, - "request": "c57bc636-c91b-4e51-a6db-46e1487ac3c0", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 336, - "fields": { - "query": "SELECT COUNT(*) AS \"__count\" FROM \"core_student\"", - "start_time": "2017-03-27T15:21:45.042Z", - "end_time": "2017-03-27T15:21:45.046Z", - "time_taken": 4.003, - "request": "c57bc636-c91b-4e51-a6db-46e1487ac3c0", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 457, in get_aggregation\n result = compiler.execute_sql(SINGLE)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 476, in get_count\n number = obj.get_aggregation(using, ['__count'])['__count']\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 369, in count\n return self.query.get_count(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\paginator.py\", line 72, in count\n return self.object_list.count()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 35, in __get__\n res = instance.__dict__[self.name] = self.func(instance)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 172, in get_results\n result_count = paginator.count\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 79, in __init__\n self.get_results(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 337, - "fields": { - "query": "SELECT COUNT(*) AS \"__count\" FROM \"core_student\"", - "start_time": "2017-03-27T15:21:45.050Z", - "end_time": "2017-03-27T15:21:45.053Z", - "time_taken": 3.002, - "request": "c57bc636-c91b-4e51-a6db-46e1487ac3c0", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 457, in get_aggregation\n result = compiler.execute_sql(SINGLE)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 476, in get_count\n number = obj.get_aggregation(using, ['__count'])['__count']\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 369, in count\n return self.query.get_count(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 176, in get_results\n full_result_count = self.root_queryset.count()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 79, in __init__\n self.get_results(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 338, - "fields": { - "query": "SELECT \"core_student\".\"id\", \"core_student\".\"created\", \"core_student\".\"updated\", \"core_student\".\"user_id\", \"core_student\".\"npm\", \"core_student\".\"resume\", \"core_student\".\"phone_number\" FROM \"core_student\" ORDER BY \"core_student\".\"id\" DESC", - "start_time": "2017-03-27T15:21:45.060Z", - "end_time": "2017-03-27T15:21:45.062Z", - "time_taken": 2.002, - "request": "c57bc636-c91b-4e51-a6db-46e1487ac3c0", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1657, in changelist_view\n selection_note=_('0 of %(cnt)s selected') % {'cnt': len(cl.result_list)},\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 339, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:21:45.427237+00:00)", - "start_time": "2017-03-27T15:21:45.433Z", - "end_time": "2017-03-27T15:21:45.437Z", - "time_taken": 4.002, - "request": "37523ba5-773f-4f0e-a6a9-4c465c61b235", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 340, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:21:45.441Z", - "end_time": "2017-03-27T15:21:45.445Z", - "time_taken": 4.003, - "request": "37523ba5-773f-4f0e-a6a9-4c465c61b235", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 341, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:21:49.236780+00:00)", - "start_time": "2017-03-27T15:21:49.240Z", - "end_time": "2017-03-27T15:21:49.247Z", - "time_taken": 7.006, - "request": "0e9a89ef-c0f2-4302-a043-bcdafe6016e5", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 342, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:21:49.251Z", - "end_time": "2017-03-27T15:21:49.254Z", - "time_taken": 3.003, - "request": "0e9a89ef-c0f2-4302-a043-bcdafe6016e5", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 343, - "fields": { - "query": "SELECT \"django_content_type\".\"id\", \"django_content_type\".\"app_label\", \"django_content_type\".\"model\" FROM \"django_content_type\" WHERE (\"django_content_type\".\"app_label\" = core AND \"django_content_type\".\"model\" = student)", - "start_time": "2017-03-27T15:21:49.269Z", - "end_time": "2017-03-27T15:21:49.272Z", - "time_taken": 3.002, - "request": "0e9a89ef-c0f2-4302-a043-bcdafe6016e5", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\contenttypes\\models.py\", line 52, in get_for_model\n ct = self.get(app_label=opts.app_label, model=opts.model_name)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 64, in get_content_type_for_model\n return ContentType.objects.get_for_model(obj, for_concrete_model=False)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1050, in render_change_form\n 'content_type_id': get_content_type_for_model(self.model).pk,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1506, in changeform_view\n return self.render_change_form(request, context, add=add, change=not add, obj=obj, form_url=form_url)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1509, in add_view\n return self.changeform_view(request, None, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 344, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" ORDER BY \"auth_user\".\"username\" ASC", - "start_time": "2017-03-27T15:21:49.324Z", - "end_time": "2017-03-27T15:21:49.326Z", - "time_taken": 2.0, - "request": "0e9a89ef-c0f2-4302-a043-bcdafe6016e5", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1118, in __iter__\n for obj in queryset:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 567, in render_options\n for option_value, option_label in self.choices:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 544, in render\n options = self.render_options([value])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\widgets.py\", line 307, in render\n 'widget': self.widget.render(name, value, *args, **kwargs),\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 101, in as_widget\n return force_text(widget.render(name, self.value(), attrs=attrs))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 43, in __str__\n return self.as_widget()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\html.py\", line 391, in <lambda>\n klass.__str__ = lambda self: mark_safe(klass_str(self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\encoding.py\", line 76, in force_text\n s = six.text_type(s)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1028, in render_value_in_context\n value = force_text(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1050, in render\n return render_value_in_context(output, context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 210, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 210, in render\n return template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 345, - "fields": { - "query": "SELECT \"core_vacancy\".\"id\", \"core_vacancy\".\"company_id\", \"core_vacancy\".\"verified\", \"core_vacancy\".\"open_time\", \"core_vacancy\".\"close_time\" FROM \"core_vacancy\"", - "start_time": "2017-03-27T15:21:49.345Z", - "end_time": "2017-03-27T15:21:49.348Z", - "time_taken": 3.002, - "request": "0e9a89ef-c0f2-4302-a043-bcdafe6016e5", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1118, in __iter__\n for obj in queryset:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 567, in render_options\n for option_value, option_label in self.choices:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 617, in render\n options = self.render_options(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\widgets.py\", line 307, in render\n 'widget': self.widget.render(name, value, *args, **kwargs),\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 101, in as_widget\n return force_text(widget.render(name, self.value(), attrs=attrs))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 43, in __str__\n return self.as_widget()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\html.py\", line 391, in <lambda>\n klass.__str__ = lambda self: mark_safe(klass_str(self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\encoding.py\", line 76, in force_text\n s = six.text_type(s)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1028, in render_value_in_context\n value = force_text(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1050, in render\n return render_value_in_context(output, context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 210, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 210, in render\n return template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 346, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:21:49.552991+00:00)", - "start_time": "2017-03-27T15:21:49.556Z", - "end_time": "2017-03-27T15:21:49.561Z", - "time_taken": 5.003, - "request": "f23546ab-ac93-4a50-87ba-e5d93a4c7b41", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 347, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:21:49.565Z", - "end_time": "2017-03-27T15:21:49.570Z", - "time_taken": 4.003, - "request": "f23546ab-ac93-4a50-87ba-e5d93a4c7b41", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 348, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:21:58.497960+00:00)", - "start_time": "2017-03-27T15:21:58.502Z", - "end_time": "2017-03-27T15:21:58.506Z", - "time_taken": 4.003, - "request": "5271f47b-ef74-4410-8fa3-10c4ce1b2e98", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 349, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:21:58.510Z", - "end_time": "2017-03-27T15:21:58.514Z", - "time_taken": 4.002, - "request": "5271f47b-ef74-4410-8fa3-10c4ce1b2e98", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 350, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 2", - "start_time": "2017-03-27T15:21:58.525Z", - "end_time": "2017-03-27T15:21:58.526Z", - "time_taken": 1.0, - "request": "5271f47b-ef74-4410-8fa3-10c4ce1b2e98", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1220, in to_python\n value = self.queryset.get(**{key: value})\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\fields.py\", line 158, in clean\n value = self.to_python(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 388, in _clean_fields\n value = field.clean(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 370, in full_clean\n self._clean_fields()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 161, in errors\n self.full_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 169, in is_valid\n return self.is_bound and not self.errors\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1441, in changeform_view\n if form.is_valid():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1509, in add_view\n return self.changeform_view(request, None, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 351, - "fields": { - "query": "SELECT (1) AS \"a\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 2 LIMIT 1", - "start_time": "2017-03-27T15:21:58.534Z", - "end_time": "2017-03-27T15:21:58.536Z", - "time_taken": 2.004, - "request": "5271f47b-ef74-4410-8fa3-10c4ce1b2e98", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\compiler.py\", line 806, in has_results\n return bool(self.execute_sql(SINGLE))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 494, in has_results\n return compiler.has_results()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 660, in exists\n return self.query.has_results(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\fields\\related.py\", line 878, in validate\n if not qs.exists():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\fields\\__init__.py\", line 591, in clean\n self.validate(value, model_instance)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1252, in clean_fields\n setattr(self, f.attname, f.clean(raw_value, self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1210, in full_clean\n self.clean_fields(exclude=exclude)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 398, in _post_clean\n self.instance.full_clean(exclude=exclude, validate_unique=False)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 372, in full_clean\n self._post_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 161, in errors\n self.full_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 169, in is_valid\n return self.is_bound and not self.errors\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1441, in changeform_view\n if form.is_valid():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1509, in add_view\n return self.changeform_view(request, None, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 352, - "fields": { - "query": "SELECT (1) AS \"a\" FROM \"core_student\" WHERE \"core_student\".\"user_id\" = 2 LIMIT 1", - "start_time": "2017-03-27T15:21:58.540Z", - "end_time": "2017-03-27T15:21:58.543Z", - "time_taken": 3.001, - "request": "5271f47b-ef74-4410-8fa3-10c4ce1b2e98", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\compiler.py\", line 806, in has_results\n return bool(self.execute_sql(SINGLE))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 494, in has_results\n return compiler.has_results()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 660, in exists\n return self.query.has_results(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1113, in _perform_unique_checks\n if qs.exists():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1018, in validate_unique\n errors = self._perform_unique_checks(unique_checks)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 413, in validate_unique\n self.instance.validate_unique(exclude=exclude)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 404, in _post_clean\n self.validate_unique()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 372, in full_clean\n self._post_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 161, in errors\n self.full_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 169, in is_valid\n return self.is_bound and not self.errors\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1441, in changeform_view\n if form.is_valid():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1509, in add_view\n return self.changeform_view(request, None, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 353, - "fields": { - "query": "SELECT (1) AS \"a\" FROM \"core_student\" WHERE \"core_student\".\"npm\" = 1406572321 LIMIT 1", - "start_time": "2017-03-27T15:21:58.548Z", - "end_time": "2017-03-27T15:21:58.549Z", - "time_taken": 1.0, - "request": "5271f47b-ef74-4410-8fa3-10c4ce1b2e98", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\compiler.py\", line 806, in has_results\n return bool(self.execute_sql(SINGLE))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 494, in has_results\n return compiler.has_results()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 660, in exists\n return self.query.has_results(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1113, in _perform_unique_checks\n if qs.exists():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1018, in validate_unique\n errors = self._perform_unique_checks(unique_checks)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 413, in validate_unique\n self.instance.validate_unique(exclude=exclude)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 404, in _post_clean\n self.validate_unique()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 372, in full_clean\n self._post_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 161, in errors\n self.full_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 169, in is_valid\n return self.is_bound and not self.errors\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1441, in changeform_view\n if form.is_valid():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1509, in add_view\n return self.changeform_view(request, None, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 354, - "fields": { - "query": "SELECT \"core_vacancy\".\"id\" FROM \"core_vacancy\" INNER JOIN \"core_student_bookmarked_vacancies\" ON (\"core_vacancy\".\"id\" = \"core_student_bookmarked_vacancies\".\"vacancy_id\") WHERE \"core_student_bookmarked_vacancies\".\"student_id\" = 1", - "start_time": "2017-03-27T15:21:58.611Z", - "end_time": "2017-03-27T15:21:58.617Z", - "time_taken": 6.005, - "request": "5271f47b-ef74-4410-8fa3-10c4ce1b2e98", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\compiler.py\", line 789, in results_iter\n results = self.execute_sql(MULTI)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 155, in __iter__\n for row in compiler.results_iter():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 256, in __iter__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\fields\\related_descriptors.py\", line 938, in set\n old_ids = set(self.using(db).values_list(self.target_field.target_field.attname, flat=True))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\fields\\related.py\", line 1573, in save_form_data\n getattr(instance, self.attname).set(data)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 436, in _save_m2m\n f.save_form_data(self.instance, cleaned_data[f.name])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1029, in save_related\n form.save_m2m()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1450, in changeform_view\n self.save_related(request, form, formsets, not add)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1509, in add_view\n return self.changeform_view(request, None, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 355, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:21:58.772143+00:00)", - "start_time": "2017-03-27T15:21:58.776Z", - "end_time": "2017-03-27T15:21:58.781Z", - "time_taken": 5.005, - "request": "f28442e9-0455-4a1a-b580-76f68f4c23d0", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 356, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:21:58.785Z", - "end_time": "2017-03-27T15:21:58.789Z", - "time_taken": 4.004, - "request": "f28442e9-0455-4a1a-b580-76f68f4c23d0", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 357, - "fields": { - "query": "SELECT COUNT(*) AS \"__count\" FROM \"core_student\"", - "start_time": "2017-03-27T15:21:58.793Z", - "end_time": "2017-03-27T15:21:58.806Z", - "time_taken": 13.008, - "request": "f28442e9-0455-4a1a-b580-76f68f4c23d0", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 457, in get_aggregation\n result = compiler.execute_sql(SINGLE)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 476, in get_count\n number = obj.get_aggregation(using, ['__count'])['__count']\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 369, in count\n return self.query.get_count(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\paginator.py\", line 72, in count\n return self.object_list.count()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 35, in __get__\n res = instance.__dict__[self.name] = self.func(instance)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 172, in get_results\n result_count = paginator.count\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 79, in __init__\n self.get_results(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 358, - "fields": { - "query": "SELECT COUNT(*) AS \"__count\" FROM \"core_student\"", - "start_time": "2017-03-27T15:21:58.809Z", - "end_time": "2017-03-27T15:21:58.810Z", - "time_taken": 1.001, - "request": "f28442e9-0455-4a1a-b580-76f68f4c23d0", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 457, in get_aggregation\n result = compiler.execute_sql(SINGLE)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 476, in get_count\n number = obj.get_aggregation(using, ['__count'])['__count']\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 369, in count\n return self.query.get_count(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 176, in get_results\n full_result_count = self.root_queryset.count()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 79, in __init__\n self.get_results(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 359, - "fields": { - "query": "SELECT \"core_student\".\"id\", \"core_student\".\"created\", \"core_student\".\"updated\", \"core_student\".\"user_id\", \"core_student\".\"npm\", \"core_student\".\"resume\", \"core_student\".\"phone_number\" FROM \"core_student\" ORDER BY \"core_student\".\"id\" DESC", - "start_time": "2017-03-27T15:21:58.819Z", - "end_time": "2017-03-27T15:21:58.821Z", - "time_taken": 2.004, - "request": "f28442e9-0455-4a1a-b580-76f68f4c23d0", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1657, in changelist_view\n selection_note=_('0 of %(cnt)s selected') % {'cnt': len(cl.result_list)},\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 360, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:21:59.111369+00:00)", - "start_time": "2017-03-27T15:21:59.116Z", - "end_time": "2017-03-27T15:21:59.120Z", - "time_taken": 4.003, - "request": "9f187370-82f4-4634-8aab-8654b759c561", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 361, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:21:59.125Z", - "end_time": "2017-03-27T15:21:59.129Z", - "time_taken": 4.003, - "request": "9f187370-82f4-4634-8aab-8654b759c561", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 362, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:22:03.325181+00:00)", - "start_time": "2017-03-27T15:22:03.328Z", - "end_time": "2017-03-27T15:22:03.332Z", - "time_taken": 4.004, - "request": "aac92f61-33fc-4851-963d-c5bbd1db85fa", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 363, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:22:03.336Z", - "end_time": "2017-03-27T15:22:03.339Z", - "time_taken": 3.002, - "request": "aac92f61-33fc-4851-963d-c5bbd1db85fa", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 364, - "fields": { - "query": "SELECT \"django_admin_log\".\"id\", \"django_admin_log\".\"action_time\", \"django_admin_log\".\"user_id\", \"django_admin_log\".\"content_type_id\", \"django_admin_log\".\"object_id\", \"django_admin_log\".\"object_repr\", \"django_admin_log\".\"action_flag\", \"django_admin_log\".\"change_message\", \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\", \"django_content_type\".\"id\", \"django_content_type\".\"app_label\", \"django_content_type\".\"model\" FROM \"django_admin_log\" INNER JOIN \"auth_user\" ON (\"django_admin_log\".\"user_id\" = \"auth_user\".\"id\") LEFT OUTER JOIN \"django_content_type\" ON (\"django_admin_log\".\"content_type_id\" = \"django_content_type\".\"id\") WHERE \"django_admin_log\".\"user_id\" = 1 ORDER BY \"django_admin_log\".\"action_time\" DESC LIMIT 10", - "start_time": "2017-03-27T15:22:03.381Z", - "end_time": "2017-03-27T15:22:03.388Z", - "time_taken": 7.005, - "request": "aac92f61-33fc-4851-963d-c5bbd1db85fa", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 260, in __bool__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\smartif.py\", line 96, in <lambda>\n 'not': prefix(8, lambda context, x: not x.eval(context)),\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\smartif.py\", line 83, in eval\n return func(context, self.first)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 308, in render\n match = condition.eval(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 365, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:22:07.457939+00:00)", - "start_time": "2017-03-27T15:22:07.461Z", - "end_time": "2017-03-27T15:22:07.465Z", - "time_taken": 4.003, - "request": "5978749e-4754-47ee-b18d-e12924dee357", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 366, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:22:07.471Z", - "end_time": "2017-03-27T15:22:07.474Z", - "time_taken": 3.003, - "request": "5978749e-4754-47ee-b18d-e12924dee357", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 367, - "fields": { - "query": "SELECT COUNT(*) AS \"__count\" FROM \"core_company\"", - "start_time": "2017-03-27T15:22:07.478Z", - "end_time": "2017-03-27T15:22:07.562Z", - "time_taken": 83.056, - "request": "5978749e-4754-47ee-b18d-e12924dee357", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 457, in get_aggregation\n result = compiler.execute_sql(SINGLE)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 476, in get_count\n number = obj.get_aggregation(using, ['__count'])['__count']\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 369, in count\n return self.query.get_count(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\paginator.py\", line 72, in count\n return self.object_list.count()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 35, in __get__\n res = instance.__dict__[self.name] = self.func(instance)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 172, in get_results\n result_count = paginator.count\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 79, in __init__\n self.get_results(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 368, - "fields": { - "query": "SELECT COUNT(*) AS \"__count\" FROM \"core_company\"", - "start_time": "2017-03-27T15:22:07.565Z", - "end_time": "2017-03-27T15:22:07.566Z", - "time_taken": 0.997, - "request": "5978749e-4754-47ee-b18d-e12924dee357", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 457, in get_aggregation\n result = compiler.execute_sql(SINGLE)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 476, in get_count\n number = obj.get_aggregation(using, ['__count'])['__count']\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 369, in count\n return self.query.get_count(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 176, in get_results\n full_result_count = self.root_queryset.count()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 79, in __init__\n self.get_results(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 369, - "fields": { - "query": "SELECT \"core_company\".\"id\", \"core_company\".\"created\", \"core_company\".\"updated\", \"core_company\".\"user_id\", \"core_company\".\"description\", \"core_company\".\"verified\" FROM \"core_company\" ORDER BY \"core_company\".\"id\" DESC", - "start_time": "2017-03-27T15:22:07.574Z", - "end_time": "2017-03-27T15:22:07.576Z", - "time_taken": 2.001, - "request": "5978749e-4754-47ee-b18d-e12924dee357", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1657, in changelist_view\n selection_note=_('0 of %(cnt)s selected') % {'cnt': len(cl.result_list)},\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 370, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:22:07.841195+00:00)", - "start_time": "2017-03-27T15:22:07.845Z", - "end_time": "2017-03-27T15:22:07.854Z", - "time_taken": 9.006, - "request": "dcbec714-4d8a-47f0-b0e1-447518100cf3", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 371, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:22:07.859Z", - "end_time": "2017-03-27T15:22:07.862Z", - "time_taken": 3.002, - "request": "dcbec714-4d8a-47f0-b0e1-447518100cf3", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 372, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:22:09.486293+00:00)", - "start_time": "2017-03-27T15:22:09.491Z", - "end_time": "2017-03-27T15:22:09.495Z", - "time_taken": 4.003, - "request": "45a5666e-75da-46d6-931f-9ae36551ed41", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 373, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:22:09.500Z", - "end_time": "2017-03-27T15:22:09.504Z", - "time_taken": 4.003, - "request": "45a5666e-75da-46d6-931f-9ae36551ed41", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 374, - "fields": { - "query": "SELECT \"django_admin_log\".\"id\", \"django_admin_log\".\"action_time\", \"django_admin_log\".\"user_id\", \"django_admin_log\".\"content_type_id\", \"django_admin_log\".\"object_id\", \"django_admin_log\".\"object_repr\", \"django_admin_log\".\"action_flag\", \"django_admin_log\".\"change_message\", \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\", \"django_content_type\".\"id\", \"django_content_type\".\"app_label\", \"django_content_type\".\"model\" FROM \"django_admin_log\" INNER JOIN \"auth_user\" ON (\"django_admin_log\".\"user_id\" = \"auth_user\".\"id\") LEFT OUTER JOIN \"django_content_type\" ON (\"django_admin_log\".\"content_type_id\" = \"django_content_type\".\"id\") WHERE \"django_admin_log\".\"user_id\" = 1 ORDER BY \"django_admin_log\".\"action_time\" DESC LIMIT 10", - "start_time": "2017-03-27T15:22:09.550Z", - "end_time": "2017-03-27T15:22:09.557Z", - "time_taken": 7.005, - "request": "45a5666e-75da-46d6-931f-9ae36551ed41", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 260, in __bool__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\smartif.py\", line 96, in <lambda>\n 'not': prefix(8, lambda context, x: not x.eval(context)),\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\smartif.py\", line 83, in eval\n return func(context, self.first)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 308, in render\n match = condition.eval(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 375, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:22:11.004306+00:00)", - "start_time": "2017-03-27T15:22:11.008Z", - "end_time": "2017-03-27T15:22:11.012Z", - "time_taken": 4.005, - "request": "20a1e1ca-292c-457f-8c2b-e51f4ed7d3af", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 376, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:22:11.017Z", - "end_time": "2017-03-27T15:22:11.020Z", - "time_taken": 3.002, - "request": "20a1e1ca-292c-457f-8c2b-e51f4ed7d3af", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 377, - "fields": { - "query": "SELECT COUNT(*) AS \"__count\" FROM \"core_supervisor\"", - "start_time": "2017-03-27T15:22:11.024Z", - "end_time": "2017-03-27T15:22:11.063Z", - "time_taken": 39.027, - "request": "20a1e1ca-292c-457f-8c2b-e51f4ed7d3af", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 457, in get_aggregation\n result = compiler.execute_sql(SINGLE)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 476, in get_count\n number = obj.get_aggregation(using, ['__count'])['__count']\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 369, in count\n return self.query.get_count(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\paginator.py\", line 72, in count\n return self.object_list.count()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 35, in __get__\n res = instance.__dict__[self.name] = self.func(instance)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 172, in get_results\n result_count = paginator.count\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 79, in __init__\n self.get_results(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 378, - "fields": { - "query": "SELECT COUNT(*) AS \"__count\" FROM \"core_supervisor\"", - "start_time": "2017-03-27T15:22:11.066Z", - "end_time": "2017-03-27T15:22:11.067Z", - "time_taken": 1.001, - "request": "20a1e1ca-292c-457f-8c2b-e51f4ed7d3af", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 457, in get_aggregation\n result = compiler.execute_sql(SINGLE)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 476, in get_count\n number = obj.get_aggregation(using, ['__count'])['__count']\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 369, in count\n return self.query.get_count(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 176, in get_results\n full_result_count = self.root_queryset.count()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 79, in __init__\n self.get_results(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 379, - "fields": { - "query": "SELECT \"core_supervisor\".\"id\", \"core_supervisor\".\"created\", \"core_supervisor\".\"updated\", \"core_supervisor\".\"user_id\", \"core_supervisor\".\"nip\" FROM \"core_supervisor\" ORDER BY \"core_supervisor\".\"id\" DESC", - "start_time": "2017-03-27T15:22:11.075Z", - "end_time": "2017-03-27T15:22:11.076Z", - "time_taken": 1.0, - "request": "20a1e1ca-292c-457f-8c2b-e51f4ed7d3af", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1657, in changelist_view\n selection_note=_('0 of %(cnt)s selected') % {'cnt': len(cl.result_list)},\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 380, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:22:11.276488+00:00)", - "start_time": "2017-03-27T15:22:11.281Z", - "end_time": "2017-03-27T15:22:11.285Z", - "time_taken": 4.003, - "request": "d166bd14-5890-44cb-85a2-72d2a3fb7a6b", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 381, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:22:11.289Z", - "end_time": "2017-03-27T15:22:11.292Z", - "time_taken": 3.003, - "request": "d166bd14-5890-44cb-85a2-72d2a3fb7a6b", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 382, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:22:13.511979+00:00)", - "start_time": "2017-03-27T15:22:13.516Z", - "end_time": "2017-03-27T15:22:13.520Z", - "time_taken": 4.001, - "request": "b1732f2a-9b94-4bbb-8354-c3cdf802df47", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 383, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:22:13.524Z", - "end_time": "2017-03-27T15:22:13.528Z", - "time_taken": 4.002, - "request": "b1732f2a-9b94-4bbb-8354-c3cdf802df47", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 384, - "fields": { - "query": "SELECT \"django_content_type\".\"id\", \"django_content_type\".\"app_label\", \"django_content_type\".\"model\" FROM \"django_content_type\" WHERE (\"django_content_type\".\"app_label\" = core AND \"django_content_type\".\"model\" = supervisor)", - "start_time": "2017-03-27T15:22:13.539Z", - "end_time": "2017-03-27T15:22:13.541Z", - "time_taken": 2.002, - "request": "b1732f2a-9b94-4bbb-8354-c3cdf802df47", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\contenttypes\\models.py\", line 52, in get_for_model\n ct = self.get(app_label=opts.app_label, model=opts.model_name)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 64, in get_content_type_for_model\n return ContentType.objects.get_for_model(obj, for_concrete_model=False)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1050, in render_change_form\n 'content_type_id': get_content_type_for_model(self.model).pk,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1506, in changeform_view\n return self.render_change_form(request, context, add=add, change=not add, obj=obj, form_url=form_url)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1509, in add_view\n return self.changeform_view(request, None, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 385, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" ORDER BY \"auth_user\".\"username\" ASC", - "start_time": "2017-03-27T15:22:13.629Z", - "end_time": "2017-03-27T15:22:13.630Z", - "time_taken": 1.001, - "request": "b1732f2a-9b94-4bbb-8354-c3cdf802df47", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1118, in __iter__\n for obj in queryset:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 567, in render_options\n for option_value, option_label in self.choices:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 544, in render\n options = self.render_options([value])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\widgets.py\", line 307, in render\n 'widget': self.widget.render(name, value, *args, **kwargs),\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 101, in as_widget\n return force_text(widget.render(name, self.value(), attrs=attrs))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 43, in __str__\n return self.as_widget()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\html.py\", line 391, in <lambda>\n klass.__str__ = lambda self: mark_safe(klass_str(self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\encoding.py\", line 76, in force_text\n s = six.text_type(s)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1028, in render_value_in_context\n value = force_text(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1050, in render\n return render_value_in_context(output, context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 210, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 210, in render\n return template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 386, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:22:13.801172+00:00)", - "start_time": "2017-03-27T15:22:13.805Z", - "end_time": "2017-03-27T15:22:13.811Z", - "time_taken": 6.005, - "request": "8879e7b7-6961-4221-8d18-70981618dcaf", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 387, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:22:13.815Z", - "end_time": "2017-03-27T15:22:13.818Z", - "time_taken": 3.002, - "request": "8879e7b7-6961-4221-8d18-70981618dcaf", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 388, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:22:21.186101+00:00)", - "start_time": "2017-03-27T15:22:21.190Z", - "end_time": "2017-03-27T15:22:21.194Z", - "time_taken": 4.004, - "request": "7bece041-aa12-4be9-bfe9-c682b2d93f13", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 389, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:22:21.198Z", - "end_time": "2017-03-27T15:22:21.202Z", - "time_taken": 4.002, - "request": "7bece041-aa12-4be9-bfe9-c682b2d93f13", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 390, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 4", - "start_time": "2017-03-27T15:22:21.208Z", - "end_time": "2017-03-27T15:22:21.210Z", - "time_taken": 2.003, - "request": "7bece041-aa12-4be9-bfe9-c682b2d93f13", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1220, in to_python\n value = self.queryset.get(**{key: value})\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\fields.py\", line 158, in clean\n value = self.to_python(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 388, in _clean_fields\n value = field.clean(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 370, in full_clean\n self._clean_fields()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 161, in errors\n self.full_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 169, in is_valid\n return self.is_bound and not self.errors\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1441, in changeform_view\n if form.is_valid():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1509, in add_view\n return self.changeform_view(request, None, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 391, - "fields": { - "query": "SELECT (1) AS \"a\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 4 LIMIT 1", - "start_time": "2017-03-27T15:22:21.215Z", - "end_time": "2017-03-27T15:22:21.217Z", - "time_taken": 2.003, - "request": "7bece041-aa12-4be9-bfe9-c682b2d93f13", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\compiler.py\", line 806, in has_results\n return bool(self.execute_sql(SINGLE))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 494, in has_results\n return compiler.has_results()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 660, in exists\n return self.query.has_results(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\fields\\related.py\", line 878, in validate\n if not qs.exists():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\fields\\__init__.py\", line 591, in clean\n self.validate(value, model_instance)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1252, in clean_fields\n setattr(self, f.attname, f.clean(raw_value, self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1210, in full_clean\n self.clean_fields(exclude=exclude)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 398, in _post_clean\n self.instance.full_clean(exclude=exclude, validate_unique=False)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 372, in full_clean\n self._post_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 161, in errors\n self.full_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 169, in is_valid\n return self.is_bound and not self.errors\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1441, in changeform_view\n if form.is_valid():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1509, in add_view\n return self.changeform_view(request, None, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 392, - "fields": { - "query": "SELECT (1) AS \"a\" FROM \"core_supervisor\" WHERE \"core_supervisor\".\"user_id\" = 4 LIMIT 1", - "start_time": "2017-03-27T15:22:21.222Z", - "end_time": "2017-03-27T15:22:21.225Z", - "time_taken": 3.003, - "request": "7bece041-aa12-4be9-bfe9-c682b2d93f13", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\compiler.py\", line 806, in has_results\n return bool(self.execute_sql(SINGLE))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 494, in has_results\n return compiler.has_results()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 660, in exists\n return self.query.has_results(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1113, in _perform_unique_checks\n if qs.exists():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1018, in validate_unique\n errors = self._perform_unique_checks(unique_checks)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 413, in validate_unique\n self.instance.validate_unique(exclude=exclude)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 404, in _post_clean\n self.validate_unique()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 372, in full_clean\n self._post_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 161, in errors\n self.full_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 169, in is_valid\n return self.is_bound and not self.errors\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1441, in changeform_view\n if form.is_valid():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1509, in add_view\n return self.changeform_view(request, None, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 393, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" ORDER BY \"auth_user\".\"username\" ASC", - "start_time": "2017-03-27T15:22:21.276Z", - "end_time": "2017-03-27T15:22:21.278Z", - "time_taken": 2.003, - "request": "7bece041-aa12-4be9-bfe9-c682b2d93f13", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1118, in __iter__\n for obj in queryset:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 567, in render_options\n for option_value, option_label in self.choices:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 544, in render\n options = self.render_options([value])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\widgets.py\", line 307, in render\n 'widget': self.widget.render(name, value, *args, **kwargs),\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 101, in as_widget\n return force_text(widget.render(name, self.value(), attrs=attrs))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 43, in __str__\n return self.as_widget()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\html.py\", line 391, in <lambda>\n klass.__str__ = lambda self: mark_safe(klass_str(self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\encoding.py\", line 76, in force_text\n s = six.text_type(s)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1028, in render_value_in_context\n value = force_text(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1050, in render\n return render_value_in_context(output, context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 210, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 210, in render\n return template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 394, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:22:21.504313+00:00)", - "start_time": "2017-03-27T15:22:21.508Z", - "end_time": "2017-03-27T15:22:21.513Z", - "time_taken": 5.003, - "request": "80d3ca5d-b7ae-4380-882f-2f7eea60b27c", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 395, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:22:21.517Z", - "end_time": "2017-03-27T15:22:21.520Z", - "time_taken": 3.003, - "request": "80d3ca5d-b7ae-4380-882f-2f7eea60b27c", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 396, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:22:39.511189+00:00)", - "start_time": "2017-03-27T15:22:39.516Z", - "end_time": "2017-03-27T15:22:39.520Z", - "time_taken": 4.004, - "request": "f56e2139-36dd-41e7-b082-a1aea5f55573", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 397, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:22:39.525Z", - "end_time": "2017-03-27T15:22:39.528Z", - "time_taken": 3.002, - "request": "f56e2139-36dd-41e7-b082-a1aea5f55573", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 398, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 4", - "start_time": "2017-03-27T15:22:39.535Z", - "end_time": "2017-03-27T15:22:39.536Z", - "time_taken": 1.001, - "request": "f56e2139-36dd-41e7-b082-a1aea5f55573", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1220, in to_python\n value = self.queryset.get(**{key: value})\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\fields.py\", line 158, in clean\n value = self.to_python(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 388, in _clean_fields\n value = field.clean(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 370, in full_clean\n self._clean_fields()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 161, in errors\n self.full_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 169, in is_valid\n return self.is_bound and not self.errors\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1441, in changeform_view\n if form.is_valid():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1509, in add_view\n return self.changeform_view(request, None, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 399, - "fields": { - "query": "SELECT (1) AS \"a\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 4 LIMIT 1", - "start_time": "2017-03-27T15:22:39.541Z", - "end_time": "2017-03-27T15:22:39.542Z", - "time_taken": 1.001, - "request": "f56e2139-36dd-41e7-b082-a1aea5f55573", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\compiler.py\", line 806, in has_results\n return bool(self.execute_sql(SINGLE))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 494, in has_results\n return compiler.has_results()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 660, in exists\n return self.query.has_results(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\fields\\related.py\", line 878, in validate\n if not qs.exists():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\fields\\__init__.py\", line 591, in clean\n self.validate(value, model_instance)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1252, in clean_fields\n setattr(self, f.attname, f.clean(raw_value, self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1210, in full_clean\n self.clean_fields(exclude=exclude)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 398, in _post_clean\n self.instance.full_clean(exclude=exclude, validate_unique=False)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 372, in full_clean\n self._post_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 161, in errors\n self.full_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 169, in is_valid\n return self.is_bound and not self.errors\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1441, in changeform_view\n if form.is_valid():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1509, in add_view\n return self.changeform_view(request, None, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 400, - "fields": { - "query": "SELECT (1) AS \"a\" FROM \"core_supervisor\" WHERE \"core_supervisor\".\"user_id\" = 4 LIMIT 1", - "start_time": "2017-03-27T15:22:39.547Z", - "end_time": "2017-03-27T15:22:39.550Z", - "time_taken": 3.001, - "request": "f56e2139-36dd-41e7-b082-a1aea5f55573", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\compiler.py\", line 806, in has_results\n return bool(self.execute_sql(SINGLE))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 494, in has_results\n return compiler.has_results()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 660, in exists\n return self.query.has_results(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1113, in _perform_unique_checks\n if qs.exists():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1018, in validate_unique\n errors = self._perform_unique_checks(unique_checks)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 413, in validate_unique\n self.instance.validate_unique(exclude=exclude)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 404, in _post_clean\n self.validate_unique()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 372, in full_clean\n self._post_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 161, in errors\n self.full_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 169, in is_valid\n return self.is_bound and not self.errors\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1441, in changeform_view\n if form.is_valid():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1509, in add_view\n return self.changeform_view(request, None, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 401, - "fields": { - "query": "SELECT (1) AS \"a\" FROM \"core_supervisor\" WHERE \"core_supervisor\".\"nip\" = 100000002 LIMIT 1", - "start_time": "2017-03-27T15:22:39.554Z", - "end_time": "2017-03-27T15:22:39.556Z", - "time_taken": 2.002, - "request": "f56e2139-36dd-41e7-b082-a1aea5f55573", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\compiler.py\", line 806, in has_results\n return bool(self.execute_sql(SINGLE))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 494, in has_results\n return compiler.has_results()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 660, in exists\n return self.query.has_results(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1113, in _perform_unique_checks\n if qs.exists():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1018, in validate_unique\n errors = self._perform_unique_checks(unique_checks)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 413, in validate_unique\n self.instance.validate_unique(exclude=exclude)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 404, in _post_clean\n self.validate_unique()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 372, in full_clean\n self._post_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 161, in errors\n self.full_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 169, in is_valid\n return self.is_bound and not self.errors\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1441, in changeform_view\n if form.is_valid():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1509, in add_view\n return self.changeform_view(request, None, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 402, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:22:39.724332+00:00)", - "start_time": "2017-03-27T15:22:39.728Z", - "end_time": "2017-03-27T15:22:39.732Z", - "time_taken": 4.002, - "request": "21e26479-6a89-4b52-955d-c213d1647586", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 403, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:22:39.737Z", - "end_time": "2017-03-27T15:22:39.741Z", - "time_taken": 4.003, - "request": "21e26479-6a89-4b52-955d-c213d1647586", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 404, - "fields": { - "query": "SELECT COUNT(*) AS \"__count\" FROM \"core_supervisor\"", - "start_time": "2017-03-27T15:22:39.745Z", - "end_time": "2017-03-27T15:22:39.778Z", - "time_taken": 33.024, - "request": "21e26479-6a89-4b52-955d-c213d1647586", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 457, in get_aggregation\n result = compiler.execute_sql(SINGLE)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 476, in get_count\n number = obj.get_aggregation(using, ['__count'])['__count']\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 369, in count\n return self.query.get_count(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\paginator.py\", line 72, in count\n return self.object_list.count()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 35, in __get__\n res = instance.__dict__[self.name] = self.func(instance)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 172, in get_results\n result_count = paginator.count\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 79, in __init__\n self.get_results(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 405, - "fields": { - "query": "SELECT COUNT(*) AS \"__count\" FROM \"core_supervisor\"", - "start_time": "2017-03-27T15:22:39.781Z", - "end_time": "2017-03-27T15:22:39.782Z", - "time_taken": 1.002, - "request": "21e26479-6a89-4b52-955d-c213d1647586", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 457, in get_aggregation\n result = compiler.execute_sql(SINGLE)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 476, in get_count\n number = obj.get_aggregation(using, ['__count'])['__count']\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 369, in count\n return self.query.get_count(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 176, in get_results\n full_result_count = self.root_queryset.count()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 79, in __init__\n self.get_results(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 406, - "fields": { - "query": "SELECT \"core_supervisor\".\"id\", \"core_supervisor\".\"created\", \"core_supervisor\".\"updated\", \"core_supervisor\".\"user_id\", \"core_supervisor\".\"nip\" FROM \"core_supervisor\" ORDER BY \"core_supervisor\".\"id\" DESC", - "start_time": "2017-03-27T15:22:39.790Z", - "end_time": "2017-03-27T15:22:39.791Z", - "time_taken": 1.001, - "request": "21e26479-6a89-4b52-955d-c213d1647586", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1657, in changelist_view\n selection_note=_('0 of %(cnt)s selected') % {'cnt': len(cl.result_list)},\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 407, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:22:40.078567+00:00)", - "start_time": "2017-03-27T15:22:40.082Z", - "end_time": "2017-03-27T15:22:40.087Z", - "time_taken": 5.005, - "request": "19a5538e-6553-4304-babb-613e6d7a53ea", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 408, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:22:40.092Z", - "end_time": "2017-03-27T15:22:40.096Z", - "time_taken": 4.003, - "request": "19a5538e-6553-4304-babb-613e6d7a53ea", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 409, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:22:54.424141+00:00)", - "start_time": "2017-03-27T15:22:54.428Z", - "end_time": "2017-03-27T15:22:54.433Z", - "time_taken": 5.006, - "request": "26f89ffa-8e28-43e5-b7d0-ccd322afb002", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 410, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:22:54.438Z", - "end_time": "2017-03-27T15:22:54.441Z", - "time_taken": 3.003, - "request": "26f89ffa-8e28-43e5-b7d0-ccd322afb002", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 411, - "fields": { - "query": "SELECT \"django_admin_log\".\"id\", \"django_admin_log\".\"action_time\", \"django_admin_log\".\"user_id\", \"django_admin_log\".\"content_type_id\", \"django_admin_log\".\"object_id\", \"django_admin_log\".\"object_repr\", \"django_admin_log\".\"action_flag\", \"django_admin_log\".\"change_message\", \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\", \"django_content_type\".\"id\", \"django_content_type\".\"app_label\", \"django_content_type\".\"model\" FROM \"django_admin_log\" INNER JOIN \"auth_user\" ON (\"django_admin_log\".\"user_id\" = \"auth_user\".\"id\") LEFT OUTER JOIN \"django_content_type\" ON (\"django_admin_log\".\"content_type_id\" = \"django_content_type\".\"id\") WHERE \"django_admin_log\".\"user_id\" = 1 ORDER BY \"django_admin_log\".\"action_time\" DESC LIMIT 10", - "start_time": "2017-03-27T15:22:54.484Z", - "end_time": "2017-03-27T15:22:54.491Z", - "time_taken": 7.005, - "request": "26f89ffa-8e28-43e5-b7d0-ccd322afb002", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 260, in __bool__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\smartif.py\", line 96, in <lambda>\n 'not': prefix(8, lambda context, x: not x.eval(context)),\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\smartif.py\", line 83, in eval\n return func(context, self.first)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 308, in render\n match = condition.eval(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 412, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:23:08.887794+00:00)", - "start_time": "2017-03-27T15:23:08.891Z", - "end_time": "2017-03-27T15:23:08.896Z", - "time_taken": 5.003, - "request": "baccf422-5572-4f41-a439-918e77b21a51", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 413, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:23:08.900Z", - "end_time": "2017-03-27T15:23:08.903Z", - "time_taken": 3.003, - "request": "baccf422-5572-4f41-a439-918e77b21a51", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 414, - "fields": { - "query": "SELECT COUNT(*) AS \"__count\" FROM \"core_vacancy\"", - "start_time": "2017-03-27T15:23:08.908Z", - "end_time": "2017-03-27T15:23:08.911Z", - "time_taken": 3.001, - "request": "baccf422-5572-4f41-a439-918e77b21a51", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 457, in get_aggregation\n result = compiler.execute_sql(SINGLE)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 476, in get_count\n number = obj.get_aggregation(using, ['__count'])['__count']\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 369, in count\n return self.query.get_count(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\paginator.py\", line 72, in count\n return self.object_list.count()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 35, in __get__\n res = instance.__dict__[self.name] = self.func(instance)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 172, in get_results\n result_count = paginator.count\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 79, in __init__\n self.get_results(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 415, - "fields": { - "query": "SELECT COUNT(*) AS \"__count\" FROM \"core_vacancy\"", - "start_time": "2017-03-27T15:23:08.915Z", - "end_time": "2017-03-27T15:23:08.915Z", - "time_taken": 0.0, - "request": "baccf422-5572-4f41-a439-918e77b21a51", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 457, in get_aggregation\n result = compiler.execute_sql(SINGLE)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 476, in get_count\n number = obj.get_aggregation(using, ['__count'])['__count']\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 369, in count\n return self.query.get_count(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 176, in get_results\n full_result_count = self.root_queryset.count()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 79, in __init__\n self.get_results(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 416, - "fields": { - "query": "SELECT \"core_vacancy\".\"id\", \"core_vacancy\".\"company_id\", \"core_vacancy\".\"verified\", \"core_vacancy\".\"open_time\", \"core_vacancy\".\"close_time\" FROM \"core_vacancy\" ORDER BY \"core_vacancy\".\"id\" DESC", - "start_time": "2017-03-27T15:23:08.923Z", - "end_time": "2017-03-27T15:23:08.924Z", - "time_taken": 1.0, - "request": "baccf422-5572-4f41-a439-918e77b21a51", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1657, in changelist_view\n selection_note=_('0 of %(cnt)s selected') % {'cnt': len(cl.result_list)},\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 417, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:23:09.141963+00:00)", - "start_time": "2017-03-27T15:23:09.146Z", - "end_time": "2017-03-27T15:23:09.150Z", - "time_taken": 4.004, - "request": "625261fb-6804-4015-921a-8bb0939d0bb9", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 418, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:23:09.154Z", - "end_time": "2017-03-27T15:23:09.159Z", - "time_taken": 5.005, - "request": "625261fb-6804-4015-921a-8bb0939d0bb9", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 419, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:23:11.178323+00:00)", - "start_time": "2017-03-27T15:23:11.182Z", - "end_time": "2017-03-27T15:23:11.186Z", - "time_taken": 4.004, - "request": "c7031832-23a9-4c25-a883-9fa0eedf6c39", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 420, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:23:11.191Z", - "end_time": "2017-03-27T15:23:11.196Z", - "time_taken": 5.004, - "request": "c7031832-23a9-4c25-a883-9fa0eedf6c39", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 421, - "fields": { - "query": "SELECT \"django_content_type\".\"id\", \"django_content_type\".\"app_label\", \"django_content_type\".\"model\" FROM \"django_content_type\" WHERE (\"django_content_type\".\"app_label\" = core AND \"django_content_type\".\"model\" = vacancy)", - "start_time": "2017-03-27T15:23:11.211Z", - "end_time": "2017-03-27T15:23:11.214Z", - "time_taken": 3.002, - "request": "c7031832-23a9-4c25-a883-9fa0eedf6c39", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\contenttypes\\models.py\", line 52, in get_for_model\n ct = self.get(app_label=opts.app_label, model=opts.model_name)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 64, in get_content_type_for_model\n return ContentType.objects.get_for_model(obj, for_concrete_model=False)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1050, in render_change_form\n 'content_type_id': get_content_type_for_model(self.model).pk,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1506, in changeform_view\n return self.render_change_form(request, context, add=add, change=not add, obj=obj, form_url=form_url)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1509, in add_view\n return self.changeform_view(request, None, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 422, - "fields": { - "query": "SELECT \"core_company\".\"id\", \"core_company\".\"created\", \"core_company\".\"updated\", \"core_company\".\"user_id\", \"core_company\".\"description\", \"core_company\".\"verified\" FROM \"core_company\"", - "start_time": "2017-03-27T15:23:11.267Z", - "end_time": "2017-03-27T15:23:11.269Z", - "time_taken": 2.002, - "request": "c7031832-23a9-4c25-a883-9fa0eedf6c39", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1118, in __iter__\n for obj in queryset:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 567, in render_options\n for option_value, option_label in self.choices:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 544, in render\n options = self.render_options([value])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\widgets.py\", line 307, in render\n 'widget': self.widget.render(name, value, *args, **kwargs),\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 101, in as_widget\n return force_text(widget.render(name, self.value(), attrs=attrs))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 43, in __str__\n return self.as_widget()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\html.py\", line 391, in <lambda>\n klass.__str__ = lambda self: mark_safe(klass_str(self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\encoding.py\", line 76, in force_text\n s = six.text_type(s)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1028, in render_value_in_context\n value = force_text(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1050, in render\n return render_value_in_context(output, context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 210, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 210, in render\n return template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 423, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:23:11.473520+00:00)", - "start_time": "2017-03-27T15:23:11.478Z", - "end_time": "2017-03-27T15:23:11.482Z", - "time_taken": 4.002, - "request": "29fdb262-174c-4e28-953d-94819f8b09d6", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 424, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:23:11.486Z", - "end_time": "2017-03-27T15:23:11.489Z", - "time_taken": 3.002, - "request": "29fdb262-174c-4e28-953d-94819f8b09d6", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 425, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:23:24.798412+00:00)", - "start_time": "2017-03-27T15:23:24.802Z", - "end_time": "2017-03-27T15:23:24.809Z", - "time_taken": 7.007, - "request": "ed3b0c74-c2c2-4692-8bfd-d24e50bb123f", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 426, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:23:24.814Z", - "end_time": "2017-03-27T15:23:24.817Z", - "time_taken": 3.002, - "request": "ed3b0c74-c2c2-4692-8bfd-d24e50bb123f", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 427, - "fields": { - "query": "SELECT \"core_company\".\"id\", \"core_company\".\"created\", \"core_company\".\"updated\", \"core_company\".\"user_id\", \"core_company\".\"description\", \"core_company\".\"verified\" FROM \"core_company\" WHERE \"core_company\".\"id\" = 2", - "start_time": "2017-03-27T15:23:24.825Z", - "end_time": "2017-03-27T15:23:24.828Z", - "time_taken": 3.001, - "request": "ed3b0c74-c2c2-4692-8bfd-d24e50bb123f", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1220, in to_python\n value = self.queryset.get(**{key: value})\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\fields.py\", line 158, in clean\n value = self.to_python(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 388, in _clean_fields\n value = field.clean(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 370, in full_clean\n self._clean_fields()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 161, in errors\n self.full_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 169, in is_valid\n return self.is_bound and not self.errors\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1441, in changeform_view\n if form.is_valid():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1509, in add_view\n return self.changeform_view(request, None, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 428, - "fields": { - "query": "SELECT (1) AS \"a\" FROM \"core_company\" WHERE \"core_company\".\"id\" = 2 LIMIT 1", - "start_time": "2017-03-27T15:23:24.865Z", - "end_time": "2017-03-27T15:23:24.866Z", - "time_taken": 1.001, - "request": "ed3b0c74-c2c2-4692-8bfd-d24e50bb123f", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\compiler.py\", line 806, in has_results\n return bool(self.execute_sql(SINGLE))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 494, in has_results\n return compiler.has_results()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 660, in exists\n return self.query.has_results(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\fields\\related.py\", line 878, in validate\n if not qs.exists():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\fields\\__init__.py\", line 591, in clean\n self.validate(value, model_instance)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1252, in clean_fields\n setattr(self, f.attname, f.clean(raw_value, self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1210, in full_clean\n self.clean_fields(exclude=exclude)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 398, in _post_clean\n self.instance.full_clean(exclude=exclude, validate_unique=False)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 372, in full_clean\n self._post_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 161, in errors\n self.full_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 169, in is_valid\n return self.is_bound and not self.errors\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1441, in changeform_view\n if form.is_valid():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1509, in add_view\n return self.changeform_view(request, None, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 429, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:23:25.086604+00:00)", - "start_time": "2017-03-27T15:23:25.091Z", - "end_time": "2017-03-27T15:23:25.095Z", - "time_taken": 4.003, - "request": "a3966cbe-bf35-4b2f-b9b1-2939432d8b4b", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 430, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:23:25.100Z", - "end_time": "2017-03-27T15:23:25.103Z", - "time_taken": 3.001, - "request": "a3966cbe-bf35-4b2f-b9b1-2939432d8b4b", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 431, - "fields": { - "query": "SELECT COUNT(*) AS \"__count\" FROM \"core_vacancy\"", - "start_time": "2017-03-27T15:23:25.108Z", - "end_time": "2017-03-27T15:23:25.110Z", - "time_taken": 2.001, - "request": "a3966cbe-bf35-4b2f-b9b1-2939432d8b4b", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 457, in get_aggregation\n result = compiler.execute_sql(SINGLE)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 476, in get_count\n number = obj.get_aggregation(using, ['__count'])['__count']\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 369, in count\n return self.query.get_count(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\paginator.py\", line 72, in count\n return self.object_list.count()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 35, in __get__\n res = instance.__dict__[self.name] = self.func(instance)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 172, in get_results\n result_count = paginator.count\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 79, in __init__\n self.get_results(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 432, - "fields": { - "query": "SELECT COUNT(*) AS \"__count\" FROM \"core_vacancy\"", - "start_time": "2017-03-27T15:23:25.113Z", - "end_time": "2017-03-27T15:23:25.114Z", - "time_taken": 1.0, - "request": "a3966cbe-bf35-4b2f-b9b1-2939432d8b4b", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 457, in get_aggregation\n result = compiler.execute_sql(SINGLE)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 476, in get_count\n number = obj.get_aggregation(using, ['__count'])['__count']\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 369, in count\n return self.query.get_count(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 176, in get_results\n full_result_count = self.root_queryset.count()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 79, in __init__\n self.get_results(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 433, - "fields": { - "query": "SELECT \"core_vacancy\".\"id\", \"core_vacancy\".\"company_id\", \"core_vacancy\".\"verified\", \"core_vacancy\".\"open_time\", \"core_vacancy\".\"close_time\" FROM \"core_vacancy\" ORDER BY \"core_vacancy\".\"id\" DESC", - "start_time": "2017-03-27T15:23:25.122Z", - "end_time": "2017-03-27T15:23:25.124Z", - "time_taken": 2.002, - "request": "a3966cbe-bf35-4b2f-b9b1-2939432d8b4b", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1657, in changelist_view\n selection_note=_('0 of %(cnt)s selected') % {'cnt': len(cl.result_list)},\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 434, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:23:25.388806+00:00)", - "start_time": "2017-03-27T15:23:25.392Z", - "end_time": "2017-03-27T15:23:25.396Z", - "time_taken": 4.003, - "request": "ede22694-0952-4bfb-9cd6-9825f7c15d40", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 435, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:23:25.400Z", - "end_time": "2017-03-27T15:23:25.403Z", - "time_taken": 3.003, - "request": "ede22694-0952-4bfb-9cd6-9825f7c15d40", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 436, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:23:38.248387+00:00)", - "start_time": "2017-03-27T15:23:38.252Z", - "end_time": "2017-03-27T15:23:38.256Z", - "time_taken": 4.004, - "request": "1e4997c4-baf7-439b-922d-182b05c5502a", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 437, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:23:38.260Z", - "end_time": "2017-03-27T15:23:38.264Z", - "time_taken": 4.003, - "request": "1e4997c4-baf7-439b-922d-182b05c5502a", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 438, - "fields": { - "query": "SELECT \"django_admin_log\".\"id\", \"django_admin_log\".\"action_time\", \"django_admin_log\".\"user_id\", \"django_admin_log\".\"content_type_id\", \"django_admin_log\".\"object_id\", \"django_admin_log\".\"object_repr\", \"django_admin_log\".\"action_flag\", \"django_admin_log\".\"change_message\", \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\", \"django_content_type\".\"id\", \"django_content_type\".\"app_label\", \"django_content_type\".\"model\" FROM \"django_admin_log\" INNER JOIN \"auth_user\" ON (\"django_admin_log\".\"user_id\" = \"auth_user\".\"id\") LEFT OUTER JOIN \"django_content_type\" ON (\"django_admin_log\".\"content_type_id\" = \"django_content_type\".\"id\") WHERE \"django_admin_log\".\"user_id\" = 1 ORDER BY \"django_admin_log\".\"action_time\" DESC LIMIT 10", - "start_time": "2017-03-27T15:23:38.307Z", - "end_time": "2017-03-27T15:23:38.313Z", - "time_taken": 6.006, - "request": "1e4997c4-baf7-439b-922d-182b05c5502a", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 260, in __bool__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\smartif.py\", line 96, in <lambda>\n 'not': prefix(8, lambda context, x: not x.eval(context)),\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\smartif.py\", line 83, in eval\n return func(context, self.first)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 308, in render\n match = condition.eval(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 439, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:23:41.559598+00:00)", - "start_time": "2017-03-27T15:23:41.563Z", - "end_time": "2017-03-27T15:23:41.569Z", - "time_taken": 6.005, - "request": "0fe3e8da-1ff4-48d0-9ff4-3b9ee5029f8f", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 440, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:23:41.573Z", - "end_time": "2017-03-27T15:23:41.576Z", - "time_taken": 3.002, - "request": "0fe3e8da-1ff4-48d0-9ff4-3b9ee5029f8f", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 441, - "fields": { - "query": "SELECT COUNT(*) AS \"__count\" FROM \"core_application\"", - "start_time": "2017-03-27T15:23:41.581Z", - "end_time": "2017-03-27T15:23:41.615Z", - "time_taken": 34.022, - "request": "0fe3e8da-1ff4-48d0-9ff4-3b9ee5029f8f", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 457, in get_aggregation\n result = compiler.execute_sql(SINGLE)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 476, in get_count\n number = obj.get_aggregation(using, ['__count'])['__count']\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 369, in count\n return self.query.get_count(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\paginator.py\", line 72, in count\n return self.object_list.count()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 35, in __get__\n res = instance.__dict__[self.name] = self.func(instance)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 172, in get_results\n result_count = paginator.count\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 79, in __init__\n self.get_results(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 442, - "fields": { - "query": "SELECT COUNT(*) AS \"__count\" FROM \"core_application\"", - "start_time": "2017-03-27T15:23:41.618Z", - "end_time": "2017-03-27T15:23:41.619Z", - "time_taken": 1.001, - "request": "0fe3e8da-1ff4-48d0-9ff4-3b9ee5029f8f", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 457, in get_aggregation\n result = compiler.execute_sql(SINGLE)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 476, in get_count\n number = obj.get_aggregation(using, ['__count'])['__count']\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 369, in count\n return self.query.get_count(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 176, in get_results\n full_result_count = self.root_queryset.count()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 79, in __init__\n self.get_results(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 443, - "fields": { - "query": "SELECT \"core_application\".\"id\", \"core_application\".\"student_npm_id\", \"core_application\".\"vacancy_id_id\" FROM \"core_application\" ORDER BY \"core_application\".\"id\" DESC", - "start_time": "2017-03-27T15:23:41.626Z", - "end_time": "2017-03-27T15:23:41.628Z", - "time_taken": 2.002, - "request": "0fe3e8da-1ff4-48d0-9ff4-3b9ee5029f8f", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1657, in changelist_view\n selection_note=_('0 of %(cnt)s selected') % {'cnt': len(cl.result_list)},\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 444, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:23:41.897823+00:00)", - "start_time": "2017-03-27T15:23:41.901Z", - "end_time": "2017-03-27T15:23:41.905Z", - "time_taken": 4.003, - "request": "2ec2759f-7662-4b33-aa63-9c73b01d5a34", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 445, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:23:41.909Z", - "end_time": "2017-03-27T15:23:41.913Z", - "time_taken": 4.002, - "request": "2ec2759f-7662-4b33-aa63-9c73b01d5a34", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 446, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:23:44.196358+00:00)", - "start_time": "2017-03-27T15:23:44.200Z", - "end_time": "2017-03-27T15:23:44.205Z", - "time_taken": 5.003, - "request": "1e096140-97c3-4d48-8a98-ccdd0fb556ac", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 447, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:23:44.209Z", - "end_time": "2017-03-27T15:23:44.213Z", - "time_taken": 4.003, - "request": "1e096140-97c3-4d48-8a98-ccdd0fb556ac", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 448, - "fields": { - "query": "SELECT \"django_content_type\".\"id\", \"django_content_type\".\"app_label\", \"django_content_type\".\"model\" FROM \"django_content_type\" WHERE (\"django_content_type\".\"app_label\" = core AND \"django_content_type\".\"model\" = application)", - "start_time": "2017-03-27T15:23:44.225Z", - "end_time": "2017-03-27T15:23:44.229Z", - "time_taken": 4.005, - "request": "1e096140-97c3-4d48-8a98-ccdd0fb556ac", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\contenttypes\\models.py\", line 52, in get_for_model\n ct = self.get(app_label=opts.app_label, model=opts.model_name)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 64, in get_content_type_for_model\n return ContentType.objects.get_for_model(obj, for_concrete_model=False)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1050, in render_change_form\n 'content_type_id': get_content_type_for_model(self.model).pk,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1506, in changeform_view\n return self.render_change_form(request, context, add=add, change=not add, obj=obj, form_url=form_url)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1509, in add_view\n return self.changeform_view(request, None, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 449, - "fields": { - "query": "SELECT \"core_student\".\"id\", \"core_student\".\"created\", \"core_student\".\"updated\", \"core_student\".\"user_id\", \"core_student\".\"npm\", \"core_student\".\"resume\", \"core_student\".\"phone_number\" FROM \"core_student\"", - "start_time": "2017-03-27T15:23:44.275Z", - "end_time": "2017-03-27T15:23:44.278Z", - "time_taken": 3.003, - "request": "1e096140-97c3-4d48-8a98-ccdd0fb556ac", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1118, in __iter__\n for obj in queryset:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 567, in render_options\n for option_value, option_label in self.choices:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 544, in render\n options = self.render_options([value])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\widgets.py\", line 307, in render\n 'widget': self.widget.render(name, value, *args, **kwargs),\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 101, in as_widget\n return force_text(widget.render(name, self.value(), attrs=attrs))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 43, in __str__\n return self.as_widget()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\html.py\", line 391, in <lambda>\n klass.__str__ = lambda self: mark_safe(klass_str(self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\encoding.py\", line 76, in force_text\n s = six.text_type(s)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1028, in render_value_in_context\n value = force_text(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1050, in render\n return render_value_in_context(output, context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 210, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 210, in render\n return template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 450, - "fields": { - "query": "SELECT \"core_vacancy\".\"id\", \"core_vacancy\".\"company_id\", \"core_vacancy\".\"verified\", \"core_vacancy\".\"open_time\", \"core_vacancy\".\"close_time\" FROM \"core_vacancy\"", - "start_time": "2017-03-27T15:23:44.289Z", - "end_time": "2017-03-27T15:23:44.291Z", - "time_taken": 2.003, - "request": "1e096140-97c3-4d48-8a98-ccdd0fb556ac", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1118, in __iter__\n for obj in queryset:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 567, in render_options\n for option_value, option_label in self.choices:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 544, in render\n options = self.render_options([value])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\widgets.py\", line 307, in render\n 'widget': self.widget.render(name, value, *args, **kwargs),\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 101, in as_widget\n return force_text(widget.render(name, self.value(), attrs=attrs))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 43, in __str__\n return self.as_widget()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\html.py\", line 391, in <lambda>\n klass.__str__ = lambda self: mark_safe(klass_str(self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\encoding.py\", line 76, in force_text\n s = six.text_type(s)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1028, in render_value_in_context\n value = force_text(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1050, in render\n return render_value_in_context(output, context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 210, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 210, in render\n return template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 451, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:23:44.490553+00:00)", - "start_time": "2017-03-27T15:23:44.495Z", - "end_time": "2017-03-27T15:23:44.499Z", - "time_taken": 4.004, - "request": "c05580d8-d759-4972-866d-07fe13405ed6", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 452, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:23:44.503Z", - "end_time": "2017-03-27T15:23:44.506Z", - "time_taken": 3.003, - "request": "c05580d8-d759-4972-866d-07fe13405ed6", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 453, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:23:52.241727+00:00)", - "start_time": "2017-03-27T15:23:52.245Z", - "end_time": "2017-03-27T15:23:52.250Z", - "time_taken": 5.004, - "request": "f0737783-5f9e-4467-bd62-ccffb74cd1e5", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 454, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:23:52.254Z", - "end_time": "2017-03-27T15:23:52.257Z", - "time_taken": 3.003, - "request": "f0737783-5f9e-4467-bd62-ccffb74cd1e5", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 455, - "fields": { - "query": "SELECT \"core_student\".\"id\", \"core_student\".\"created\", \"core_student\".\"updated\", \"core_student\".\"user_id\", \"core_student\".\"npm\", \"core_student\".\"resume\", \"core_student\".\"phone_number\" FROM \"core_student\" WHERE \"core_student\".\"id\" = 1", - "start_time": "2017-03-27T15:23:52.264Z", - "end_time": "2017-03-27T15:23:52.269Z", - "time_taken": 5.006, - "request": "f0737783-5f9e-4467-bd62-ccffb74cd1e5", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1220, in to_python\n value = self.queryset.get(**{key: value})\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\fields.py\", line 158, in clean\n value = self.to_python(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 388, in _clean_fields\n value = field.clean(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 370, in full_clean\n self._clean_fields()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 161, in errors\n self.full_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 169, in is_valid\n return self.is_bound and not self.errors\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1441, in changeform_view\n if form.is_valid():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1509, in add_view\n return self.changeform_view(request, None, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 456, - "fields": { - "query": "SELECT \"core_vacancy\".\"id\", \"core_vacancy\".\"company_id\", \"core_vacancy\".\"verified\", \"core_vacancy\".\"open_time\", \"core_vacancy\".\"close_time\" FROM \"core_vacancy\" WHERE \"core_vacancy\".\"id\" = 1", - "start_time": "2017-03-27T15:23:52.273Z", - "end_time": "2017-03-27T15:23:52.275Z", - "time_taken": 2.002, - "request": "f0737783-5f9e-4467-bd62-ccffb74cd1e5", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1220, in to_python\n value = self.queryset.get(**{key: value})\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\fields.py\", line 158, in clean\n value = self.to_python(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 388, in _clean_fields\n value = field.clean(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 370, in full_clean\n self._clean_fields()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 161, in errors\n self.full_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 169, in is_valid\n return self.is_bound and not self.errors\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1441, in changeform_view\n if form.is_valid():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1509, in add_view\n return self.changeform_view(request, None, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 457, - "fields": { - "query": "SELECT (1) AS \"a\" FROM \"core_student\" WHERE \"core_student\".\"id\" = 1 LIMIT 1", - "start_time": "2017-03-27T15:23:52.279Z", - "end_time": "2017-03-27T15:23:52.281Z", - "time_taken": 2.003, - "request": "f0737783-5f9e-4467-bd62-ccffb74cd1e5", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\compiler.py\", line 806, in has_results\n return bool(self.execute_sql(SINGLE))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 494, in has_results\n return compiler.has_results()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 660, in exists\n return self.query.has_results(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\fields\\related.py\", line 878, in validate\n if not qs.exists():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\fields\\__init__.py\", line 591, in clean\n self.validate(value, model_instance)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1252, in clean_fields\n setattr(self, f.attname, f.clean(raw_value, self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1210, in full_clean\n self.clean_fields(exclude=exclude)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 398, in _post_clean\n self.instance.full_clean(exclude=exclude, validate_unique=False)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 372, in full_clean\n self._post_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 161, in errors\n self.full_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 169, in is_valid\n return self.is_bound and not self.errors\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1441, in changeform_view\n if form.is_valid():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1509, in add_view\n return self.changeform_view(request, None, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 458, - "fields": { - "query": "SELECT (1) AS \"a\" FROM \"core_vacancy\" WHERE \"core_vacancy\".\"id\" = 1 LIMIT 1", - "start_time": "2017-03-27T15:23:52.286Z", - "end_time": "2017-03-27T15:23:52.287Z", - "time_taken": 1.001, - "request": "f0737783-5f9e-4467-bd62-ccffb74cd1e5", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\compiler.py\", line 806, in has_results\n return bool(self.execute_sql(SINGLE))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 494, in has_results\n return compiler.has_results()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 660, in exists\n return self.query.has_results(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\fields\\related.py\", line 878, in validate\n if not qs.exists():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\fields\\__init__.py\", line 591, in clean\n self.validate(value, model_instance)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1252, in clean_fields\n setattr(self, f.attname, f.clean(raw_value, self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1210, in full_clean\n self.clean_fields(exclude=exclude)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 398, in _post_clean\n self.instance.full_clean(exclude=exclude, validate_unique=False)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 372, in full_clean\n self._post_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 161, in errors\n self.full_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 169, in is_valid\n return self.is_bound and not self.errors\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1441, in changeform_view\n if form.is_valid():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1509, in add_view\n return self.changeform_view(request, None, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 459, - "fields": { - "query": "SELECT (1) AS \"a\" FROM \"core_application\" WHERE \"core_application\".\"student_npm_id\" = 1 LIMIT 1", - "start_time": "2017-03-27T15:23:52.292Z", - "end_time": "2017-03-27T15:23:52.295Z", - "time_taken": 3.001, - "request": "f0737783-5f9e-4467-bd62-ccffb74cd1e5", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\compiler.py\", line 806, in has_results\n return bool(self.execute_sql(SINGLE))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 494, in has_results\n return compiler.has_results()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 660, in exists\n return self.query.has_results(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1113, in _perform_unique_checks\n if qs.exists():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1018, in validate_unique\n errors = self._perform_unique_checks(unique_checks)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 413, in validate_unique\n self.instance.validate_unique(exclude=exclude)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 404, in _post_clean\n self.validate_unique()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 372, in full_clean\n self._post_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 161, in errors\n self.full_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 169, in is_valid\n return self.is_bound and not self.errors\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1441, in changeform_view\n if form.is_valid():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1509, in add_view\n return self.changeform_view(request, None, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 460, - "fields": { - "query": "SELECT (1) AS \"a\" FROM \"core_application\" WHERE \"core_application\".\"vacancy_id_id\" = 1 LIMIT 1", - "start_time": "2017-03-27T15:23:52.299Z", - "end_time": "2017-03-27T15:23:52.300Z", - "time_taken": 1.0, - "request": "f0737783-5f9e-4467-bd62-ccffb74cd1e5", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\compiler.py\", line 806, in has_results\n return bool(self.execute_sql(SINGLE))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 494, in has_results\n return compiler.has_results()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 660, in exists\n return self.query.has_results(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1113, in _perform_unique_checks\n if qs.exists():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\base.py\", line 1018, in validate_unique\n errors = self._perform_unique_checks(unique_checks)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 413, in validate_unique\n self.instance.validate_unique(exclude=exclude)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 404, in _post_clean\n self.validate_unique()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 372, in full_clean\n self._post_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 161, in errors\n self.full_clean()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\forms.py\", line 169, in is_valid\n return self.is_bound and not self.errors\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1441, in changeform_view\n if form.is_valid():\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1509, in add_view\n return self.changeform_view(request, None, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 461, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:23:52.497898+00:00)", - "start_time": "2017-03-27T15:23:52.501Z", - "end_time": "2017-03-27T15:23:52.506Z", - "time_taken": 5.004, - "request": "33a72dd2-78e7-43cc-b777-a352a3ea9ef8", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 462, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:23:52.510Z", - "end_time": "2017-03-27T15:23:52.514Z", - "time_taken": 4.003, - "request": "33a72dd2-78e7-43cc-b777-a352a3ea9ef8", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 463, - "fields": { - "query": "SELECT COUNT(*) AS \"__count\" FROM \"core_application\"", - "start_time": "2017-03-27T15:23:52.518Z", - "end_time": "2017-03-27T15:23:52.540Z", - "time_taken": 22.016, - "request": "33a72dd2-78e7-43cc-b777-a352a3ea9ef8", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 457, in get_aggregation\n result = compiler.execute_sql(SINGLE)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 476, in get_count\n number = obj.get_aggregation(using, ['__count'])['__count']\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 369, in count\n return self.query.get_count(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\paginator.py\", line 72, in count\n return self.object_list.count()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 35, in __get__\n res = instance.__dict__[self.name] = self.func(instance)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 172, in get_results\n result_count = paginator.count\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 79, in __init__\n self.get_results(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 464, - "fields": { - "query": "SELECT COUNT(*) AS \"__count\" FROM \"core_application\"", - "start_time": "2017-03-27T15:23:52.543Z", - "end_time": "2017-03-27T15:23:52.544Z", - "time_taken": 1.002, - "request": "33a72dd2-78e7-43cc-b777-a352a3ea9ef8", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 457, in get_aggregation\n result = compiler.execute_sql(SINGLE)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 476, in get_count\n number = obj.get_aggregation(using, ['__count'])['__count']\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 369, in count\n return self.query.get_count(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 176, in get_results\n full_result_count = self.root_queryset.count()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 79, in __init__\n self.get_results(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 465, - "fields": { - "query": "SELECT \"core_application\".\"id\", \"core_application\".\"student_npm_id\", \"core_application\".\"vacancy_id_id\" FROM \"core_application\" ORDER BY \"core_application\".\"id\" DESC", - "start_time": "2017-03-27T15:23:52.552Z", - "end_time": "2017-03-27T15:23:52.553Z", - "time_taken": 1.001, - "request": "33a72dd2-78e7-43cc-b777-a352a3ea9ef8", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1657, in changelist_view\n selection_note=_('0 of %(cnt)s selected') % {'cnt': len(cl.result_list)},\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 466, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:23:52.878151+00:00)", - "start_time": "2017-03-27T15:23:52.883Z", - "end_time": "2017-03-27T15:23:52.888Z", - "time_taken": 5.005, - "request": "5edf1ead-a791-41e2-a2da-0b8d475b8176", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 467, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:23:52.892Z", - "end_time": "2017-03-27T15:23:52.895Z", - "time_taken": 3.004, - "request": "5edf1ead-a791-41e2-a2da-0b8d475b8176", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 468, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:30:55.932759+00:00)", - "start_time": "2017-03-27T15:30:55.936Z", - "end_time": "2017-03-27T15:30:55.941Z", - "time_taken": 5.004, - "request": "1db01b33-3c75-482d-aa0b-43c24e5de1c7", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 469, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:30:55.945Z", - "end_time": "2017-03-27T15:30:55.948Z", - "time_taken": 3.001, - "request": "1db01b33-3c75-482d-aa0b-43c24e5de1c7", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 470, - "fields": { - "query": "SELECT \"django_admin_log\".\"id\", \"django_admin_log\".\"action_time\", \"django_admin_log\".\"user_id\", \"django_admin_log\".\"content_type_id\", \"django_admin_log\".\"object_id\", \"django_admin_log\".\"object_repr\", \"django_admin_log\".\"action_flag\", \"django_admin_log\".\"change_message\", \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\", \"django_content_type\".\"id\", \"django_content_type\".\"app_label\", \"django_content_type\".\"model\" FROM \"django_admin_log\" INNER JOIN \"auth_user\" ON (\"django_admin_log\".\"user_id\" = \"auth_user\".\"id\") LEFT OUTER JOIN \"django_content_type\" ON (\"django_admin_log\".\"content_type_id\" = \"django_content_type\".\"id\") WHERE \"django_admin_log\".\"user_id\" = 1 ORDER BY \"django_admin_log\".\"action_time\" DESC LIMIT 10", - "start_time": "2017-03-27T15:30:55.992Z", - "end_time": "2017-03-27T15:30:56.000Z", - "time_taken": 8.005, - "request": "1db01b33-3c75-482d-aa0b-43c24e5de1c7", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 260, in __bool__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\smartif.py\", line 96, in <lambda>\n 'not': prefix(8, lambda context, x: not x.eval(context)),\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\smartif.py\", line 83, in eval\n return func(context, self.first)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 308, in render\n match = condition.eval(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 471, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:30:58.470453+00:00)", - "start_time": "2017-03-27T15:30:58.637Z", - "end_time": "2017-03-27T15:30:58.642Z", - "time_taken": 5.003, - "request": "306bb360-adbc-410e-9e92-27c719135373", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\generic\\base.py\", line 68, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 472, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:30:58.647Z", - "end_time": "2017-03-27T15:30:58.650Z", - "time_taken": 3.004, - "request": "306bb360-adbc-410e-9e92-27c719135373", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\generic\\base.py\", line 68, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 473, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:31:00.089534+00:00)", - "start_time": "2017-03-27T15:31:00.094Z", - "end_time": "2017-03-27T15:31:00.099Z", - "time_taken": 5.004, - "request": "b1e8867d-eb67-4f9f-95af-3cf33a653048", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\generic\\base.py\", line 68, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 474, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:31:00.104Z", - "end_time": "2017-03-27T15:31:00.107Z", - "time_taken": 3.003, - "request": "b1e8867d-eb67-4f9f-95af-3cf33a653048", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\generic\\base.py\", line 68, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 475, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:35:12.011079+00:00)", - "start_time": "2017-03-27T15:35:12.045Z", - "end_time": "2017-03-27T15:35:12.049Z", - "time_taken": 4.003, - "request": "84afa3cb-5cc3-47ed-b2a5-85e13a06389f", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 476, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:35:12.054Z", - "end_time": "2017-03-27T15:35:12.057Z", - "time_taken": 3.003, - "request": "84afa3cb-5cc3-47ed-b2a5-85e13a06389f", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 477, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:35:34.082809+00:00)", - "start_time": "2017-03-27T15:35:34.086Z", - "end_time": "2017-03-27T15:35:34.091Z", - "time_taken": 5.004, - "request": "da311857-4e71-4169-9c5a-640764617d38", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 478, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:35:34.095Z", - "end_time": "2017-03-27T15:35:34.098Z", - "time_taken": 3.002, - "request": "da311857-4e71-4169-9c5a-640764617d38", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 479, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:37:03.109220+00:00)", - "start_time": "2017-03-27T15:37:03.113Z", - "end_time": "2017-03-27T15:37:03.117Z", - "time_taken": 4.004, - "request": "dafd0acf-9d73-4487-b0c2-655024e3c650", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 480, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:37:03.122Z", - "end_time": "2017-03-27T15:37:03.125Z", - "time_taken": 3.001, - "request": "dafd0acf-9d73-4487-b0c2-655024e3c650", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 481, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:37:21.503497+00:00)", - "start_time": "2017-03-27T15:37:21.508Z", - "end_time": "2017-03-27T15:37:21.512Z", - "time_taken": 4.003, - "request": "ceb91b4b-4be9-4382-a1d9-6bf32afdd7e3", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 482, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:37:21.517Z", - "end_time": "2017-03-27T15:37:21.520Z", - "time_taken": 3.002, - "request": "ceb91b4b-4be9-4382-a1d9-6bf32afdd7e3", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 483, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:37:33.506773+00:00)", - "start_time": "2017-03-27T15:37:33.510Z", - "end_time": "2017-03-27T15:37:33.515Z", - "time_taken": 5.004, - "request": "6fb98310-3148-4971-b04c-3e9c3905af39", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 484, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:37:33.520Z", - "end_time": "2017-03-27T15:37:33.523Z", - "time_taken": 3.002, - "request": "6fb98310-3148-4971-b04c-3e9c3905af39", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 485, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:37:48.644876+00:00)", - "start_time": "2017-03-27T15:37:48.648Z", - "end_time": "2017-03-27T15:37:48.652Z", - "time_taken": 4.004, - "request": "932c8055-5b76-4302-b46e-2a9b150f1f8f", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 486, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:37:48.657Z", - "end_time": "2017-03-27T15:37:48.661Z", - "time_taken": 4.006, - "request": "932c8055-5b76-4302-b46e-2a9b150f1f8f", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 487, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:42:00.465611+00:00)", - "start_time": "2017-03-27T15:42:00.486Z", - "end_time": "2017-03-27T15:42:00.490Z", - "time_taken": 4.004, - "request": "e9cab203-cb12-4690-8714-a1a5cda0d3ca", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 488, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:42:00.496Z", - "end_time": "2017-03-27T15:42:00.499Z", - "time_taken": 3.001, - "request": "e9cab203-cb12-4690-8714-a1a5cda0d3ca", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 489, - "fields": { - "query": "SELECT \"core_vacancy\".\"id\", \"core_vacancy\".\"company_id\", \"core_vacancy\".\"verified\", \"core_vacancy\".\"open_time\", \"core_vacancy\".\"close_time\" FROM \"core_vacancy\" LIMIT 21", - "start_time": "2017-03-27T15:42:00.732Z", - "end_time": "2017-03-27T15:42:00.735Z", - "time_taken": 3.003, - "request": "e9cab203-cb12-4690-8714-a1a5cda0d3ca", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 256, in __iter__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 232, in __repr__\n data = list(self[:REPR_OUTPUT_SIZE + 1])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 555, in _safe_repr\n rep = repr(object)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 405, in format\n return _safe_repr(object, context, maxlevels, level)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 393, in _repr\n self._depth, level)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 161, in _format\n rep = self._repr(object, context, level)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 144, in pformat\n self._format(object, sio, 0, 0, {}, 0)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 58, in pformat\n compact=compact).pformat(object)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaultfilters.py\", line 966, in pprint\n return pformat(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\debug.py\", line 266, in get_traceback_data\n v = pprint(v)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\debug.py\", line 334, in get_traceback_text\n c = Context(self.get_traceback_data(), autoescape=False, use_l10n=False)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\debug.py\", line 81, in technical_500_response\n text = reporter.get_traceback_text()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 128, in handle_uncaught_exception\n return debug.technical_500_response(request, *exc_info)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 86, in response_for_exception\n response = handle_uncaught_exception(request, get_resolver(get_urlconf()), sys.exc_info())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 41, in inner\n response = response_for_exception(request, exc)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 490, - "fields": { - "query": "SELECT \"core_vacancy\".\"id\", \"core_vacancy\".\"company_id\", \"core_vacancy\".\"verified\", \"core_vacancy\".\"open_time\", \"core_vacancy\".\"close_time\" FROM \"core_vacancy\" LIMIT 21", - "start_time": "2017-03-27T15:42:00.738Z", - "end_time": "2017-03-27T15:42:00.739Z", - "time_taken": 1.001, - "request": "e9cab203-cb12-4690-8714-a1a5cda0d3ca", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 256, in __iter__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 232, in __repr__\n data = list(self[:REPR_OUTPUT_SIZE + 1])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 555, in _safe_repr\n rep = repr(object)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 405, in format\n return _safe_repr(object, context, maxlevels, level)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 393, in _repr\n self._depth, level)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 161, in _format\n rep = self._repr(object, context, level)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 144, in pformat\n self._format(object, sio, 0, 0, {}, 0)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 58, in pformat\n compact=compact).pformat(object)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaultfilters.py\", line 966, in pprint\n return pformat(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\debug.py\", line 266, in get_traceback_data\n v = pprint(v)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\debug.py\", line 334, in get_traceback_text\n c = Context(self.get_traceback_data(), autoescape=False, use_l10n=False)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\debug.py\", line 81, in technical_500_response\n text = reporter.get_traceback_text()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 128, in handle_uncaught_exception\n return debug.technical_500_response(request, *exc_info)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 86, in response_for_exception\n response = handle_uncaught_exception(request, get_resolver(get_urlconf()), sys.exc_info())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 41, in inner\n response = response_for_exception(request, exc)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 491, - "fields": { - "query": "SELECT \"core_vacancy\".\"id\", \"core_vacancy\".\"company_id\", \"core_vacancy\".\"verified\", \"core_vacancy\".\"open_time\", \"core_vacancy\".\"close_time\" FROM \"core_vacancy\" LIMIT 21", - "start_time": "2017-03-27T15:42:00.743Z", - "end_time": "2017-03-27T15:42:00.744Z", - "time_taken": 1.001, - "request": "e9cab203-cb12-4690-8714-a1a5cda0d3ca", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 256, in __iter__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 232, in __repr__\n data = list(self[:REPR_OUTPUT_SIZE + 1])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 555, in _safe_repr\n rep = repr(object)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 405, in format\n return _safe_repr(object, context, maxlevels, level)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 393, in _repr\n self._depth, level)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 161, in _format\n rep = self._repr(object, context, level)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 144, in pformat\n self._format(object, sio, 0, 0, {}, 0)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 58, in pformat\n compact=compact).pformat(object)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaultfilters.py\", line 966, in pprint\n return pformat(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\debug.py\", line 266, in get_traceback_data\n v = pprint(v)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\debug.py\", line 334, in get_traceback_text\n c = Context(self.get_traceback_data(), autoescape=False, use_l10n=False)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\debug.py\", line 81, in technical_500_response\n text = reporter.get_traceback_text()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 128, in handle_uncaught_exception\n return debug.technical_500_response(request, *exc_info)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 86, in response_for_exception\n response = handle_uncaught_exception(request, get_resolver(get_urlconf()), sys.exc_info())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 41, in inner\n response = response_for_exception(request, exc)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 492, - "fields": { - "query": "SELECT \"core_vacancy\".\"id\", \"core_vacancy\".\"company_id\", \"core_vacancy\".\"verified\", \"core_vacancy\".\"open_time\", \"core_vacancy\".\"close_time\" FROM \"core_vacancy\" LIMIT 21", - "start_time": "2017-03-27T15:42:00.748Z", - "end_time": "2017-03-27T15:42:00.749Z", - "time_taken": 1.001, - "request": "e9cab203-cb12-4690-8714-a1a5cda0d3ca", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 256, in __iter__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 232, in __repr__\n data = list(self[:REPR_OUTPUT_SIZE + 1])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 555, in _safe_repr\n rep = repr(object)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 405, in format\n return _safe_repr(object, context, maxlevels, level)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 393, in _repr\n self._depth, level)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 161, in _format\n rep = self._repr(object, context, level)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 144, in pformat\n self._format(object, sio, 0, 0, {}, 0)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 58, in pformat\n compact=compact).pformat(object)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaultfilters.py\", line 966, in pprint\n return pformat(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\debug.py\", line 266, in get_traceback_data\n v = pprint(v)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\debug.py\", line 334, in get_traceback_text\n c = Context(self.get_traceback_data(), autoescape=False, use_l10n=False)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\debug.py\", line 81, in technical_500_response\n text = reporter.get_traceback_text()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 128, in handle_uncaught_exception\n return debug.technical_500_response(request, *exc_info)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 86, in response_for_exception\n response = handle_uncaught_exception(request, get_resolver(get_urlconf()), sys.exc_info())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 41, in inner\n response = response_for_exception(request, exc)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 493, - "fields": { - "query": "SELECT \"core_vacancy\".\"id\", \"core_vacancy\".\"company_id\", \"core_vacancy\".\"verified\", \"core_vacancy\".\"open_time\", \"core_vacancy\".\"close_time\" FROM \"core_vacancy\" LIMIT 21", - "start_time": "2017-03-27T15:42:00.752Z", - "end_time": "2017-03-27T15:42:00.753Z", - "time_taken": 1.001, - "request": "e9cab203-cb12-4690-8714-a1a5cda0d3ca", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 256, in __iter__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 232, in __repr__\n data = list(self[:REPR_OUTPUT_SIZE + 1])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 555, in _safe_repr\n rep = repr(object)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 405, in format\n return _safe_repr(object, context, maxlevels, level)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 393, in _repr\n self._depth, level)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 161, in _format\n rep = self._repr(object, context, level)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 144, in pformat\n self._format(object, sio, 0, 0, {}, 0)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 58, in pformat\n compact=compact).pformat(object)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaultfilters.py\", line 966, in pprint\n return pformat(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\debug.py\", line 266, in get_traceback_data\n v = pprint(v)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\debug.py\", line 334, in get_traceback_text\n c = Context(self.get_traceback_data(), autoescape=False, use_l10n=False)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\debug.py\", line 81, in technical_500_response\n text = reporter.get_traceback_text()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 128, in handle_uncaught_exception\n return debug.technical_500_response(request, *exc_info)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 86, in response_for_exception\n response = handle_uncaught_exception(request, get_resolver(get_urlconf()), sys.exc_info())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 41, in inner\n response = response_for_exception(request, exc)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 494, - "fields": { - "query": "SELECT \"core_vacancy\".\"id\", \"core_vacancy\".\"company_id\", \"core_vacancy\".\"verified\", \"core_vacancy\".\"open_time\", \"core_vacancy\".\"close_time\" FROM \"core_vacancy\" LIMIT 21", - "start_time": "2017-03-27T15:42:00.756Z", - "end_time": "2017-03-27T15:42:00.757Z", - "time_taken": 1.0, - "request": "e9cab203-cb12-4690-8714-a1a5cda0d3ca", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 256, in __iter__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 232, in __repr__\n data = list(self[:REPR_OUTPUT_SIZE + 1])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 555, in _safe_repr\n rep = repr(object)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 405, in format\n return _safe_repr(object, context, maxlevels, level)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 393, in _repr\n self._depth, level)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 161, in _format\n rep = self._repr(object, context, level)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 144, in pformat\n self._format(object, sio, 0, 0, {}, 0)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 58, in pformat\n compact=compact).pformat(object)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaultfilters.py\", line 966, in pprint\n return pformat(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\debug.py\", line 266, in get_traceback_data\n v = pprint(v)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\debug.py\", line 334, in get_traceback_text\n c = Context(self.get_traceback_data(), autoescape=False, use_l10n=False)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\debug.py\", line 81, in technical_500_response\n text = reporter.get_traceback_text()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 128, in handle_uncaught_exception\n return debug.technical_500_response(request, *exc_info)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 86, in response_for_exception\n response = handle_uncaught_exception(request, get_resolver(get_urlconf()), sys.exc_info())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 41, in inner\n response = response_for_exception(request, exc)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 495, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:42:13.338201+00:00)", - "start_time": "2017-03-27T15:42:13.343Z", - "end_time": "2017-03-27T15:42:13.348Z", - "time_taken": 5.004, - "request": "245bf2e0-71b9-4dec-996a-b890cc9e41d3", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 496, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:42:13.353Z", - "end_time": "2017-03-27T15:42:13.356Z", - "time_taken": 3.003, - "request": "245bf2e0-71b9-4dec-996a-b890cc9e41d3", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 497, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:42:52.197134+00:00)", - "start_time": "2017-03-27T15:42:52.202Z", - "end_time": "2017-03-27T15:42:52.207Z", - "time_taken": 5.006, - "request": "7ae98805-3b3c-488b-94aa-68d197382cce", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 498, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:42:52.211Z", - "end_time": "2017-03-27T15:42:52.214Z", - "time_taken": 3.003, - "request": "7ae98805-3b3c-488b-94aa-68d197382cce", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 499, - "fields": { - "query": "SELECT \"core_vacancy\".\"id\", \"core_vacancy\".\"company_id\", \"core_vacancy\".\"verified\", \"core_vacancy\".\"open_time\", \"core_vacancy\".\"close_time\" FROM \"core_vacancy\" LIMIT 21", - "start_time": "2017-03-27T15:42:52.269Z", - "end_time": "2017-03-27T15:42:52.272Z", - "time_taken": 3.002, - "request": "7ae98805-3b3c-488b-94aa-68d197382cce", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 256, in __iter__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 232, in __repr__\n data = list(self[:REPR_OUTPUT_SIZE + 1])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 555, in _safe_repr\n rep = repr(object)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 405, in format\n return _safe_repr(object, context, maxlevels, level)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 393, in _repr\n self._depth, level)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 161, in _format\n rep = self._repr(object, context, level)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 144, in pformat\n self._format(object, sio, 0, 0, {}, 0)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 58, in pformat\n compact=compact).pformat(object)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaultfilters.py\", line 966, in pprint\n return pformat(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\debug.py\", line 266, in get_traceback_data\n v = pprint(v)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\debug.py\", line 334, in get_traceback_text\n c = Context(self.get_traceback_data(), autoescape=False, use_l10n=False)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\debug.py\", line 81, in technical_500_response\n text = reporter.get_traceback_text()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 128, in handle_uncaught_exception\n return debug.technical_500_response(request, *exc_info)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 86, in response_for_exception\n response = handle_uncaught_exception(request, get_resolver(get_urlconf()), sys.exc_info())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 41, in inner\n response = response_for_exception(request, exc)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 500, - "fields": { - "query": "SELECT \"core_vacancy\".\"id\", \"core_vacancy\".\"company_id\", \"core_vacancy\".\"verified\", \"core_vacancy\".\"open_time\", \"core_vacancy\".\"close_time\" FROM \"core_vacancy\" LIMIT 21", - "start_time": "2017-03-27T15:42:52.276Z", - "end_time": "2017-03-27T15:42:52.277Z", - "time_taken": 1.002, - "request": "7ae98805-3b3c-488b-94aa-68d197382cce", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 256, in __iter__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 232, in __repr__\n data = list(self[:REPR_OUTPUT_SIZE + 1])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 555, in _safe_repr\n rep = repr(object)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 405, in format\n return _safe_repr(object, context, maxlevels, level)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 393, in _repr\n self._depth, level)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 161, in _format\n rep = self._repr(object, context, level)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 144, in pformat\n self._format(object, sio, 0, 0, {}, 0)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 58, in pformat\n compact=compact).pformat(object)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaultfilters.py\", line 966, in pprint\n return pformat(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\debug.py\", line 266, in get_traceback_data\n v = pprint(v)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\debug.py\", line 334, in get_traceback_text\n c = Context(self.get_traceback_data(), autoescape=False, use_l10n=False)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\debug.py\", line 81, in technical_500_response\n text = reporter.get_traceback_text()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 128, in handle_uncaught_exception\n return debug.technical_500_response(request, *exc_info)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 86, in response_for_exception\n response = handle_uncaught_exception(request, get_resolver(get_urlconf()), sys.exc_info())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 41, in inner\n response = response_for_exception(request, exc)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 501, - "fields": { - "query": "SELECT \"core_vacancy\".\"id\", \"core_vacancy\".\"company_id\", \"core_vacancy\".\"verified\", \"core_vacancy\".\"open_time\", \"core_vacancy\".\"close_time\" FROM \"core_vacancy\" LIMIT 21", - "start_time": "2017-03-27T15:42:52.280Z", - "end_time": "2017-03-27T15:42:52.281Z", - "time_taken": 1.001, - "request": "7ae98805-3b3c-488b-94aa-68d197382cce", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 256, in __iter__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 232, in __repr__\n data = list(self[:REPR_OUTPUT_SIZE + 1])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 555, in _safe_repr\n rep = repr(object)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 405, in format\n return _safe_repr(object, context, maxlevels, level)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 393, in _repr\n self._depth, level)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 161, in _format\n rep = self._repr(object, context, level)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 144, in pformat\n self._format(object, sio, 0, 0, {}, 0)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 58, in pformat\n compact=compact).pformat(object)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaultfilters.py\", line 966, in pprint\n return pformat(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\debug.py\", line 266, in get_traceback_data\n v = pprint(v)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\debug.py\", line 334, in get_traceback_text\n c = Context(self.get_traceback_data(), autoescape=False, use_l10n=False)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\debug.py\", line 81, in technical_500_response\n text = reporter.get_traceback_text()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 128, in handle_uncaught_exception\n return debug.technical_500_response(request, *exc_info)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 86, in response_for_exception\n response = handle_uncaught_exception(request, get_resolver(get_urlconf()), sys.exc_info())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 41, in inner\n response = response_for_exception(request, exc)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 502, - "fields": { - "query": "SELECT \"core_vacancy\".\"id\", \"core_vacancy\".\"company_id\", \"core_vacancy\".\"verified\", \"core_vacancy\".\"open_time\", \"core_vacancy\".\"close_time\" FROM \"core_vacancy\" LIMIT 21", - "start_time": "2017-03-27T15:42:52.284Z", - "end_time": "2017-03-27T15:42:52.285Z", - "time_taken": 1.001, - "request": "7ae98805-3b3c-488b-94aa-68d197382cce", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 256, in __iter__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 232, in __repr__\n data = list(self[:REPR_OUTPUT_SIZE + 1])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 555, in _safe_repr\n rep = repr(object)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 405, in format\n return _safe_repr(object, context, maxlevels, level)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 393, in _repr\n self._depth, level)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 161, in _format\n rep = self._repr(object, context, level)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 144, in pformat\n self._format(object, sio, 0, 0, {}, 0)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 58, in pformat\n compact=compact).pformat(object)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaultfilters.py\", line 966, in pprint\n return pformat(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\debug.py\", line 266, in get_traceback_data\n v = pprint(v)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\debug.py\", line 334, in get_traceback_text\n c = Context(self.get_traceback_data(), autoescape=False, use_l10n=False)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\debug.py\", line 81, in technical_500_response\n text = reporter.get_traceback_text()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 128, in handle_uncaught_exception\n return debug.technical_500_response(request, *exc_info)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 86, in response_for_exception\n response = handle_uncaught_exception(request, get_resolver(get_urlconf()), sys.exc_info())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 41, in inner\n response = response_for_exception(request, exc)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 503, - "fields": { - "query": "SELECT \"core_vacancy\".\"id\", \"core_vacancy\".\"company_id\", \"core_vacancy\".\"verified\", \"core_vacancy\".\"open_time\", \"core_vacancy\".\"close_time\" FROM \"core_vacancy\" LIMIT 21", - "start_time": "2017-03-27T15:42:52.288Z", - "end_time": "2017-03-27T15:42:52.290Z", - "time_taken": 2.003, - "request": "7ae98805-3b3c-488b-94aa-68d197382cce", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 256, in __iter__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 232, in __repr__\n data = list(self[:REPR_OUTPUT_SIZE + 1])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 555, in _safe_repr\n rep = repr(object)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 405, in format\n return _safe_repr(object, context, maxlevels, level)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 393, in _repr\n self._depth, level)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 161, in _format\n rep = self._repr(object, context, level)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 144, in pformat\n self._format(object, sio, 0, 0, {}, 0)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 58, in pformat\n compact=compact).pformat(object)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaultfilters.py\", line 966, in pprint\n return pformat(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\debug.py\", line 266, in get_traceback_data\n v = pprint(v)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\debug.py\", line 334, in get_traceback_text\n c = Context(self.get_traceback_data(), autoescape=False, use_l10n=False)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\debug.py\", line 81, in technical_500_response\n text = reporter.get_traceback_text()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 128, in handle_uncaught_exception\n return debug.technical_500_response(request, *exc_info)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 86, in response_for_exception\n response = handle_uncaught_exception(request, get_resolver(get_urlconf()), sys.exc_info())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 41, in inner\n response = response_for_exception(request, exc)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 504, - "fields": { - "query": "SELECT \"core_vacancy\".\"id\", \"core_vacancy\".\"company_id\", \"core_vacancy\".\"verified\", \"core_vacancy\".\"open_time\", \"core_vacancy\".\"close_time\" FROM \"core_vacancy\" LIMIT 21", - "start_time": "2017-03-27T15:42:52.293Z", - "end_time": "2017-03-27T15:42:52.294Z", - "time_taken": 1.002, - "request": "7ae98805-3b3c-488b-94aa-68d197382cce", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 256, in __iter__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 232, in __repr__\n data = list(self[:REPR_OUTPUT_SIZE + 1])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 555, in _safe_repr\n rep = repr(object)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 405, in format\n return _safe_repr(object, context, maxlevels, level)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 393, in _repr\n self._depth, level)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 161, in _format\n rep = self._repr(object, context, level)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 144, in pformat\n self._format(object, sio, 0, 0, {}, 0)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\pprint.py\", line 58, in pformat\n compact=compact).pformat(object)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaultfilters.py\", line 966, in pprint\n return pformat(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\debug.py\", line 266, in get_traceback_data\n v = pprint(v)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\debug.py\", line 334, in get_traceback_text\n c = Context(self.get_traceback_data(), autoescape=False, use_l10n=False)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\debug.py\", line 81, in technical_500_response\n text = reporter.get_traceback_text()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 128, in handle_uncaught_exception\n return debug.technical_500_response(request, *exc_info)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 86, in response_for_exception\n response = handle_uncaught_exception(request, get_resolver(get_urlconf()), sys.exc_info())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 41, in inner\n response = response_for_exception(request, exc)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 505, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:42:59.869253+00:00)", - "start_time": "2017-03-27T15:42:59.874Z", - "end_time": "2017-03-27T15:42:59.878Z", - "time_taken": 4.003, - "request": "b91925da-e9de-45bc-ad2e-253858671417", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 506, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:42:59.883Z", - "end_time": "2017-03-27T15:42:59.886Z", - "time_taken": 3.003, - "request": "b91925da-e9de-45bc-ad2e-253858671417", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 507, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:43:26.030356+00:00)", - "start_time": "2017-03-27T15:43:26.049Z", - "end_time": "2017-03-27T15:43:26.054Z", - "time_taken": 5.005, - "request": "8b7e9e33-870b-4ac4-a335-13bca671fb3c", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\generic\\base.py\", line 68, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 508, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:43:26.060Z", - "end_time": "2017-03-27T15:43:26.064Z", - "time_taken": 4.001, - "request": "8b7e9e33-870b-4ac4-a335-13bca671fb3c", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\generic\\base.py\", line 68, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 509, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:43:26.959977+00:00)", - "start_time": "2017-03-27T15:43:26.964Z", - "end_time": "2017-03-27T15:43:26.968Z", - "time_taken": 4.004, - "request": "c7fee591-a04a-4265-89aa-cf4a1d699ed5", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\generic\\base.py\", line 68, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 510, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:43:26.973Z", - "end_time": "2017-03-27T15:43:26.976Z", - "time_taken": 3.002, - "request": "c7fee591-a04a-4265-89aa-cf4a1d699ed5", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\generic\\base.py\", line 68, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 511, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:46:01.332998+00:00)", - "start_time": "2017-03-27T15:46:01.338Z", - "end_time": "2017-03-27T15:46:01.344Z", - "time_taken": 6.005, - "request": "64465212-91ca-420c-864a-69a4d58c6ae3", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 512, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:46:01.349Z", - "end_time": "2017-03-27T15:46:01.352Z", - "time_taken": 3.003, - "request": "64465212-91ca-420c-864a-69a4d58c6ae3", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 513, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:46:14.746950+00:00)", - "start_time": "2017-03-27T15:46:14.750Z", - "end_time": "2017-03-27T15:46:14.754Z", - "time_taken": 4.004, - "request": "4d09d335-eb1f-404b-91db-050904a6f3ce", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 514, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:46:14.759Z", - "end_time": "2017-03-27T15:46:14.762Z", - "time_taken": 3.001, - "request": "4d09d335-eb1f-404b-91db-050904a6f3ce", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 515, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:46:22.634213+00:00)", - "start_time": "2017-03-27T15:46:22.638Z", - "end_time": "2017-03-27T15:46:22.643Z", - "time_taken": 5.002, - "request": "947da821-8bc6-461d-bf6a-28f59345d45d", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 516, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:46:22.647Z", - "end_time": "2017-03-27T15:46:22.650Z", - "time_taken": 3.003, - "request": "947da821-8bc6-461d-bf6a-28f59345d45d", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 517, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:46:34.041566+00:00)", - "start_time": "2017-03-27T15:46:34.045Z", - "end_time": "2017-03-27T15:46:34.050Z", - "time_taken": 5.003, - "request": "6bb06278-a0dc-4896-abf0-596a020347e6", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 518, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:46:34.055Z", - "end_time": "2017-03-27T15:46:34.058Z", - "time_taken": 3.002, - "request": "6bb06278-a0dc-4896-abf0-596a020347e6", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 519, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:46:59.470536+00:00)", - "start_time": "2017-03-27T15:46:59.475Z", - "end_time": "2017-03-27T15:46:59.479Z", - "time_taken": 4.002, - "request": "d729e129-a95f-4239-9d43-253357c52cb0", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 520, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:46:59.485Z", - "end_time": "2017-03-27T15:46:59.488Z", - "time_taken": 3.001, - "request": "d729e129-a95f-4239-9d43-253357c52cb0", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 521, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:48:27.042977+00:00)", - "start_time": "2017-03-27T15:48:27.047Z", - "end_time": "2017-03-27T15:48:27.051Z", - "time_taken": 4.003, - "request": "713f1416-072f-4a51-be1a-319dc9a21917", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 522, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:48:27.056Z", - "end_time": "2017-03-27T15:48:27.059Z", - "time_taken": 3.002, - "request": "713f1416-072f-4a51-be1a-319dc9a21917", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 523, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:48:36.846521+00:00)", - "start_time": "2017-03-27T15:48:36.851Z", - "end_time": "2017-03-27T15:48:36.855Z", - "time_taken": 4.004, - "request": "bd353e81-ebd9-4199-bfa3-1ad81915baaf", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 524, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:48:36.860Z", - "end_time": "2017-03-27T15:48:36.864Z", - "time_taken": 4.003, - "request": "bd353e81-ebd9-4199-bfa3-1ad81915baaf", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 525, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:48:43.938253+00:00)", - "start_time": "2017-03-27T15:48:43.942Z", - "end_time": "2017-03-27T15:48:43.946Z", - "time_taken": 4.004, - "request": "7147d488-61f8-45b0-9bf0-ce3469bec58c", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 526, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:48:43.951Z", - "end_time": "2017-03-27T15:48:43.954Z", - "time_taken": 3.002, - "request": "7147d488-61f8-45b0-9bf0-ce3469bec58c", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 527, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:48:50.833855+00:00)", - "start_time": "2017-03-27T15:48:50.837Z", - "end_time": "2017-03-27T15:48:50.842Z", - "time_taken": 5.005, - "request": "ceab8336-c4a7-4232-be6e-4dc62d2d0c99", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 528, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:48:50.847Z", - "end_time": "2017-03-27T15:48:50.850Z", - "time_taken": 3.002, - "request": "ceab8336-c4a7-4232-be6e-4dc62d2d0c99", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 529, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:51:22.534615+00:00)", - "start_time": "2017-03-27T15:51:22.538Z", - "end_time": "2017-03-27T15:51:22.593Z", - "time_taken": 55.041, - "request": "3aae6f5c-5e82-4d8a-889e-f09e4fa009fa", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 530, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:51:22.598Z", - "end_time": "2017-03-27T15:51:22.600Z", - "time_taken": 2.006, - "request": "3aae6f5c-5e82-4d8a-889e-f09e4fa009fa", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 531, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:51:30.589990+00:00)", - "start_time": "2017-03-27T15:51:30.594Z", - "end_time": "2017-03-27T15:51:30.598Z", - "time_taken": 4.001, - "request": "e27c16aa-f1fc-415c-a11a-6f54f98999f2", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 532, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:51:30.604Z", - "end_time": "2017-03-27T15:51:30.607Z", - "time_taken": 3.002, - "request": "e27c16aa-f1fc-415c-a11a-6f54f98999f2", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 533, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:54:56.380079+00:00)", - "start_time": "2017-03-27T15:54:56.386Z", - "end_time": "2017-03-27T15:54:56.391Z", - "time_taken": 5.003, - "request": "30c60569-c182-44fa-bf5f-de1a6c56f4a1", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 534, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:54:56.396Z", - "end_time": "2017-03-27T15:54:56.399Z", - "time_taken": 3.002, - "request": "30c60569-c182-44fa-bf5f-de1a6c56f4a1", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 535, - "fields": { - "query": "SELECT \"core_vacancy\".\"id\", \"core_vacancy\".\"company_id\", \"core_vacancy\".\"verified\", \"core_vacancy\".\"open_time\", \"core_vacancy\".\"close_time\" FROM \"core_vacancy\"", - "start_time": "2017-03-27T15:54:56.440Z", - "end_time": "2017-03-27T15:54:56.443Z", - "time_taken": 3.002, - "request": "30c60569-c182-44fa-bf5f-de1a6c56f4a1", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 256, in __iter__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\serializers.py\", line 647, in to_representation\n self.child.to_representation(item) for item in iterable\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\serializers.py\", line 262, in data\n self._data = self.to_representation(self.instance)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\serializers.py\", line 729, in data\n ret = super(ListSerializer, self).data\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\mixins.py\", line 48, in list\n return Response(serializer.data)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 480, in dispatch\n response = handler(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 536, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:55:55.324768+00:00)", - "start_time": "2017-03-27T15:55:55.328Z", - "end_time": "2017-03-27T15:55:55.333Z", - "time_taken": 5.001, - "request": "79d47150-fcb7-4983-b1e1-625a17c96176", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 537, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:55:55.338Z", - "end_time": "2017-03-27T15:55:55.341Z", - "time_taken": 3.001, - "request": "79d47150-fcb7-4983-b1e1-625a17c96176", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 538, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:56:04.452860+00:00)", - "start_time": "2017-03-27T15:56:04.456Z", - "end_time": "2017-03-27T15:56:04.461Z", - "time_taken": 5.004, - "request": "58d82982-284d-458b-901f-bc175c938fe1", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 539, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:56:04.466Z", - "end_time": "2017-03-27T15:56:04.469Z", - "time_taken": 3.002, - "request": "58d82982-284d-458b-901f-bc175c938fe1", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 540, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:56:11.568607+00:00)", - "start_time": "2017-03-27T15:56:11.573Z", - "end_time": "2017-03-27T15:56:11.578Z", - "time_taken": 5.003, - "request": "9d4b6c59-10b5-438e-b5b3-311a820f2847", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 541, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:56:11.582Z", - "end_time": "2017-03-27T15:56:11.586Z", - "time_taken": 4.002, - "request": "9d4b6c59-10b5-438e-b5b3-311a820f2847", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 542, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:56:56.064302+00:00)", - "start_time": "2017-03-27T15:56:56.070Z", - "end_time": "2017-03-27T15:56:56.074Z", - "time_taken": 4.002, - "request": "7b3ebad1-d3d1-44dd-b049-5e7f84cee73f", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 543, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:56:56.079Z", - "end_time": "2017-03-27T15:56:56.082Z", - "time_taken": 3.003, - "request": "7b3ebad1-d3d1-44dd-b049-5e7f84cee73f", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 544, - "fields": { - "query": "SELECT \"django_admin_log\".\"id\", \"django_admin_log\".\"action_time\", \"django_admin_log\".\"user_id\", \"django_admin_log\".\"content_type_id\", \"django_admin_log\".\"object_id\", \"django_admin_log\".\"object_repr\", \"django_admin_log\".\"action_flag\", \"django_admin_log\".\"change_message\", \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\", \"django_content_type\".\"id\", \"django_content_type\".\"app_label\", \"django_content_type\".\"model\" FROM \"django_admin_log\" INNER JOIN \"auth_user\" ON (\"django_admin_log\".\"user_id\" = \"auth_user\".\"id\") LEFT OUTER JOIN \"django_content_type\" ON (\"django_admin_log\".\"content_type_id\" = \"django_content_type\".\"id\") WHERE \"django_admin_log\".\"user_id\" = 1 ORDER BY \"django_admin_log\".\"action_time\" DESC LIMIT 10", - "start_time": "2017-03-27T15:56:56.180Z", - "end_time": "2017-03-27T15:56:56.187Z", - "time_taken": 7.006, - "request": "7b3ebad1-d3d1-44dd-b049-5e7f84cee73f", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 260, in __bool__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\smartif.py\", line 96, in <lambda>\n 'not': prefix(8, lambda context, x: not x.eval(context)),\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\smartif.py\", line 83, in eval\n return func(context, self.first)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 308, in render\n match = condition.eval(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 545, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:56:57.863502+00:00)", - "start_time": "2017-03-27T15:56:57.868Z", - "end_time": "2017-03-27T15:56:57.873Z", - "time_taken": 5.004, - "request": "b4fd231c-1a2c-462a-a913-40ea6dc5b632", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 546, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:56:57.879Z", - "end_time": "2017-03-27T15:56:57.882Z", - "time_taken": 3.002, - "request": "b4fd231c-1a2c-462a-a913-40ea6dc5b632", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 547, - "fields": { - "query": "SELECT \"auth_group\".\"id\", \"auth_group\".\"name\" FROM \"auth_group\"", - "start_time": "2017-03-27T15:56:58.015Z", - "end_time": "2017-03-27T15:56:58.018Z", - "time_taken": 3.001, - "request": "b4fd231c-1a2c-462a-a913-40ea6dc5b632", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 256, in __iter__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\fields\\__init__.py\", line 797, in get_choices\n limit_choices_to)]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\filters.py\", line 197, in field_choices\n return field.get_choices(include_blank=False)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\filters.py\", line 170, in __init__\n self.lookup_choices = self.field_choices(field, request, model_admin)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\filters.py\", line 158, in create\n return list_filter_class(field, request, params, model, model_admin, field_path=field_path)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 130, in get_filters\n self.model, self.model_admin, field_path=field_path\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 312, in get_queryset\n filters_use_distinct) = self.get_filters(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 78, in __init__\n self.queryset = self.get_queryset(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 548, - "fields": { - "query": "SELECT COUNT(*) FROM (SELECT DISTINCT \"auth_user\".\"id\" AS Col1, \"auth_user\".\"password\" AS Col2, \"auth_user\".\"last_login\" AS Col3, \"auth_user\".\"is_superuser\" AS Col4, \"auth_user\".\"username\" AS Col5, \"auth_user\".\"first_name\" AS Col6, \"auth_user\".\"last_name\" AS Col7, \"auth_user\".\"email\" AS Col8, \"auth_user\".\"is_staff\" AS Col9, \"auth_user\".\"is_active\" AS Col10, \"auth_user\".\"date_joined\" AS Col11 FROM \"auth_user\") subquery", - "start_time": "2017-03-27T15:56:58.026Z", - "end_time": "2017-03-27T15:56:58.030Z", - "time_taken": 4.003, - "request": "b4fd231c-1a2c-462a-a913-40ea6dc5b632", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 457, in get_aggregation\n result = compiler.execute_sql(SINGLE)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 476, in get_count\n number = obj.get_aggregation(using, ['__count'])['__count']\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 369, in count\n return self.query.get_count(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\paginator.py\", line 72, in count\n return self.object_list.count()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 35, in __get__\n res = instance.__dict__[self.name] = self.func(instance)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 172, in get_results\n result_count = paginator.count\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 79, in __init__\n self.get_results(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 549, - "fields": { - "query": "SELECT COUNT(*) AS \"__count\" FROM \"auth_user\"", - "start_time": "2017-03-27T15:56:58.033Z", - "end_time": "2017-03-27T15:56:58.034Z", - "time_taken": 1.002, - "request": "b4fd231c-1a2c-462a-a913-40ea6dc5b632", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 457, in get_aggregation\n result = compiler.execute_sql(SINGLE)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 476, in get_count\n number = obj.get_aggregation(using, ['__count'])['__count']\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 369, in count\n return self.query.get_count(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 176, in get_results\n full_result_count = self.root_queryset.count()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 79, in __init__\n self.get_results(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 550, - "fields": { - "query": "SELECT DISTINCT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" ORDER BY \"auth_user\".\"username\" ASC, \"auth_user\".\"id\" DESC", - "start_time": "2017-03-27T15:56:58.043Z", - "end_time": "2017-03-27T15:56:58.045Z", - "time_taken": 1.998, - "request": "b4fd231c-1a2c-462a-a913-40ea6dc5b632", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1657, in changelist_view\n selection_note=_('0 of %(cnt)s selected') % {'cnt': len(cl.result_list)},\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 551, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:56:58.397858+00:00)", - "start_time": "2017-03-27T15:56:58.401Z", - "end_time": "2017-03-27T15:56:58.406Z", - "time_taken": 5.003, - "request": "7d20935f-acdd-4a92-9be8-35742c726043", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 552, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:56:58.410Z", - "end_time": "2017-03-27T15:56:58.413Z", - "time_taken": 3.003, - "request": "7d20935f-acdd-4a92-9be8-35742c726043", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 553, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:57:04.615008+00:00)", - "start_time": "2017-03-27T15:57:04.619Z", - "end_time": "2017-03-27T15:57:04.623Z", - "time_taken": 4.003, - "request": "23ad71c9-fe4e-4ef3-bd2f-d1b14f138f29", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 554, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:57:04.627Z", - "end_time": "2017-03-27T15:57:04.631Z", - "time_taken": 4.002, - "request": "23ad71c9-fe4e-4ef3-bd2f-d1b14f138f29", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 555, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 2", - "start_time": "2017-03-27T15:57:04.635Z", - "end_time": "2017-03-27T15:57:04.637Z", - "time_taken": 2.001, - "request": "23ad71c9-fe4e-4ef3-bd2f-d1b14f138f29", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 667, in get_object\n return queryset.get(**{field.name: object_id})\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1429, in changeform_view\n obj = self.get_object(request, unquote(object_id), to_field)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1512, in change_view\n return self.changeform_view(request, object_id, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 556, - "fields": { - "query": "SELECT \"django_content_type\".\"id\", \"django_content_type\".\"app_label\", \"django_content_type\".\"model\" FROM \"django_content_type\" WHERE (\"django_content_type\".\"app_label\" = auth AND \"django_content_type\".\"model\" = user)", - "start_time": "2017-03-27T15:57:04.660Z", - "end_time": "2017-03-27T15:57:04.664Z", - "time_taken": 4.003, - "request": "23ad71c9-fe4e-4ef3-bd2f-d1b14f138f29", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\contenttypes\\models.py\", line 52, in get_for_model\n ct = self.get(app_label=opts.app_label, model=opts.model_name)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 64, in get_content_type_for_model\n return ContentType.objects.get_for_model(obj, for_concrete_model=False)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1050, in render_change_form\n 'content_type_id': get_content_type_for_model(self.model).pk,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1506, in changeform_view\n return self.render_change_form(request, context, add=add, change=not add, obj=obj, form_url=form_url)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1512, in change_view\n return self.changeform_view(request, object_id, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 557, - "fields": { - "query": "SELECT \"auth_group\".\"id\", \"auth_group\".\"name\" FROM \"auth_group\" INNER JOIN \"auth_user_groups\" ON (\"auth_group\".\"id\" = \"auth_user_groups\".\"group_id\") WHERE \"auth_user_groups\".\"user_id\" = 2", - "start_time": "2017-03-27T15:57:04.758Z", - "end_time": "2017-03-27T15:57:04.763Z", - "time_taken": 5.004, - "request": "23ad71c9-fe4e-4ef3-bd2f-d1b14f138f29", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 256, in __iter__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1312, in prepare_value\n return [super(ModelMultipleChoiceField, self).prepare_value(v) for v in value]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 137, in value\n return self.field.prepare_value(data)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 101, in as_widget\n return force_text(widget.render(name, self.value(), attrs=attrs))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 43, in __str__\n return self.as_widget()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\html.py\", line 391, in <lambda>\n klass.__str__ = lambda self: mark_safe(klass_str(self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\encoding.py\", line 76, in force_text\n s = six.text_type(s)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1028, in render_value_in_context\n value = force_text(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1050, in render\n return render_value_in_context(output, context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 210, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 210, in render\n return template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 558, - "fields": { - "query": "SELECT \"auth_group\".\"id\", \"auth_group\".\"name\" FROM \"auth_group\" ORDER BY \"auth_group\".\"name\" ASC", - "start_time": "2017-03-27T15:57:04.771Z", - "end_time": "2017-03-27T15:57:04.772Z", - "time_taken": 1.0, - "request": "23ad71c9-fe4e-4ef3-bd2f-d1b14f138f29", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1118, in __iter__\n for obj in queryset:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 567, in render_options\n for option_value, option_label in self.choices:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 617, in render\n options = self.render_options(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\widgets.py\", line 49, in render\n output = super(FilteredSelectMultiple, self).render(name, value, attrs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\widgets.py\", line 307, in render\n 'widget': self.widget.render(name, value, *args, **kwargs),\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 101, in as_widget\n return force_text(widget.render(name, self.value(), attrs=attrs))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 43, in __str__\n return self.as_widget()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\html.py\", line 391, in <lambda>\n klass.__str__ = lambda self: mark_safe(klass_str(self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\encoding.py\", line 76, in force_text\n s = six.text_type(s)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1028, in render_value_in_context\n value = force_text(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1050, in render\n return render_value_in_context(output, context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 210, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 210, in render\n return template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 559, - "fields": { - "query": "SELECT \"auth_permission\".\"id\", \"auth_permission\".\"name\", \"auth_permission\".\"content_type_id\", \"auth_permission\".\"codename\" FROM \"auth_permission\" INNER JOIN \"auth_user_user_permissions\" ON (\"auth_permission\".\"id\" = \"auth_user_user_permissions\".\"permission_id\") INNER JOIN \"django_content_type\" ON (\"auth_permission\".\"content_type_id\" = \"django_content_type\".\"id\") WHERE \"auth_user_user_permissions\".\"user_id\" = 2 ORDER BY \"django_content_type\".\"app_label\" ASC, \"django_content_type\".\"model\" ASC, \"auth_permission\".\"codename\" ASC", - "start_time": "2017-03-27T15:57:04.785Z", - "end_time": "2017-03-27T15:57:04.791Z", - "time_taken": 6.005, - "request": "23ad71c9-fe4e-4ef3-bd2f-d1b14f138f29", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 256, in __iter__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1312, in prepare_value\n return [super(ModelMultipleChoiceField, self).prepare_value(v) for v in value]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 137, in value\n return self.field.prepare_value(data)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 101, in as_widget\n return force_text(widget.render(name, self.value(), attrs=attrs))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 43, in __str__\n return self.as_widget()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\html.py\", line 391, in <lambda>\n klass.__str__ = lambda self: mark_safe(klass_str(self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\encoding.py\", line 76, in force_text\n s = six.text_type(s)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1028, in render_value_in_context\n value = force_text(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1050, in render\n return render_value_in_context(output, context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 210, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 210, in render\n return template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 560, - "fields": { - "query": "SELECT \"auth_permission\".\"id\", \"auth_permission\".\"name\", \"auth_permission\".\"content_type_id\", \"auth_permission\".\"codename\", \"django_content_type\".\"id\", \"django_content_type\".\"app_label\", \"django_content_type\".\"model\" FROM \"auth_permission\" INNER JOIN \"django_content_type\" ON (\"auth_permission\".\"content_type_id\" = \"django_content_type\".\"id\") ORDER BY \"django_content_type\".\"app_label\" ASC, \"django_content_type\".\"model\" ASC, \"auth_permission\".\"codename\" ASC", - "start_time": "2017-03-27T15:57:04.798Z", - "end_time": "2017-03-27T15:57:04.800Z", - "time_taken": 2.001, - "request": "23ad71c9-fe4e-4ef3-bd2f-d1b14f138f29", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1118, in __iter__\n for obj in queryset:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 567, in render_options\n for option_value, option_label in self.choices:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 617, in render\n options = self.render_options(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\widgets.py\", line 49, in render\n output = super(FilteredSelectMultiple, self).render(name, value, attrs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\widgets.py\", line 307, in render\n 'widget': self.widget.render(name, value, *args, **kwargs),\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 101, in as_widget\n return force_text(widget.render(name, self.value(), attrs=attrs))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 43, in __str__\n return self.as_widget()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\html.py\", line 391, in <lambda>\n klass.__str__ = lambda self: mark_safe(klass_str(self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\encoding.py\", line 76, in force_text\n s = six.text_type(s)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1028, in render_value_in_context\n value = force_text(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1050, in render\n return render_value_in_context(output, context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 210, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 210, in render\n return template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 561, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:57:05.094328+00:00)", - "start_time": "2017-03-27T15:57:05.098Z", - "end_time": "2017-03-27T15:57:05.102Z", - "time_taken": 4.004, - "request": "e3443f04-9b4d-4f5a-b692-99eab466a719", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 562, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:57:05.107Z", - "end_time": "2017-03-27T15:57:05.111Z", - "time_taken": 4.003, - "request": "e3443f04-9b4d-4f5a-b692-99eab466a719", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 563, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:57:07.945231+00:00)", - "start_time": "2017-03-27T15:57:07.949Z", - "end_time": "2017-03-27T15:57:07.955Z", - "time_taken": 6.005, - "request": "d5b75f8e-9cd5-46cf-81c4-d795bc8c2857", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 564, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:57:07.959Z", - "end_time": "2017-03-27T15:57:07.962Z", - "time_taken": 3.002, - "request": "d5b75f8e-9cd5-46cf-81c4-d795bc8c2857", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 565, - "fields": { - "query": "SELECT \"auth_group\".\"id\", \"auth_group\".\"name\" FROM \"auth_group\"", - "start_time": "2017-03-27T15:57:07.968Z", - "end_time": "2017-03-27T15:57:07.971Z", - "time_taken": 3.001, - "request": "d5b75f8e-9cd5-46cf-81c4-d795bc8c2857", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 256, in __iter__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\fields\\__init__.py\", line 797, in get_choices\n limit_choices_to)]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\filters.py\", line 197, in field_choices\n return field.get_choices(include_blank=False)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\filters.py\", line 170, in __init__\n self.lookup_choices = self.field_choices(field, request, model_admin)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\filters.py\", line 158, in create\n return list_filter_class(field, request, params, model, model_admin, field_path=field_path)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 130, in get_filters\n self.model, self.model_admin, field_path=field_path\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 312, in get_queryset\n filters_use_distinct) = self.get_filters(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 78, in __init__\n self.queryset = self.get_queryset(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 566, - "fields": { - "query": "SELECT COUNT(*) FROM (SELECT DISTINCT \"auth_user\".\"id\" AS Col1, \"auth_user\".\"password\" AS Col2, \"auth_user\".\"last_login\" AS Col3, \"auth_user\".\"is_superuser\" AS Col4, \"auth_user\".\"username\" AS Col5, \"auth_user\".\"first_name\" AS Col6, \"auth_user\".\"last_name\" AS Col7, \"auth_user\".\"email\" AS Col8, \"auth_user\".\"is_staff\" AS Col9, \"auth_user\".\"is_active\" AS Col10, \"auth_user\".\"date_joined\" AS Col11 FROM \"auth_user\") subquery", - "start_time": "2017-03-27T15:57:07.978Z", - "end_time": "2017-03-27T15:57:07.981Z", - "time_taken": 3.002, - "request": "d5b75f8e-9cd5-46cf-81c4-d795bc8c2857", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 457, in get_aggregation\n result = compiler.execute_sql(SINGLE)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 476, in get_count\n number = obj.get_aggregation(using, ['__count'])['__count']\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 369, in count\n return self.query.get_count(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\paginator.py\", line 72, in count\n return self.object_list.count()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 35, in __get__\n res = instance.__dict__[self.name] = self.func(instance)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 172, in get_results\n result_count = paginator.count\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 79, in __init__\n self.get_results(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 567, - "fields": { - "query": "SELECT COUNT(*) AS \"__count\" FROM \"auth_user\"", - "start_time": "2017-03-27T15:57:07.984Z", - "end_time": "2017-03-27T15:57:07.985Z", - "time_taken": 1.001, - "request": "d5b75f8e-9cd5-46cf-81c4-d795bc8c2857", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 457, in get_aggregation\n result = compiler.execute_sql(SINGLE)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 476, in get_count\n number = obj.get_aggregation(using, ['__count'])['__count']\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 369, in count\n return self.query.get_count(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 176, in get_results\n full_result_count = self.root_queryset.count()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 79, in __init__\n self.get_results(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 568, - "fields": { - "query": "SELECT DISTINCT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" ORDER BY \"auth_user\".\"username\" ASC, \"auth_user\".\"id\" DESC", - "start_time": "2017-03-27T15:57:07.997Z", - "end_time": "2017-03-27T15:57:07.999Z", - "time_taken": 2.002, - "request": "d5b75f8e-9cd5-46cf-81c4-d795bc8c2857", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1657, in changelist_view\n selection_note=_('0 of %(cnt)s selected') % {'cnt': len(cl.result_list)},\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 569, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:57:22.190737+00:00)", - "start_time": "2017-03-27T15:57:22.195Z", - "end_time": "2017-03-27T15:57:22.200Z", - "time_taken": 5.004, - "request": "66beefa4-17a6-4c0c-88f8-25a1f34be9ef", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 570, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:57:22.205Z", - "end_time": "2017-03-27T15:57:22.208Z", - "time_taken": 3.003, - "request": "66beefa4-17a6-4c0c-88f8-25a1f34be9ef", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 571, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:57:23.417556+00:00)", - "start_time": "2017-03-27T15:57:23.422Z", - "end_time": "2017-03-27T15:57:23.427Z", - "time_taken": 5.004, - "request": "2f6a6a58-a81d-44ab-9a2f-8c84216e88c4", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 572, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:57:23.431Z", - "end_time": "2017-03-27T15:57:23.435Z", - "time_taken": 4.004, - "request": "2f6a6a58-a81d-44ab-9a2f-8c84216e88c4", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 573, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:57:24.570325+00:00)", - "start_time": "2017-03-27T15:57:24.574Z", - "end_time": "2017-03-27T15:57:24.578Z", - "time_taken": 4.004, - "request": "0120934f-1641-482e-847c-cd687ddd8da6", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 574, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:57:24.583Z", - "end_time": "2017-03-27T15:57:24.586Z", - "time_taken": 3.001, - "request": "0120934f-1641-482e-847c-cd687ddd8da6", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 575, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 15:57:47.336519+00:00)", - "start_time": "2017-03-27T15:57:47.340Z", - "end_time": "2017-03-27T15:57:47.345Z", - "time_taken": 5.005, - "request": "51cae9ae-4ec3-4855-a89d-f4c888f9df04", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 576, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T15:57:47.350Z", - "end_time": "2017-03-27T15:57:47.353Z", - "time_taken": 3.002, - "request": "51cae9ae-4ec3-4855-a89d-f4c888f9df04", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 577, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 16:02:53.783430+00:00)", - "start_time": "2017-03-27T16:02:53.789Z", - "end_time": "2017-03-27T16:02:53.794Z", - "time_taken": 5.005, - "request": "466a4c19-dd4a-415d-a626-212aba832f53", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 578, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T16:02:53.800Z", - "end_time": "2017-03-27T16:02:53.913Z", - "time_taken": 113.076, - "request": "466a4c19-dd4a-415d-a626-212aba832f53", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 579, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 16:05:33.859086+00:00)", - "start_time": "2017-03-27T16:05:33.879Z", - "end_time": "2017-03-27T16:05:33.883Z", - "time_taken": 4.005, - "request": "8dad4955-18ef-463a-815c-a0059292fa25", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 580, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T16:05:33.888Z", - "end_time": "2017-03-27T16:05:33.891Z", - "time_taken": 3.001, - "request": "8dad4955-18ef-463a-815c-a0059292fa25", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 581, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 16:07:03.877160+00:00)", - "start_time": "2017-03-27T16:07:03.896Z", - "end_time": "2017-03-27T16:07:03.900Z", - "time_taken": 4.001, - "request": "349879b1-680a-43cc-9144-4332ff78f9ac", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 582, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T16:07:03.906Z", - "end_time": "2017-03-27T16:07:03.910Z", - "time_taken": 4.002, - "request": "349879b1-680a-43cc-9144-4332ff78f9ac", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 583, - "fields": { - "query": "SELECT \"core_vacancy\".\"id\", \"core_vacancy\".\"company_id\", \"core_vacancy\".\"verified\", \"core_vacancy\".\"open_time\", \"core_vacancy\".\"close_time\" FROM \"core_vacancy\" WHERE \"core_vacancy\".\"id\" = 1", - "start_time": "2017-03-27T16:07:03.920Z", - "end_time": "2017-03-27T16:07:03.923Z", - "time_taken": 3.003, - "request": "349879b1-680a-43cc-9144-4332ff78f9ac", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\shortcuts.py\", line 85, in get_object_or_404\n return queryset.get(*args, **kwargs)\n File \"D:\\PPLA\\core\\views\\accounts.py\", line 32, in bookmark_vacancies\n vacancy = get_object_or_404(Vacancy.objects.all(), pk=request.data['vacancy_id'])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 480, in dispatch\n response = handler(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 584, - "fields": { - "query": "SELECT \"core_student\".\"id\", \"core_student\".\"created\", \"core_student\".\"updated\", \"core_student\".\"user_id\", \"core_student\".\"npm\", \"core_student\".\"resume\", \"core_student\".\"phone_number\" FROM \"core_student\" WHERE \"core_student\".\"user_id\" = 1", - "start_time": "2017-03-27T16:07:03.929Z", - "end_time": "2017-03-27T16:07:03.934Z", - "time_taken": 5.004, - "request": "349879b1-680a-43cc-9144-4332ff78f9ac", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\fields\\related_descriptors.py\", line 356, in __get__\n rel_obj = self.get_queryset(instance=instance).get(**filter_args)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 235, in inner\n return func(self._wrapped, *args)\n File \"D:\\PPLA\\core\\views\\accounts.py\", line 33, in bookmark_vacancies\n student = self.request.user.student\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 480, in dispatch\n response = handler(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 585, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 16:44:20.320119+00:00)", - "start_time": "2017-03-27T16:44:21.610Z", - "end_time": "2017-03-27T16:44:21.804Z", - "time_taken": 193.129, - "request": "82b41e4c-903f-4c68-bc6c-1e3aba8f4dd0", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 586, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T16:44:21.856Z", - "end_time": "2017-03-27T16:44:22.003Z", - "time_taken": 147.099, - "request": "82b41e4c-903f-4c68-bc6c-1e3aba8f4dd0", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 587, - "fields": { - "query": "SELECT \"core_vacancy\".\"id\", \"core_vacancy\".\"company_id\", \"core_vacancy\".\"verified\", \"core_vacancy\".\"open_time\", \"core_vacancy\".\"close_time\" FROM \"core_vacancy\" WHERE \"core_vacancy\".\"id\" = 1", - "start_time": "2017-03-27T16:44:22.030Z", - "end_time": "2017-03-27T16:44:22.156Z", - "time_taken": 126.084, - "request": "82b41e4c-903f-4c68-bc6c-1e3aba8f4dd0", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\shortcuts.py\", line 85, in get_object_or_404\n return queryset.get(*args, **kwargs)\n File \"D:\\PPLA\\core\\views\\accounts.py\", line 32, in bookmark_vacancies\n vacancy = get_object_or_404(Vacancy.objects.all(), pk=request.data['vacancy_id'])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 480, in dispatch\n response = handler(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 588, - "fields": { - "query": "SELECT \"core_student\".\"id\", \"core_student\".\"created\", \"core_student\".\"updated\", \"core_student\".\"user_id\", \"core_student\".\"npm\", \"core_student\".\"resume\", \"core_student\".\"phone_number\" FROM \"core_student\" WHERE \"core_student\".\"id\" = 4", - "start_time": "2017-03-27T16:44:22.161Z", - "end_time": "2017-03-27T16:44:22.427Z", - "time_taken": 266.178, - "request": "82b41e4c-903f-4c68-bc6c-1e3aba8f4dd0", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\shortcuts.py\", line 85, in get_object_or_404\n return queryset.get(*args, **kwargs)\n File \"D:\\PPLA\\core\\views\\accounts.py\", line 33, in bookmark_vacancies\n student = get_object_or_404(Student.objects.all(), pk=pk)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 480, in dispatch\n response = handler(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 589, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 16:45:45.155734+00:00)", - "start_time": "2017-03-27T16:45:45.172Z", - "end_time": "2017-03-27T16:45:45.272Z", - "time_taken": 100.067, - "request": "aea8884f-0c9d-41bc-9b5d-d38c0f603ff6", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 590, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T16:45:45.278Z", - "end_time": "2017-03-27T16:45:45.372Z", - "time_taken": 94.065, - "request": "aea8884f-0c9d-41bc-9b5d-d38c0f603ff6", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 591, - "fields": { - "query": "SELECT \"core_vacancy\".\"id\", \"core_vacancy\".\"company_id\", \"core_vacancy\".\"verified\", \"core_vacancy\".\"open_time\", \"core_vacancy\".\"close_time\" FROM \"core_vacancy\" WHERE \"core_vacancy\".\"id\" = 1", - "start_time": "2017-03-27T16:45:45.379Z", - "end_time": "2017-03-27T16:45:45.443Z", - "time_taken": 64.043, - "request": "aea8884f-0c9d-41bc-9b5d-d38c0f603ff6", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\shortcuts.py\", line 85, in get_object_or_404\n return queryset.get(*args, **kwargs)\n File \"D:\\PPLA\\core\\views\\accounts.py\", line 33, in bookmark_vacancies\n vacancy = get_object_or_404(Vacancy.objects.all(), pk=request.data['vacancy_id'])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 480, in dispatch\n response = handler(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 592, - "fields": { - "query": "SELECT \"core_student\".\"id\", \"core_student\".\"created\", \"core_student\".\"updated\", \"core_student\".\"user_id\", \"core_student\".\"npm\", \"core_student\".\"resume\", \"core_student\".\"phone_number\" FROM \"core_student\" WHERE \"core_student\".\"id\" = 4", - "start_time": "2017-03-27T16:45:45.447Z", - "end_time": "2017-03-27T16:45:45.654Z", - "time_taken": 206.136, - "request": "aea8884f-0c9d-41bc-9b5d-d38c0f603ff6", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\shortcuts.py\", line 85, in get_object_or_404\n return queryset.get(*args, **kwargs)\n File \"D:\\PPLA\\core\\views\\accounts.py\", line 34, in bookmark_vacancies\n student = get_object_or_404(Student.objects.all(), pk=pk)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 480, in dispatch\n response = handler(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 593, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 16:50:05.945689+00:00)", - "start_time": "2017-03-27T16:50:06.455Z", - "end_time": "2017-03-27T16:50:06.659Z", - "time_taken": 204.136, - "request": "471a4afb-bc3c-4eba-8397-a7f47c5ffe1a", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 594, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T16:50:06.702Z", - "end_time": "2017-03-27T16:50:06.850Z", - "time_taken": 148.097, - "request": "471a4afb-bc3c-4eba-8397-a7f47c5ffe1a", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 595, - "fields": { - "query": "SELECT \"core_vacancy\".\"id\", \"core_vacancy\".\"company_id\", \"core_vacancy\".\"verified\", \"core_vacancy\".\"open_time\", \"core_vacancy\".\"close_time\" FROM \"core_vacancy\" WHERE \"core_vacancy\".\"id\" = 1", - "start_time": "2017-03-27T16:50:06.877Z", - "end_time": "2017-03-27T16:50:06.946Z", - "time_taken": 69.048, - "request": "471a4afb-bc3c-4eba-8397-a7f47c5ffe1a", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\shortcuts.py\", line 85, in get_object_or_404\n return queryset.get(*args, **kwargs)\n File \"D:\\PPLA\\core\\views\\accounts.py\", line 32, in bookmark_vacancies\n vacancy = get_object_or_404(Vacancy.objects.all(), pk=request.data['vacancy_id'])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 480, in dispatch\n response = handler(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 596, - "fields": { - "query": "SELECT \"core_student\".\"id\", \"core_student\".\"created\", \"core_student\".\"updated\", \"core_student\".\"user_id\", \"core_student\".\"npm\", \"core_student\".\"resume\", \"core_student\".\"phone_number\" FROM \"core_student\" WHERE \"core_student\".\"id\" = 4", - "start_time": "2017-03-27T16:50:06.950Z", - "end_time": "2017-03-27T16:50:07.147Z", - "time_taken": 197.132, - "request": "471a4afb-bc3c-4eba-8397-a7f47c5ffe1a", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\shortcuts.py\", line 85, in get_object_or_404\n return queryset.get(*args, **kwargs)\n File \"D:\\PPLA\\core\\views\\accounts.py\", line 33, in bookmark_vacancies\n student = get_object_or_404(Student.objects.all(), pk=pk)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 480, in dispatch\n response = handler(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 597, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 17:05:51.439651+00:00)", - "start_time": "2017-03-27T17:05:51.475Z", - "end_time": "2017-03-27T17:05:51.480Z", - "time_taken": 5.004, - "request": "0d7008ed-80fb-4feb-bfec-792036874586", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\generic\\base.py\", line 68, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 598, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T17:05:51.485Z", - "end_time": "2017-03-27T17:05:51.489Z", - "time_taken": 4.003, - "request": "0d7008ed-80fb-4feb-bfec-792036874586", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\generic\\base.py\", line 68, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 599, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 17:06:14.327926+00:00)", - "start_time": "2017-03-27T17:06:14.331Z", - "end_time": "2017-03-27T17:06:14.336Z", - "time_taken": 5.004, - "request": "0def295b-e788-4b3e-8214-266149ffd157", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\generic\\base.py\", line 68, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 600, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 16:54:00.723034+00:00)", - "start_time": "2017-03-27T16:54:00.727Z", - "end_time": "2017-03-27T16:54:00.732Z", - "time_taken": 5.005, - "request": "67cc51e5-4297-4765-afe5-b2b5f8676eec", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 601, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 16:53:48.614954+00:00)", - "start_time": "2017-03-27T16:53:48.619Z", - "end_time": "2017-03-27T16:53:48.649Z", - "time_taken": 30.025, - "request": "5f0019ff-44b1-4877-8094-c2b99c0865e4", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 602, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 16:52:34.704630+00:00)", - "start_time": "2017-03-27T16:52:34.725Z", - "end_time": "2017-03-27T16:52:34.832Z", - "time_taken": 107.072, - "request": "5a24c8ef-12a7-4dab-b868-f831afee6008", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 603, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T16:54:00.737Z", - "end_time": "2017-03-27T16:54:00.740Z", - "time_taken": 3.002, - "request": "67cc51e5-4297-4765-afe5-b2b5f8676eec", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 604, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T16:53:48.655Z", - "end_time": "2017-03-27T16:53:48.658Z", - "time_taken": 3.002, - "request": "5f0019ff-44b1-4877-8094-c2b99c0865e4", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 605, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T16:52:34.837Z", - "end_time": "2017-03-27T16:52:34.924Z", - "time_taken": 87.059, - "request": "5a24c8ef-12a7-4dab-b868-f831afee6008", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 606, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 16:53:04.397446+00:00)", - "start_time": "2017-03-27T16:53:04.401Z", - "end_time": "2017-03-27T16:53:04.405Z", - "time_taken": 4.002, - "request": "716e9363-de18-483f-b824-7a5cdc4bfc05", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 607, - "fields": { - "query": "SELECT \"core_vacancy\".\"id\", \"core_vacancy\".\"company_id\", \"core_vacancy\".\"verified\", \"core_vacancy\".\"open_time\", \"core_vacancy\".\"close_time\" FROM \"core_vacancy\" WHERE \"core_vacancy\".\"id\" = 1", - "start_time": "2017-03-27T16:53:48.663Z", - "end_time": "2017-03-27T16:53:48.666Z", - "time_taken": 3.002, - "request": "5f0019ff-44b1-4877-8094-c2b99c0865e4", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\shortcuts.py\", line 85, in get_object_or_404\n return queryset.get(*args, **kwargs)\n File \"D:\\PPLA\\core\\views\\accounts.py\", line 32, in bookmark_vacancies\n vacancy = get_object_or_404(Vacancy.objects.all(), pk=request.data['vacancy_id'])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 480, in dispatch\n response = handler(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 608, - "fields": { - "query": "SELECT \"core_vacancy\".\"id\", \"core_vacancy\".\"company_id\", \"core_vacancy\".\"verified\", \"core_vacancy\".\"open_time\", \"core_vacancy\".\"close_time\" FROM \"core_vacancy\" WHERE \"core_vacancy\".\"id\" = 1", - "start_time": "2017-03-27T16:54:00.747Z", - "end_time": "2017-03-27T16:54:00.749Z", - "time_taken": 2.002, - "request": "67cc51e5-4297-4765-afe5-b2b5f8676eec", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\shortcuts.py\", line 85, in get_object_or_404\n return queryset.get(*args, **kwargs)\n File \"D:\\PPLA\\core\\views\\accounts.py\", line 32, in bookmark_vacancies\n vacancy = get_object_or_404(Vacancy.objects.all(), pk=request.data['vacancy_id'])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 480, in dispatch\n response = handler(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 609, - "fields": { - "query": "SELECT \"core_vacancy\".\"id\", \"core_vacancy\".\"company_id\", \"core_vacancy\".\"verified\", \"core_vacancy\".\"open_time\", \"core_vacancy\".\"close_time\" FROM \"core_vacancy\" WHERE \"core_vacancy\".\"id\" = 1", - "start_time": "2017-03-27T16:52:34.932Z", - "end_time": "2017-03-27T16:52:35.022Z", - "time_taken": 90.06, - "request": "5a24c8ef-12a7-4dab-b868-f831afee6008", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\shortcuts.py\", line 85, in get_object_or_404\n return queryset.get(*args, **kwargs)\n File \"D:\\PPLA\\core\\views\\accounts.py\", line 32, in bookmark_vacancies\n vacancy = get_object_or_404(Vacancy.objects.all(), pk=request.data['vacancy_id'])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 480, in dispatch\n response = handler(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 610, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T17:06:14.341Z", - "end_time": "2017-03-27T17:06:14.344Z", - "time_taken": 3.003, - "request": "0def295b-e788-4b3e-8214-266149ffd157", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\generic\\base.py\", line 68, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 611, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T16:53:04.410Z", - "end_time": "2017-03-27T16:53:04.413Z", - "time_taken": 3.001, - "request": "716e9363-de18-483f-b824-7a5cdc4bfc05", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 612, - "fields": { - "query": "SELECT \"core_student\".\"id\", \"core_student\".\"created\", \"core_student\".\"updated\", \"core_student\".\"user_id\", \"core_student\".\"npm\", \"core_student\".\"resume\", \"core_student\".\"phone_number\" FROM \"core_student\" WHERE \"core_student\".\"id\" = 4", - "start_time": "2017-03-27T17:06:13.965Z", - "end_time": "2017-03-27T17:06:14.441Z", - "time_taken": 475.317, - "request": "5a24c8ef-12a7-4dab-b868-f831afee6008", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\shortcuts.py\", line 85, in get_object_or_404\n return queryset.get(*args, **kwargs)\n File \"D:\\PPLA\\core\\views\\accounts.py\", line 34, in bookmark_vacancies\n student = get_object_or_404(Student.objects.all(), pk=pk)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 480, in dispatch\n response = handler(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 613, - "fields": { - "query": "SELECT \"core_student\".\"id\", \"core_student\".\"created\", \"core_student\".\"updated\", \"core_student\".\"user_id\", \"core_student\".\"npm\", \"core_student\".\"resume\", \"core_student\".\"phone_number\" FROM \"core_student\" WHERE \"core_student\".\"id\" = 4", - "start_time": "2017-03-27T17:06:13.977Z", - "end_time": "2017-03-27T17:06:14.432Z", - "time_taken": 455.304, - "request": "67cc51e5-4297-4765-afe5-b2b5f8676eec", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\shortcuts.py\", line 85, in get_object_or_404\n return queryset.get(*args, **kwargs)\n File \"D:\\PPLA\\core\\views\\accounts.py\", line 34, in bookmark_vacancies\n student = get_object_or_404(Student.objects.all(), pk=pk)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 480, in dispatch\n response = handler(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 614, - "fields": { - "query": "SELECT \"core_student\".\"id\", \"core_student\".\"created\", \"core_student\".\"updated\", \"core_student\".\"user_id\", \"core_student\".\"npm\", \"core_student\".\"resume\", \"core_student\".\"phone_number\" FROM \"core_student\" WHERE \"core_student\".\"id\" = 4", - "start_time": "2017-03-27T17:06:13.982Z", - "end_time": "2017-03-27T17:06:14.436Z", - "time_taken": 454.302, - "request": "5f0019ff-44b1-4877-8094-c2b99c0865e4", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\shortcuts.py\", line 85, in get_object_or_404\n return queryset.get(*args, **kwargs)\n File \"D:\\PPLA\\core\\views\\accounts.py\", line 34, in bookmark_vacancies\n student = get_object_or_404(Student.objects.all(), pk=pk)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 480, in dispatch\n response = handler(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 615, - "fields": { - "query": "SELECT \"core_vacancy\".\"id\", \"core_vacancy\".\"company_id\", \"core_vacancy\".\"verified\", \"core_vacancy\".\"open_time\", \"core_vacancy\".\"close_time\" FROM \"core_vacancy\" WHERE \"core_vacancy\".\"id\" = 1", - "start_time": "2017-03-27T16:53:04.418Z", - "end_time": "2017-03-27T16:53:04.421Z", - "time_taken": 3.001, - "request": "716e9363-de18-483f-b824-7a5cdc4bfc05", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\shortcuts.py\", line 85, in get_object_or_404\n return queryset.get(*args, **kwargs)\n File \"D:\\PPLA\\core\\views\\accounts.py\", line 32, in bookmark_vacancies\n vacancy = get_object_or_404(Vacancy.objects.all(), pk=request.data['vacancy_id'])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 480, in dispatch\n response = handler(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 616, - "fields": { - "query": "SELECT \"core_student\".\"id\", \"core_student\".\"created\", \"core_student\".\"updated\", \"core_student\".\"user_id\", \"core_student\".\"npm\", \"core_student\".\"resume\", \"core_student\".\"phone_number\" FROM \"core_student\" WHERE \"core_student\".\"id\" = 4", - "start_time": "2017-03-27T17:06:13.969Z", - "end_time": "2017-03-27T17:06:14.439Z", - "time_taken": 469.314, - "request": "716e9363-de18-483f-b824-7a5cdc4bfc05", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\shortcuts.py\", line 85, in get_object_or_404\n return queryset.get(*args, **kwargs)\n File \"D:\\PPLA\\core\\views\\accounts.py\", line 34, in bookmark_vacancies\n student = get_object_or_404(Student.objects.all(), pk=pk)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 480, in dispatch\n response = handler(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 617, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 17:05:24.769853+00:00)", - "start_time": "2017-03-27T17:05:24.777Z", - "end_time": "2017-03-27T17:05:24.782Z", - "time_taken": 5.004, - "request": "9e637c23-852f-4051-a7a2-fdb2315a1db7", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 618, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T17:05:24.788Z", - "end_time": "2017-03-27T17:05:24.791Z", - "time_taken": 3.002, - "request": "9e637c23-852f-4051-a7a2-fdb2315a1db7", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 619, - "fields": { - "query": "SELECT \"core_vacancy\".\"id\", \"core_vacancy\".\"company_id\", \"core_vacancy\".\"verified\", \"core_vacancy\".\"open_time\", \"core_vacancy\".\"close_time\" FROM \"core_vacancy\" WHERE \"core_vacancy\".\"id\" = 1", - "start_time": "2017-03-27T17:05:24.798Z", - "end_time": "2017-03-27T17:05:24.801Z", - "time_taken": 3.003, - "request": "9e637c23-852f-4051-a7a2-fdb2315a1db7", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\shortcuts.py\", line 85, in get_object_or_404\n return queryset.get(*args, **kwargs)\n File \"D:\\PPLA\\core\\views\\accounts.py\", line 32, in bookmark_vacancies\n vacancy = get_object_or_404(Vacancy.objects.all(), pk=request.data['vacancy_id'])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 480, in dispatch\n response = handler(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 620, - "fields": { - "query": "SELECT \"core_student\".\"id\", \"core_student\".\"created\", \"core_student\".\"updated\", \"core_student\".\"user_id\", \"core_student\".\"npm\", \"core_student\".\"resume\", \"core_student\".\"phone_number\" FROM \"core_student\" WHERE \"core_student\".\"id\" = 4", - "start_time": "2017-03-27T17:06:13.988Z", - "end_time": "2017-03-27T17:06:14.434Z", - "time_taken": 446.297, - "request": "9e637c23-852f-4051-a7a2-fdb2315a1db7", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\shortcuts.py\", line 85, in get_object_or_404\n return queryset.get(*args, **kwargs)\n File \"D:\\PPLA\\core\\views\\accounts.py\", line 34, in bookmark_vacancies\n student = get_object_or_404(Student.objects.all(), pk=pk)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 480, in dispatch\n response = handler(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 621, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 17:08:27.078162+00:00)", - "start_time": "2017-03-27T17:08:27.096Z", - "end_time": "2017-03-27T17:08:27.288Z", - "time_taken": 192.123, - "request": "b8b1550a-e0f0-446d-b5b1-752f34b1d9cb", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 622, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T17:08:27.293Z", - "end_time": "2017-03-27T17:08:27.445Z", - "time_taken": 152.102, - "request": "b8b1550a-e0f0-446d-b5b1-752f34b1d9cb", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 623, - "fields": { - "query": "SELECT \"core_vacancy\".\"id\", \"core_vacancy\".\"company_id\", \"core_vacancy\".\"verified\", \"core_vacancy\".\"open_time\", \"core_vacancy\".\"close_time\" FROM \"core_vacancy\"", - "start_time": "2017-03-27T17:08:27.481Z", - "end_time": "2017-03-27T17:08:27.550Z", - "time_taken": 69.045, - "request": "b8b1550a-e0f0-446d-b5b1-752f34b1d9cb", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 256, in __iter__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\serializers.py\", line 647, in to_representation\n self.child.to_representation(item) for item in iterable\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\serializers.py\", line 262, in data\n self._data = self.to_representation(self.instance)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\serializers.py\", line 729, in data\n ret = super(ListSerializer, self).data\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\mixins.py\", line 48, in list\n return Response(serializer.data)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 480, in dispatch\n response = handler(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 624, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 17:08:40.847352+00:00)", - "start_time": "2017-03-27T17:08:40.852Z", - "end_time": "2017-03-27T17:08:40.857Z", - "time_taken": 5.002, - "request": "0b0d1a97-7449-475e-b2be-fe3b1c19df58", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 625, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T17:08:40.863Z", - "end_time": "2017-03-27T17:08:40.866Z", - "time_taken": 3.002, - "request": "0b0d1a97-7449-475e-b2be-fe3b1c19df58", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 626, - "fields": { - "query": "SELECT \"core_vacancy\".\"id\", \"core_vacancy\".\"company_id\", \"core_vacancy\".\"verified\", \"core_vacancy\".\"open_time\", \"core_vacancy\".\"close_time\" FROM \"core_vacancy\"", - "start_time": "2017-03-27T17:08:40.870Z", - "end_time": "2017-03-27T17:08:40.872Z", - "time_taken": 2.002, - "request": "0b0d1a97-7449-475e-b2be-fe3b1c19df58", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 256, in __iter__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\serializers.py\", line 647, in to_representation\n self.child.to_representation(item) for item in iterable\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\serializers.py\", line 262, in data\n self._data = self.to_representation(self.instance)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\serializers.py\", line 729, in data\n ret = super(ListSerializer, self).data\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\mixins.py\", line 48, in list\n return Response(serializer.data)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 480, in dispatch\n response = handler(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 627, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 17:08:46.085847+00:00)", - "start_time": "2017-03-27T17:08:46.090Z", - "end_time": "2017-03-27T17:08:46.094Z", - "time_taken": 4.004, - "request": "c2f47060-b247-41b1-96a8-7a547070548d", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 628, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T17:08:46.099Z", - "end_time": "2017-03-27T17:08:46.104Z", - "time_taken": 5.005, - "request": "c2f47060-b247-41b1-96a8-7a547070548d", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 629, - "fields": { - "query": "SELECT \"core_vacancy\".\"id\", \"core_vacancy\".\"company_id\", \"core_vacancy\".\"verified\", \"core_vacancy\".\"open_time\", \"core_vacancy\".\"close_time\" FROM \"core_vacancy\"", - "start_time": "2017-03-27T17:08:46.109Z", - "end_time": "2017-03-27T17:08:46.111Z", - "time_taken": 2.002, - "request": "c2f47060-b247-41b1-96a8-7a547070548d", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 256, in __iter__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\serializers.py\", line 647, in to_representation\n self.child.to_representation(item) for item in iterable\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\serializers.py\", line 262, in data\n self._data = self.to_representation(self.instance)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\serializers.py\", line 729, in data\n ret = super(ListSerializer, self).data\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\mixins.py\", line 48, in list\n return Response(serializer.data)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 480, in dispatch\n response = handler(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 630, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 17:10:39.585059+00:00)", - "start_time": "2017-03-27T17:10:39.605Z", - "end_time": "2017-03-27T17:10:39.610Z", - "time_taken": 5.003, - "request": "8ae47948-4223-4ae5-9f00-d3fc27336e35", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\generic\\base.py\", line 68, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 631, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T17:10:39.616Z", - "end_time": "2017-03-27T17:10:39.620Z", - "time_taken": 4.003, - "request": "8ae47948-4223-4ae5-9f00-d3fc27336e35", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\generic\\base.py\", line 68, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 632, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 17:10:40.409608+00:00)", - "start_time": "2017-03-27T17:10:40.413Z", - "end_time": "2017-03-27T17:10:40.418Z", - "time_taken": 5.003, - "request": "0baf73ed-9a02-4c02-8327-46c8b886778a", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\generic\\base.py\", line 68, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 633, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T17:10:40.422Z", - "end_time": "2017-03-27T17:10:40.426Z", - "time_taken": 4.003, - "request": "0baf73ed-9a02-4c02-8327-46c8b886778a", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\generic\\base.py\", line 68, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 634, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 17:11:18.872277+00:00)", - "start_time": "2017-03-27T17:11:18.877Z", - "end_time": "2017-03-27T17:11:18.882Z", - "time_taken": 5.003, - "request": "74cdf553-b628-472c-8be2-b9672004aaa8", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 635, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T17:11:18.886Z", - "end_time": "2017-03-27T17:11:18.889Z", - "time_taken": 3.002, - "request": "74cdf553-b628-472c-8be2-b9672004aaa8", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 636, - "fields": { - "query": "SELECT \"core_vacancy\".\"id\", \"core_vacancy\".\"company_id\", \"core_vacancy\".\"verified\", \"core_vacancy\".\"open_time\", \"core_vacancy\".\"close_time\" FROM \"core_vacancy\" WHERE \"core_vacancy\".\"id\" = 1", - "start_time": "2017-03-27T17:11:18.895Z", - "end_time": "2017-03-27T17:11:18.897Z", - "time_taken": 2.0, - "request": "74cdf553-b628-472c-8be2-b9672004aaa8", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\shortcuts.py\", line 85, in get_object_or_404\n return queryset.get(*args, **kwargs)\n File \"D:\\PPLA\\core\\views\\accounts.py\", line 32, in bookmark_vacancies\n vacancy = get_object_or_404(Vacancy.objects.all(), pk=request.data['vacancy_id'])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 480, in dispatch\n response = handler(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 637, - "fields": { - "query": "SELECT \"core_student\".\"id\", \"core_student\".\"created\", \"core_student\".\"updated\", \"core_student\".\"user_id\", \"core_student\".\"npm\", \"core_student\".\"resume\", \"core_student\".\"phone_number\" FROM \"core_student\" WHERE \"core_student\".\"id\" = 4", - "start_time": "2017-03-27T17:11:18.902Z", - "end_time": "2017-03-27T17:11:18.906Z", - "time_taken": 4.002, - "request": "74cdf553-b628-472c-8be2-b9672004aaa8", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\shortcuts.py\", line 85, in get_object_or_404\n return queryset.get(*args, **kwargs)\n File \"D:\\PPLA\\core\\views\\accounts.py\", line 33, in bookmark_vacancies\n student = get_object_or_404(Student.objects.all(), pk=pk)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 480, in dispatch\n response = handler(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 638, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 17:12:01.664834+00:00)", - "start_time": "2017-03-27T17:12:01.683Z", - "end_time": "2017-03-27T17:12:01.688Z", - "time_taken": 5.003, - "request": "1ce5db39-e66d-43fb-a619-96fbd6480be8", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 639, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T17:12:01.693Z", - "end_time": "2017-03-27T17:12:01.697Z", - "time_taken": 4.002, - "request": "1ce5db39-e66d-43fb-a619-96fbd6480be8", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 640, - "fields": { - "query": "SELECT \"core_vacancy\".\"id\", \"core_vacancy\".\"company_id\", \"core_vacancy\".\"verified\", \"core_vacancy\".\"open_time\", \"core_vacancy\".\"close_time\" FROM \"core_vacancy\" WHERE \"core_vacancy\".\"id\" = 1", - "start_time": "2017-03-27T17:12:01.720Z", - "end_time": "2017-03-27T17:12:01.722Z", - "time_taken": 2.001, - "request": "1ce5db39-e66d-43fb-a619-96fbd6480be8", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\shortcuts.py\", line 85, in get_object_or_404\n return queryset.get(*args, **kwargs)\n File \"D:\\PPLA\\core\\views\\accounts.py\", line 33, in bookmark_vacancies\n vacancy = get_object_or_404(Vacancy.objects.all(), pk=request.data['vacancy_id'])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 480, in dispatch\n response = handler(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 641, - "fields": { - "query": "SELECT \"core_student\".\"id\", \"core_student\".\"created\", \"core_student\".\"updated\", \"core_student\".\"user_id\", \"core_student\".\"npm\", \"core_student\".\"resume\", \"core_student\".\"phone_number\" FROM \"core_student\" WHERE \"core_student\".\"id\" = 4", - "start_time": "2017-03-27T17:12:01.736Z", - "end_time": "2017-03-27T17:12:01.740Z", - "time_taken": 4.004, - "request": "1ce5db39-e66d-43fb-a619-96fbd6480be8", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\shortcuts.py\", line 85, in get_object_or_404\n return queryset.get(*args, **kwargs)\n File \"D:\\PPLA\\core\\views\\accounts.py\", line 35, in bookmark_vacancies\n student = get_object_or_404(Student.objects.all(), pk=pk)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 480, in dispatch\n response = handler(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 642, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 17:13:31.270324+00:00)", - "start_time": "2017-03-27T17:13:31.275Z", - "end_time": "2017-03-27T17:13:31.281Z", - "time_taken": 6.003, - "request": "7875a5ed-d252-4c60-b3c7-3a59ac610a8b", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\generic\\base.py\", line 68, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 643, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T17:13:31.286Z", - "end_time": "2017-03-27T17:13:31.289Z", - "time_taken": 3.002, - "request": "7875a5ed-d252-4c60-b3c7-3a59ac610a8b", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\generic\\base.py\", line 68, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 644, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 17:13:32.589203+00:00)", - "start_time": "2017-03-27T17:13:32.593Z", - "end_time": "2017-03-27T17:13:32.597Z", - "time_taken": 4.004, - "request": "56db7b1d-e0ab-483a-a84b-fa50dae761b7", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\generic\\base.py\", line 68, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 645, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T17:13:32.602Z", - "end_time": "2017-03-27T17:13:32.605Z", - "time_taken": 3.003, - "request": "56db7b1d-e0ab-483a-a84b-fa50dae761b7", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\generic\\base.py\", line 68, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 646, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 17:13:34.424427+00:00)", - "start_time": "2017-03-27T17:13:34.618Z", - "end_time": "2017-03-27T17:13:34.623Z", - "time_taken": 5.003, - "request": "a46bb5f5-8c7a-4649-8d1a-dbd4d514bd1f", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 647, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 17:13:34.735634+00:00)", - "start_time": "2017-03-27T17:13:34.739Z", - "end_time": "2017-03-27T17:13:34.745Z", - "time_taken": 6.006, - "request": "48414e6e-676a-4fc1-b468-03ff7de2e324", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 648, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T17:13:34.750Z", - "end_time": "2017-03-27T17:13:34.753Z", - "time_taken": 2.998, - "request": "48414e6e-676a-4fc1-b468-03ff7de2e324", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 649, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T17:13:34.628Z", - "end_time": "2017-03-27T17:13:34.631Z", - "time_taken": 3.002, - "request": "a46bb5f5-8c7a-4649-8d1a-dbd4d514bd1f", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 650, - "fields": { - "query": "SELECT \"django_admin_log\".\"id\", \"django_admin_log\".\"action_time\", \"django_admin_log\".\"user_id\", \"django_admin_log\".\"content_type_id\", \"django_admin_log\".\"object_id\", \"django_admin_log\".\"object_repr\", \"django_admin_log\".\"action_flag\", \"django_admin_log\".\"change_message\", \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\", \"django_content_type\".\"id\", \"django_content_type\".\"app_label\", \"django_content_type\".\"model\" FROM \"django_admin_log\" INNER JOIN \"auth_user\" ON (\"django_admin_log\".\"user_id\" = \"auth_user\".\"id\") LEFT OUTER JOIN \"django_content_type\" ON (\"django_admin_log\".\"content_type_id\" = \"django_content_type\".\"id\") WHERE \"django_admin_log\".\"user_id\" = 1 ORDER BY \"django_admin_log\".\"action_time\" DESC LIMIT 10", - "start_time": "2017-03-27T17:13:35.151Z", - "end_time": "2017-03-27T17:13:35.449Z", - "time_taken": 297.197, - "request": "a46bb5f5-8c7a-4649-8d1a-dbd4d514bd1f", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 260, in __bool__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\smartif.py\", line 96, in <lambda>\n 'not': prefix(8, lambda context, x: not x.eval(context)),\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\smartif.py\", line 83, in eval\n return func(context, self.first)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 308, in render\n match = condition.eval(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 651, - "fields": { - "query": "SELECT \"django_admin_log\".\"id\", \"django_admin_log\".\"action_time\", \"django_admin_log\".\"user_id\", \"django_admin_log\".\"content_type_id\", \"django_admin_log\".\"object_id\", \"django_admin_log\".\"object_repr\", \"django_admin_log\".\"action_flag\", \"django_admin_log\".\"change_message\", \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\", \"django_content_type\".\"id\", \"django_content_type\".\"app_label\", \"django_content_type\".\"model\" FROM \"django_admin_log\" INNER JOIN \"auth_user\" ON (\"django_admin_log\".\"user_id\" = \"auth_user\".\"id\") LEFT OUTER JOIN \"django_content_type\" ON (\"django_admin_log\".\"content_type_id\" = \"django_content_type\".\"id\") WHERE \"django_admin_log\".\"user_id\" = 1 ORDER BY \"django_admin_log\".\"action_time\" DESC LIMIT 10", - "start_time": "2017-03-27T17:13:35.183Z", - "end_time": "2017-03-27T17:13:35.455Z", - "time_taken": 271.182, - "request": "48414e6e-676a-4fc1-b468-03ff7de2e324", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 260, in __bool__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\smartif.py\", line 96, in <lambda>\n 'not': prefix(8, lambda context, x: not x.eval(context)),\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\smartif.py\", line 83, in eval\n return func(context, self.first)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 308, in render\n match = condition.eval(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 652, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 17:13:40.175266+00:00)", - "start_time": "2017-03-27T17:13:40.227Z", - "end_time": "2017-03-27T17:13:40.231Z", - "time_taken": 4.001, - "request": "55ced51b-69df-4271-9fbc-2af103f92e32", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 653, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T17:13:40.235Z", - "end_time": "2017-03-27T17:13:40.239Z", - "time_taken": 4.003, - "request": "55ced51b-69df-4271-9fbc-2af103f92e32", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 654, - "fields": { - "query": "SELECT \"auth_group\".\"id\", \"auth_group\".\"name\" FROM \"auth_group\"", - "start_time": "2017-03-27T17:13:40.360Z", - "end_time": "2017-03-27T17:13:40.472Z", - "time_taken": 112.075, - "request": "55ced51b-69df-4271-9fbc-2af103f92e32", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 256, in __iter__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\fields\\__init__.py\", line 797, in get_choices\n limit_choices_to)]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\filters.py\", line 197, in field_choices\n return field.get_choices(include_blank=False)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\filters.py\", line 170, in __init__\n self.lookup_choices = self.field_choices(field, request, model_admin)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\filters.py\", line 158, in create\n return list_filter_class(field, request, params, model, model_admin, field_path=field_path)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 130, in get_filters\n self.model, self.model_admin, field_path=field_path\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 312, in get_queryset\n filters_use_distinct) = self.get_filters(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 78, in __init__\n self.queryset = self.get_queryset(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 655, - "fields": { - "query": "SELECT COUNT(*) FROM (SELECT DISTINCT \"auth_user\".\"id\" AS Col1, \"auth_user\".\"password\" AS Col2, \"auth_user\".\"last_login\" AS Col3, \"auth_user\".\"is_superuser\" AS Col4, \"auth_user\".\"username\" AS Col5, \"auth_user\".\"first_name\" AS Col6, \"auth_user\".\"last_name\" AS Col7, \"auth_user\".\"email\" AS Col8, \"auth_user\".\"is_staff\" AS Col9, \"auth_user\".\"is_active\" AS Col10, \"auth_user\".\"date_joined\" AS Col11 FROM \"auth_user\") subquery", - "start_time": "2017-03-27T17:13:40.533Z", - "end_time": "2017-03-27T17:13:40.583Z", - "time_taken": 50.04, - "request": "55ced51b-69df-4271-9fbc-2af103f92e32", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 457, in get_aggregation\n result = compiler.execute_sql(SINGLE)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 476, in get_count\n number = obj.get_aggregation(using, ['__count'])['__count']\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 369, in count\n return self.query.get_count(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\paginator.py\", line 72, in count\n return self.object_list.count()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 35, in __get__\n res = instance.__dict__[self.name] = self.func(instance)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 172, in get_results\n result_count = paginator.count\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 79, in __init__\n self.get_results(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 656, - "fields": { - "query": "SELECT COUNT(*) AS \"__count\" FROM \"auth_user\"", - "start_time": "2017-03-27T17:13:40.587Z", - "end_time": "2017-03-27T17:13:40.589Z", - "time_taken": 2.001, - "request": "55ced51b-69df-4271-9fbc-2af103f92e32", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 457, in get_aggregation\n result = compiler.execute_sql(SINGLE)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 476, in get_count\n number = obj.get_aggregation(using, ['__count'])['__count']\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 369, in count\n return self.query.get_count(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 176, in get_results\n full_result_count = self.root_queryset.count()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 79, in __init__\n self.get_results(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 657, - "fields": { - "query": "SELECT DISTINCT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" ORDER BY \"auth_user\".\"username\" ASC, \"auth_user\".\"id\" DESC", - "start_time": "2017-03-27T17:13:40.597Z", - "end_time": "2017-03-27T17:13:40.599Z", - "time_taken": 1.998, - "request": "55ced51b-69df-4271-9fbc-2af103f92e32", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1657, in changelist_view\n selection_note=_('0 of %(cnt)s selected') % {'cnt': len(cl.result_list)},\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 658, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 17:13:41.215960+00:00)", - "start_time": "2017-03-27T17:13:41.220Z", - "end_time": "2017-03-27T17:13:41.225Z", - "time_taken": 5.004, - "request": "e869377f-5891-4cd3-b39a-3a0a0f3334cc", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 659, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T17:13:41.230Z", - "end_time": "2017-03-27T17:13:41.233Z", - "time_taken": 3.002, - "request": "e869377f-5891-4cd3-b39a-3a0a0f3334cc", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 660, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 17:13:48.401755+00:00)", - "start_time": "2017-03-27T17:13:48.405Z", - "end_time": "2017-03-27T17:13:48.410Z", - "time_taken": 5.005, - "request": "a6997517-dee8-4522-86bf-1ab24188f745", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 661, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T17:13:48.415Z", - "end_time": "2017-03-27T17:13:48.418Z", - "time_taken": 3.003, - "request": "a6997517-dee8-4522-86bf-1ab24188f745", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 662, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 2", - "start_time": "2017-03-27T17:13:48.422Z", - "end_time": "2017-03-27T17:13:48.423Z", - "time_taken": 1.002, - "request": "a6997517-dee8-4522-86bf-1ab24188f745", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 667, in get_object\n return queryset.get(**{field.name: object_id})\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1429, in changeform_view\n obj = self.get_object(request, unquote(object_id), to_field)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1512, in change_view\n return self.changeform_view(request, object_id, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 663, - "fields": { - "query": "SELECT \"django_content_type\".\"id\", \"django_content_type\".\"app_label\", \"django_content_type\".\"model\" FROM \"django_content_type\" WHERE (\"django_content_type\".\"app_label\" = auth AND \"django_content_type\".\"model\" = user)", - "start_time": "2017-03-27T17:13:48.467Z", - "end_time": "2017-03-27T17:13:48.469Z", - "time_taken": 2.0, - "request": "a6997517-dee8-4522-86bf-1ab24188f745", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\contenttypes\\models.py\", line 52, in get_for_model\n ct = self.get(app_label=opts.app_label, model=opts.model_name)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 64, in get_content_type_for_model\n return ContentType.objects.get_for_model(obj, for_concrete_model=False)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1050, in render_change_form\n 'content_type_id': get_content_type_for_model(self.model).pk,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1506, in changeform_view\n return self.render_change_form(request, context, add=add, change=not add, obj=obj, form_url=form_url)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1512, in change_view\n return self.changeform_view(request, object_id, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 664, - "fields": { - "query": "SELECT \"auth_group\".\"id\", \"auth_group\".\"name\" FROM \"auth_group\" INNER JOIN \"auth_user_groups\" ON (\"auth_group\".\"id\" = \"auth_user_groups\".\"group_id\") WHERE \"auth_user_groups\".\"user_id\" = 2", - "start_time": "2017-03-27T17:13:48.833Z", - "end_time": "2017-03-27T17:13:48.893Z", - "time_taken": 60.042, - "request": "a6997517-dee8-4522-86bf-1ab24188f745", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 256, in __iter__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1312, in prepare_value\n return [super(ModelMultipleChoiceField, self).prepare_value(v) for v in value]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 137, in value\n return self.field.prepare_value(data)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 101, in as_widget\n return force_text(widget.render(name, self.value(), attrs=attrs))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 43, in __str__\n return self.as_widget()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\html.py\", line 391, in <lambda>\n klass.__str__ = lambda self: mark_safe(klass_str(self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\encoding.py\", line 76, in force_text\n s = six.text_type(s)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1028, in render_value_in_context\n value = force_text(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1050, in render\n return render_value_in_context(output, context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 210, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 210, in render\n return template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 665, - "fields": { - "query": "SELECT \"auth_group\".\"id\", \"auth_group\".\"name\" FROM \"auth_group\" ORDER BY \"auth_group\".\"name\" ASC", - "start_time": "2017-03-27T17:13:48.954Z", - "end_time": "2017-03-27T17:13:48.955Z", - "time_taken": 1.001, - "request": "a6997517-dee8-4522-86bf-1ab24188f745", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1118, in __iter__\n for obj in queryset:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 567, in render_options\n for option_value, option_label in self.choices:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 617, in render\n options = self.render_options(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\widgets.py\", line 49, in render\n output = super(FilteredSelectMultiple, self).render(name, value, attrs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\widgets.py\", line 307, in render\n 'widget': self.widget.render(name, value, *args, **kwargs),\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 101, in as_widget\n return force_text(widget.render(name, self.value(), attrs=attrs))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 43, in __str__\n return self.as_widget()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\html.py\", line 391, in <lambda>\n klass.__str__ = lambda self: mark_safe(klass_str(self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\encoding.py\", line 76, in force_text\n s = six.text_type(s)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1028, in render_value_in_context\n value = force_text(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1050, in render\n return render_value_in_context(output, context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 210, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 210, in render\n return template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 666, - "fields": { - "query": "SELECT \"auth_permission\".\"id\", \"auth_permission\".\"name\", \"auth_permission\".\"content_type_id\", \"auth_permission\".\"codename\" FROM \"auth_permission\" INNER JOIN \"auth_user_user_permissions\" ON (\"auth_permission\".\"id\" = \"auth_user_user_permissions\".\"permission_id\") INNER JOIN \"django_content_type\" ON (\"auth_permission\".\"content_type_id\" = \"django_content_type\".\"id\") WHERE \"auth_user_user_permissions\".\"user_id\" = 2 ORDER BY \"django_content_type\".\"app_label\" ASC, \"django_content_type\".\"model\" ASC, \"auth_permission\".\"codename\" ASC", - "start_time": "2017-03-27T17:13:49.040Z", - "end_time": "2017-03-27T17:13:49.147Z", - "time_taken": 107.072, - "request": "a6997517-dee8-4522-86bf-1ab24188f745", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 256, in __iter__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1312, in prepare_value\n return [super(ModelMultipleChoiceField, self).prepare_value(v) for v in value]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 137, in value\n return self.field.prepare_value(data)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 101, in as_widget\n return force_text(widget.render(name, self.value(), attrs=attrs))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 43, in __str__\n return self.as_widget()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\html.py\", line 391, in <lambda>\n klass.__str__ = lambda self: mark_safe(klass_str(self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\encoding.py\", line 76, in force_text\n s = six.text_type(s)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1028, in render_value_in_context\n value = force_text(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1050, in render\n return render_value_in_context(output, context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 210, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 210, in render\n return template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 667, - "fields": { - "query": "SELECT \"auth_permission\".\"id\", \"auth_permission\".\"name\", \"auth_permission\".\"content_type_id\", \"auth_permission\".\"codename\", \"django_content_type\".\"id\", \"django_content_type\".\"app_label\", \"django_content_type\".\"model\" FROM \"auth_permission\" INNER JOIN \"django_content_type\" ON (\"auth_permission\".\"content_type_id\" = \"django_content_type\".\"id\") ORDER BY \"django_content_type\".\"app_label\" ASC, \"django_content_type\".\"model\" ASC, \"auth_permission\".\"codename\" ASC", - "start_time": "2017-03-27T17:13:49.152Z", - "end_time": "2017-03-27T17:13:49.155Z", - "time_taken": 3.004, - "request": "a6997517-dee8-4522-86bf-1ab24188f745", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1118, in __iter__\n for obj in queryset:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 567, in render_options\n for option_value, option_label in self.choices:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 617, in render\n options = self.render_options(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\widgets.py\", line 49, in render\n output = super(FilteredSelectMultiple, self).render(name, value, attrs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\widgets.py\", line 307, in render\n 'widget': self.widget.render(name, value, *args, **kwargs),\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 101, in as_widget\n return force_text(widget.render(name, self.value(), attrs=attrs))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 43, in __str__\n return self.as_widget()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\html.py\", line 391, in <lambda>\n klass.__str__ = lambda self: mark_safe(klass_str(self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\encoding.py\", line 76, in force_text\n s = six.text_type(s)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1028, in render_value_in_context\n value = force_text(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1050, in render\n return render_value_in_context(output, context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 210, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 210, in render\n return template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 668, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 17:13:49.544519+00:00)", - "start_time": "2017-03-27T17:13:49.548Z", - "end_time": "2017-03-27T17:13:49.553Z", - "time_taken": 5.005, - "request": "7f58beec-8752-4060-9047-178b48f469b7", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 669, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T17:13:49.559Z", - "end_time": "2017-03-27T17:13:49.562Z", - "time_taken": 3.004, - "request": "7f58beec-8752-4060-9047-178b48f469b7", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 670, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 17:14:52.425482+00:00)", - "start_time": "2017-03-27T17:14:52.429Z", - "end_time": "2017-03-27T17:14:52.434Z", - "time_taken": 5.004, - "request": "78f2203a-2bfb-4777-94c4-a7af0d987f49", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 671, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T17:14:52.439Z", - "end_time": "2017-03-27T17:14:52.442Z", - "time_taken": 3.002, - "request": "78f2203a-2bfb-4777-94c4-a7af0d987f49", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\authentication.py\", line 125, in authenticate\n if not user or not user.is_active:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 342, in _authenticate\n user_auth_tuple = authenticator.authenticate(self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 196, in user\n self._authenticate()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\request.py\", line 379, in __getattribute__\n return super(Request, self).__getattribute__(attr)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 319, in perform_authentication\n request.user\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 393, in initial\n self.perform_authentication(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 471, in dispatch\n self.initial(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 672, - "fields": { - "query": "SELECT \"core_vacancy\".\"id\", \"core_vacancy\".\"company_id\", \"core_vacancy\".\"verified\", \"core_vacancy\".\"open_time\", \"core_vacancy\".\"close_time\" FROM \"core_vacancy\" WHERE \"core_vacancy\".\"id\" = 1", - "start_time": "2017-03-27T17:14:52.451Z", - "end_time": "2017-03-27T17:14:52.453Z", - "time_taken": 2.001, - "request": "78f2203a-2bfb-4777-94c4-a7af0d987f49", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\shortcuts.py\", line 85, in get_object_or_404\n return queryset.get(*args, **kwargs)\n File \"D:\\PPLA\\core\\views\\accounts.py\", line 33, in bookmark_vacancies\n vacancy = get_object_or_404(Vacancy.objects.all(), pk=request.data['vacancy_id'])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 480, in dispatch\n response = handler(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 673, - "fields": { - "query": "SELECT \"core_student\".\"id\", \"core_student\".\"created\", \"core_student\".\"updated\", \"core_student\".\"user_id\", \"core_student\".\"npm\", \"core_student\".\"resume\", \"core_student\".\"phone_number\" FROM \"core_student\" WHERE \"core_student\".\"id\" = 2", - "start_time": "2017-03-27T17:14:52.458Z", - "end_time": "2017-03-27T17:14:52.479Z", - "time_taken": 21.015, - "request": "78f2203a-2bfb-4777-94c4-a7af0d987f49", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\shortcuts.py\", line 85, in get_object_or_404\n return queryset.get(*args, **kwargs)\n File \"D:\\PPLA\\core\\views\\accounts.py\", line 35, in bookmark_vacancies\n student = get_object_or_404(Student.objects.all(), pk=pk)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\views.py\", line 480, in dispatch\n response = handler(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\rest_framework\\viewsets.py\", line 83, in view\n return self.dispatch(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\csrf.py\", line 58, in wrapped_view\n return view_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 674, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 17:15:02.807411+00:00)", - "start_time": "2017-03-27T17:15:02.812Z", - "end_time": "2017-03-27T17:15:02.816Z", - "time_taken": 4.004, - "request": "57ce7e2d-561c-447b-a337-1b11b65a169d", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 675, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T17:15:02.822Z", - "end_time": "2017-03-27T17:15:02.825Z", - "time_taken": 3.001, - "request": "57ce7e2d-561c-447b-a337-1b11b65a169d", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 676, - "fields": { - "query": "SELECT \"auth_group\".\"id\", \"auth_group\".\"name\" FROM \"auth_group\"", - "start_time": "2017-03-27T17:15:02.829Z", - "end_time": "2017-03-27T17:15:02.832Z", - "time_taken": 3.003, - "request": "57ce7e2d-561c-447b-a337-1b11b65a169d", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 256, in __iter__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\fields\\__init__.py\", line 797, in get_choices\n limit_choices_to)]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\filters.py\", line 197, in field_choices\n return field.get_choices(include_blank=False)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\filters.py\", line 170, in __init__\n self.lookup_choices = self.field_choices(field, request, model_admin)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\filters.py\", line 158, in create\n return list_filter_class(field, request, params, model, model_admin, field_path=field_path)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 130, in get_filters\n self.model, self.model_admin, field_path=field_path\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 312, in get_queryset\n filters_use_distinct) = self.get_filters(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 78, in __init__\n self.queryset = self.get_queryset(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 677, - "fields": { - "query": "SELECT COUNT(*) FROM (SELECT DISTINCT \"auth_user\".\"id\" AS Col1, \"auth_user\".\"password\" AS Col2, \"auth_user\".\"last_login\" AS Col3, \"auth_user\".\"is_superuser\" AS Col4, \"auth_user\".\"username\" AS Col5, \"auth_user\".\"first_name\" AS Col6, \"auth_user\".\"last_name\" AS Col7, \"auth_user\".\"email\" AS Col8, \"auth_user\".\"is_staff\" AS Col9, \"auth_user\".\"is_active\" AS Col10, \"auth_user\".\"date_joined\" AS Col11 FROM \"auth_user\") subquery", - "start_time": "2017-03-27T17:15:02.839Z", - "end_time": "2017-03-27T17:15:02.842Z", - "time_taken": 3.003, - "request": "57ce7e2d-561c-447b-a337-1b11b65a169d", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 457, in get_aggregation\n result = compiler.execute_sql(SINGLE)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 476, in get_count\n number = obj.get_aggregation(using, ['__count'])['__count']\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 369, in count\n return self.query.get_count(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\paginator.py\", line 72, in count\n return self.object_list.count()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 35, in __get__\n res = instance.__dict__[self.name] = self.func(instance)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 172, in get_results\n result_count = paginator.count\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 79, in __init__\n self.get_results(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 678, - "fields": { - "query": "SELECT COUNT(*) AS \"__count\" FROM \"auth_user\"", - "start_time": "2017-03-27T17:15:02.845Z", - "end_time": "2017-03-27T17:15:02.846Z", - "time_taken": 1.002, - "request": "57ce7e2d-561c-447b-a337-1b11b65a169d", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 457, in get_aggregation\n result = compiler.execute_sql(SINGLE)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 476, in get_count\n number = obj.get_aggregation(using, ['__count'])['__count']\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 369, in count\n return self.query.get_count(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 176, in get_results\n full_result_count = self.root_queryset.count()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 79, in __init__\n self.get_results(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 679, - "fields": { - "query": "SELECT DISTINCT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" ORDER BY \"auth_user\".\"username\" ASC, \"auth_user\".\"id\" DESC", - "start_time": "2017-03-27T17:15:02.855Z", - "end_time": "2017-03-27T17:15:02.857Z", - "time_taken": 2.002, - "request": "57ce7e2d-561c-447b-a337-1b11b65a169d", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1657, in changelist_view\n selection_note=_('0 of %(cnt)s selected') % {'cnt': len(cl.result_list)},\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 680, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 17:15:28.387481+00:00)", - "start_time": "2017-03-27T17:15:28.391Z", - "end_time": "2017-03-27T17:15:28.396Z", - "time_taken": 5.003, - "request": "45fb5123-11cf-489a-86ed-250fb2b17bf9", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 681, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T17:15:28.401Z", - "end_time": "2017-03-27T17:15:28.404Z", - "time_taken": 3.002, - "request": "45fb5123-11cf-489a-86ed-250fb2b17bf9", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 682, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 4", - "start_time": "2017-03-27T17:15:28.408Z", - "end_time": "2017-03-27T17:15:28.409Z", - "time_taken": 1.001, - "request": "45fb5123-11cf-489a-86ed-250fb2b17bf9", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 667, in get_object\n return queryset.get(**{field.name: object_id})\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1429, in changeform_view\n obj = self.get_object(request, unquote(object_id), to_field)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1512, in change_view\n return self.changeform_view(request, object_id, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 683, - "fields": { - "query": "SELECT \"auth_group\".\"id\", \"auth_group\".\"name\" FROM \"auth_group\" INNER JOIN \"auth_user_groups\" ON (\"auth_group\".\"id\" = \"auth_user_groups\".\"group_id\") WHERE \"auth_user_groups\".\"user_id\" = 4", - "start_time": "2017-03-27T17:15:28.483Z", - "end_time": "2017-03-27T17:15:28.488Z", - "time_taken": 5.004, - "request": "45fb5123-11cf-489a-86ed-250fb2b17bf9", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 256, in __iter__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1312, in prepare_value\n return [super(ModelMultipleChoiceField, self).prepare_value(v) for v in value]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 137, in value\n return self.field.prepare_value(data)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 101, in as_widget\n return force_text(widget.render(name, self.value(), attrs=attrs))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 43, in __str__\n return self.as_widget()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\html.py\", line 391, in <lambda>\n klass.__str__ = lambda self: mark_safe(klass_str(self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\encoding.py\", line 76, in force_text\n s = six.text_type(s)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1028, in render_value_in_context\n value = force_text(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1050, in render\n return render_value_in_context(output, context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 210, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 210, in render\n return template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 684, - "fields": { - "query": "SELECT \"auth_group\".\"id\", \"auth_group\".\"name\" FROM \"auth_group\" ORDER BY \"auth_group\".\"name\" ASC", - "start_time": "2017-03-27T17:15:28.493Z", - "end_time": "2017-03-27T17:15:28.494Z", - "time_taken": 1.002, - "request": "45fb5123-11cf-489a-86ed-250fb2b17bf9", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1118, in __iter__\n for obj in queryset:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 567, in render_options\n for option_value, option_label in self.choices:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 617, in render\n options = self.render_options(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\widgets.py\", line 49, in render\n output = super(FilteredSelectMultiple, self).render(name, value, attrs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\widgets.py\", line 307, in render\n 'widget': self.widget.render(name, value, *args, **kwargs),\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 101, in as_widget\n return force_text(widget.render(name, self.value(), attrs=attrs))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 43, in __str__\n return self.as_widget()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\html.py\", line 391, in <lambda>\n klass.__str__ = lambda self: mark_safe(klass_str(self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\encoding.py\", line 76, in force_text\n s = six.text_type(s)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1028, in render_value_in_context\n value = force_text(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1050, in render\n return render_value_in_context(output, context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 210, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 210, in render\n return template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 685, - "fields": { - "query": "SELECT \"auth_permission\".\"id\", \"auth_permission\".\"name\", \"auth_permission\".\"content_type_id\", \"auth_permission\".\"codename\" FROM \"auth_permission\" INNER JOIN \"auth_user_user_permissions\" ON (\"auth_permission\".\"id\" = \"auth_user_user_permissions\".\"permission_id\") INNER JOIN \"django_content_type\" ON (\"auth_permission\".\"content_type_id\" = \"django_content_type\".\"id\") WHERE \"auth_user_user_permissions\".\"user_id\" = 4 ORDER BY \"django_content_type\".\"app_label\" ASC, \"django_content_type\".\"model\" ASC, \"auth_permission\".\"codename\" ASC", - "start_time": "2017-03-27T17:15:28.505Z", - "end_time": "2017-03-27T17:15:28.511Z", - "time_taken": 6.004, - "request": "45fb5123-11cf-489a-86ed-250fb2b17bf9", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 256, in __iter__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1312, in prepare_value\n return [super(ModelMultipleChoiceField, self).prepare_value(v) for v in value]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 137, in value\n return self.field.prepare_value(data)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 101, in as_widget\n return force_text(widget.render(name, self.value(), attrs=attrs))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 43, in __str__\n return self.as_widget()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\html.py\", line 391, in <lambda>\n klass.__str__ = lambda self: mark_safe(klass_str(self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\encoding.py\", line 76, in force_text\n s = six.text_type(s)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1028, in render_value_in_context\n value = force_text(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1050, in render\n return render_value_in_context(output, context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 210, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 210, in render\n return template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 686, - "fields": { - "query": "SELECT \"auth_permission\".\"id\", \"auth_permission\".\"name\", \"auth_permission\".\"content_type_id\", \"auth_permission\".\"codename\", \"django_content_type\".\"id\", \"django_content_type\".\"app_label\", \"django_content_type\".\"model\" FROM \"auth_permission\" INNER JOIN \"django_content_type\" ON (\"auth_permission\".\"content_type_id\" = \"django_content_type\".\"id\") ORDER BY \"django_content_type\".\"app_label\" ASC, \"django_content_type\".\"model\" ASC, \"auth_permission\".\"codename\" ASC", - "start_time": "2017-03-27T17:15:28.518Z", - "end_time": "2017-03-27T17:15:28.521Z", - "time_taken": 3.002, - "request": "45fb5123-11cf-489a-86ed-250fb2b17bf9", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1118, in __iter__\n for obj in queryset:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 567, in render_options\n for option_value, option_label in self.choices:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 617, in render\n options = self.render_options(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\widgets.py\", line 49, in render\n output = super(FilteredSelectMultiple, self).render(name, value, attrs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\widgets.py\", line 307, in render\n 'widget': self.widget.render(name, value, *args, **kwargs),\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 101, in as_widget\n return force_text(widget.render(name, self.value(), attrs=attrs))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 43, in __str__\n return self.as_widget()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\html.py\", line 391, in <lambda>\n klass.__str__ = lambda self: mark_safe(klass_str(self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\encoding.py\", line 76, in force_text\n s = six.text_type(s)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1028, in render_value_in_context\n value = force_text(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1050, in render\n return render_value_in_context(output, context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 210, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 210, in render\n return template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 687, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 17:15:28.757728+00:00)", - "start_time": "2017-03-27T17:15:28.761Z", - "end_time": "2017-03-27T17:15:28.766Z", - "time_taken": 5.005, - "request": "fec74af3-d8b7-48a0-8231-5e7164b58cc8", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 688, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T17:15:28.770Z", - "end_time": "2017-03-27T17:15:28.774Z", - "time_taken": 4.003, - "request": "fec74af3-d8b7-48a0-8231-5e7164b58cc8", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 229, in wrapper\n return self.admin_view(view, cacheable)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 689, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 17:15:30.623974+00:00)", - "start_time": "2017-03-27T17:15:30.629Z", - "end_time": "2017-03-27T17:15:30.634Z", - "time_taken": 5.003, - "request": "f433947a-a358-4e40-a5cd-e5caa094aa62", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 690, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T17:15:30.638Z", - "end_time": "2017-03-27T17:15:30.641Z", - "time_taken": 3.003, - "request": "f433947a-a358-4e40-a5cd-e5caa094aa62", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 691, - "fields": { - "query": "SELECT \"auth_group\".\"id\", \"auth_group\".\"name\" FROM \"auth_group\"", - "start_time": "2017-03-27T17:15:30.647Z", - "end_time": "2017-03-27T17:15:30.650Z", - "time_taken": 3.001, - "request": "f433947a-a358-4e40-a5cd-e5caa094aa62", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 256, in __iter__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\fields\\__init__.py\", line 797, in get_choices\n limit_choices_to)]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\filters.py\", line 197, in field_choices\n return field.get_choices(include_blank=False)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\filters.py\", line 170, in __init__\n self.lookup_choices = self.field_choices(field, request, model_admin)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\filters.py\", line 158, in create\n return list_filter_class(field, request, params, model, model_admin, field_path=field_path)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 130, in get_filters\n self.model, self.model_admin, field_path=field_path\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 312, in get_queryset\n filters_use_distinct) = self.get_filters(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 78, in __init__\n self.queryset = self.get_queryset(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 692, - "fields": { - "query": "SELECT COUNT(*) FROM (SELECT DISTINCT \"auth_user\".\"id\" AS Col1, \"auth_user\".\"password\" AS Col2, \"auth_user\".\"last_login\" AS Col3, \"auth_user\".\"is_superuser\" AS Col4, \"auth_user\".\"username\" AS Col5, \"auth_user\".\"first_name\" AS Col6, \"auth_user\".\"last_name\" AS Col7, \"auth_user\".\"email\" AS Col8, \"auth_user\".\"is_staff\" AS Col9, \"auth_user\".\"is_active\" AS Col10, \"auth_user\".\"date_joined\" AS Col11 FROM \"auth_user\") subquery", - "start_time": "2017-03-27T17:15:30.655Z", - "end_time": "2017-03-27T17:15:30.657Z", - "time_taken": 2.001, - "request": "f433947a-a358-4e40-a5cd-e5caa094aa62", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 457, in get_aggregation\n result = compiler.execute_sql(SINGLE)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 476, in get_count\n number = obj.get_aggregation(using, ['__count'])['__count']\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 369, in count\n return self.query.get_count(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\paginator.py\", line 72, in count\n return self.object_list.count()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 35, in __get__\n res = instance.__dict__[self.name] = self.func(instance)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 172, in get_results\n result_count = paginator.count\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 79, in __init__\n self.get_results(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 693, - "fields": { - "query": "SELECT COUNT(*) AS \"__count\" FROM \"auth_user\"", - "start_time": "2017-03-27T17:15:30.662Z", - "end_time": "2017-03-27T17:15:30.663Z", - "time_taken": 1.0, - "request": "f433947a-a358-4e40-a5cd-e5caa094aa62", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 457, in get_aggregation\n result = compiler.execute_sql(SINGLE)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\sql\\query.py\", line 476, in get_count\n number = obj.get_aggregation(using, ['__count'])['__count']\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 369, in count\n return self.query.get_count(using=self.db)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 176, in get_results\n full_result_count = self.root_queryset.count()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\views\\main.py\", line 79, in __init__\n self.get_results(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1543, in changelist_view\n self.list_max_show_all, self.list_editable, self,\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 694, - "fields": { - "query": "SELECT DISTINCT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" ORDER BY \"auth_user\".\"username\" ASC, \"auth_user\".\"id\" DESC", - "start_time": "2017-03-27T17:15:30.671Z", - "end_time": "2017-03-27T17:15:30.673Z", - "time_taken": 2.001, - "request": "f433947a-a358-4e40-a5cd-e5caa094aa62", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1657, in changelist_view\n selection_note=_('0 of %(cnt)s selected') % {'cnt': len(cl.result_list)},\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 695, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 17:15:32.344121+00:00)", - "start_time": "2017-03-27T17:15:32.348Z", - "end_time": "2017-03-27T17:15:32.353Z", - "time_taken": 5.003, - "request": "163cce20-655e-4b83-871b-43f05df9c2d9", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\db.py\", line 35, in load\n expire_date__gt=timezone.now()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 207, in _get_session\n self._session_cache = self.load()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\sessions\\backends\\base.py\", line 57, in __getitem__\n return self._session[key]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 59, in _get_user_session_key\n return get_user_model()._meta.pk.to_python(request.session[SESSION_KEY])\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 180, in get_user\n user_id = _get_user_session_key(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 696, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 1", - "start_time": "2017-03-27T17:15:32.358Z", - "end_time": "2017-03-27T17:15:32.361Z", - "time_taken": 3.003, - "request": "163cce20-655e-4b83-871b-43f05df9c2d9", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\manager.py\", line 85, in manager_method\n return getattr(self.get_queryset(), name)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\backends.py\", line 102, in get_user\n user = UserModel._default_manager.get(pk=user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\__init__.py\", line 187, in get_user\n user = backend.get_user(user_id)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 12, in get_user\n request._cached_user = auth.get_user(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\auth\\middleware.py\", line 24, in <lambda>\n request.user = SimpleLazyObject(lambda: get_user(request))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 380, in _setup\n self._wrapped = self._setupfunc()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\functional.py\", line 234, in inner\n self._setup()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 174, in has_permission\n return request.user.is_active and request.user.is_staff\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 200, in inner\n if not self.has_permission(request):\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 697, - "fields": { - "query": "SELECT \"auth_user\".\"id\", \"auth_user\".\"password\", \"auth_user\".\"last_login\", \"auth_user\".\"is_superuser\", \"auth_user\".\"username\", \"auth_user\".\"first_name\", \"auth_user\".\"last_name\", \"auth_user\".\"email\", \"auth_user\".\"is_staff\", \"auth_user\".\"is_active\", \"auth_user\".\"date_joined\" FROM \"auth_user\" WHERE \"auth_user\".\"id\" = 3", - "start_time": "2017-03-27T17:15:32.365Z", - "end_time": "2017-03-27T17:15:32.366Z", - "time_taken": 1.001, - "request": "163cce20-655e-4b83-871b-43f05df9c2d9", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 379, in get\n num = len(clone)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 667, in get_object\n return queryset.get(**{field.name: object_id})\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1429, in changeform_view\n obj = self.get_object(request, unquote(object_id), to_field)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\contextlib.py\", line 53, in inner\n return func(*args, **kwds)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 63, in bound_func\n return func.__get__(self, type(self))(*args2, **kwargs2)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 67, in _wrapper\n return bound_func(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 1512, in change_view\n return self.changeform_view(request, object_id, form_url, extra_context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\sites.py\", line 211, in inner\n return view(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\views\\decorators\\cache.py\", line 57, in _wrapped_view_func\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\decorators.py\", line 149, in _wrapped_view\n response = view_func(request, *args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\options.py\", line 544, in wrapper\n return self.admin_site.admin_view(view)(*args, **kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 185, in _get_response\n response = wrapped_callback(request, *callback_args, **callback_kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 698, - "fields": { - "query": "SELECT \"auth_group\".\"id\", \"auth_group\".\"name\" FROM \"auth_group\" INNER JOIN \"auth_user_groups\" ON (\"auth_group\".\"id\" = \"auth_user_groups\".\"group_id\") WHERE \"auth_user_groups\".\"user_id\" = 3", - "start_time": "2017-03-27T17:15:32.475Z", - "end_time": "2017-03-27T17:15:32.480Z", - "time_taken": 5.004, - "request": "163cce20-655e-4b83-871b-43f05df9c2d9", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 256, in __iter__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1312, in prepare_value\n return [super(ModelMultipleChoiceField, self).prepare_value(v) for v in value]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 137, in value\n return self.field.prepare_value(data)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 101, in as_widget\n return force_text(widget.render(name, self.value(), attrs=attrs))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 43, in __str__\n return self.as_widget()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\html.py\", line 391, in <lambda>\n klass.__str__ = lambda self: mark_safe(klass_str(self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\encoding.py\", line 76, in force_text\n s = six.text_type(s)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1028, in render_value_in_context\n value = force_text(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1050, in render\n return render_value_in_context(output, context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 210, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 210, in render\n return template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 699, - "fields": { - "query": "SELECT \"auth_group\".\"id\", \"auth_group\".\"name\" FROM \"auth_group\" ORDER BY \"auth_group\".\"name\" ASC", - "start_time": "2017-03-27T17:15:32.485Z", - "end_time": "2017-03-27T17:15:32.486Z", - "time_taken": 1.0, - "request": "163cce20-655e-4b83-871b-43f05df9c2d9", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1118, in __iter__\n for obj in queryset:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 567, in render_options\n for option_value, option_label in self.choices:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 617, in render\n options = self.render_options(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\widgets.py\", line 49, in render\n output = super(FilteredSelectMultiple, self).render(name, value, attrs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\widgets.py\", line 307, in render\n 'widget': self.widget.render(name, value, *args, **kwargs),\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 101, in as_widget\n return force_text(widget.render(name, self.value(), attrs=attrs))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 43, in __str__\n return self.as_widget()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\html.py\", line 391, in <lambda>\n klass.__str__ = lambda self: mark_safe(klass_str(self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\encoding.py\", line 76, in force_text\n s = six.text_type(s)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1028, in render_value_in_context\n value = force_text(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1050, in render\n return render_value_in_context(output, context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 210, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 210, in render\n return template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 700, - "fields": { - "query": "SELECT \"auth_permission\".\"id\", \"auth_permission\".\"name\", \"auth_permission\".\"content_type_id\", \"auth_permission\".\"codename\" FROM \"auth_permission\" INNER JOIN \"auth_user_user_permissions\" ON (\"auth_permission\".\"id\" = \"auth_user_user_permissions\".\"permission_id\") INNER JOIN \"django_content_type\" ON (\"auth_permission\".\"content_type_id\" = \"django_content_type\".\"id\") WHERE \"auth_user_user_permissions\".\"user_id\" = 3 ORDER BY \"django_content_type\".\"app_label\" ASC, \"django_content_type\".\"model\" ASC, \"auth_permission\".\"codename\" ASC", - "start_time": "2017-03-27T17:15:32.498Z", - "end_time": "2017-03-27T17:15:32.506Z", - "time_taken": 8.006, - "request": "163cce20-655e-4b83-871b-43f05df9c2d9", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 256, in __iter__\n self._fetch_all()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1312, in prepare_value\n return [super(ModelMultipleChoiceField, self).prepare_value(v) for v in value]\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 137, in value\n return self.field.prepare_value(data)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 101, in as_widget\n return force_text(widget.render(name, self.value(), attrs=attrs))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 43, in __str__\n return self.as_widget()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\html.py\", line 391, in <lambda>\n klass.__str__ = lambda self: mark_safe(klass_str(self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\encoding.py\", line 76, in force_text\n s = six.text_type(s)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1028, in render_value_in_context\n value = force_text(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1050, in render\n return render_value_in_context(output, context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 210, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 210, in render\n return template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 701, - "fields": { - "query": "SELECT \"auth_permission\".\"id\", \"auth_permission\".\"name\", \"auth_permission\".\"content_type_id\", \"auth_permission\".\"codename\", \"django_content_type\".\"id\", \"django_content_type\".\"app_label\", \"django_content_type\".\"model\" FROM \"auth_permission\" INNER JOIN \"django_content_type\" ON (\"auth_permission\".\"content_type_id\" = \"django_content_type\".\"id\") ORDER BY \"django_content_type\".\"app_label\" ASC, \"django_content_type\".\"model\" ASC, \"auth_permission\".\"codename\" ASC", - "start_time": "2017-03-27T17:15:32.512Z", - "end_time": "2017-03-27T17:15:32.515Z", - "time_taken": 3.003, - "request": "163cce20-655e-4b83-871b-43f05df9c2d9", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\models.py\", line 1118, in __iter__\n for obj in queryset:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 567, in render_options\n for option_value, option_label in self.choices:\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\widgets.py\", line 617, in render\n options = self.render_options(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\widgets.py\", line 49, in render\n output = super(FilteredSelectMultiple, self).render(name, value, attrs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\admin\\widgets.py\", line 307, in render\n 'widget': self.widget.render(name, value, *args, **kwargs),\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 101, in as_widget\n return force_text(widget.render(name, self.value(), attrs=attrs))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\forms\\boundfield.py\", line 43, in __str__\n return self.as_widget()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\html.py\", line 391, in <lambda>\n klass.__str__ = lambda self: mark_safe(klass_str(self))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\encoding.py\", line 76, in force_text\n s = six.text_type(s)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1028, in render_value_in_context\n value = force_text(value)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 1050, in render\n return render_value_in_context(output, context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 315, in render\n return nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 210, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 210, in render\n return template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\defaulttags.py\", line 209, in render\n nodelist.append(node.render_annotated(context))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 70, in render\n result = block.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\loader_tags.py\", line 174, in render\n return compiled_parent._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 961, in render_annotated\n return self.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 994, in render\n bit = node.render_annotated(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 199, in _render\n return self.nodelist.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\base.py\", line 208, in render\n return self._render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\backends\\django.py\", line 66, in render\n return self.template.render(context)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 86, in rendered_content\n content = template.render(context, self._request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\template\\response.py\", line 109, in render\n self.content = self.rendered_content\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 215, in _get_response\n response = response.render()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\utils\\deprecation.py\", line 136, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\exception.py\", line 39, in inner\n response = get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\base.py\", line 124, in get_response\n response = self._middleware_chain(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\handlers\\wsgi.py\", line 170, in __call__\n response = self.get_response(request)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\contrib\\staticfiles\\handlers.py\", line 63, in __call__\n return self.application(environ, start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\wsgiref\\handlers.py\", line 137, in run\n self.result = application(self.environ, self.start_response)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\core\\servers\\basehttp.py\", line 174, in handle\n handler.run(self.server.get_app())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 696, in __init__\n self.handle()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 361, in finish_request\n self.RequestHandlerClass(request, client_address, self)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\socketserver.py\", line 639, in process_request_thread\n self.finish_request(request, client_address)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 864, in run\n self._target(*self._args, **self._kwargs)\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 916, in _bootstrap_inner\n self.run()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\threading.py\", line 884, in _bootstrap\n self._bootstrap_inner()\n" - } -}, -{ - "model": "silk.sqlquery", - "pk": 702, - "fields": { - "query": "SELECT \"django_session\".\"session_key\", \"django_session\".\"session_data\", \"django_session\".\"expire_date\" FROM \"django_session\" WHERE (\"django_session\".\"session_key\" = blt877g5fjmucxy3dd5uxcizavb9opov AND \"django_session\".\"expire_date\" > 2017-03-27 17:15:32.752394+00:00)", - "start_time": "2017-03-27T17:15:32.756Z", - "end_time": "2017-03-27T17:15:32.763Z", - "time_taken": 7.006, - "request": "f735a214-6668-4362-8659-12759001fbfb", - "traceback": " File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\silk\\sql.py\", line 36, in execute_sql\n tb = ''.join(reversed(traceback.format_stack()))\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 54, in __iter__\n results = compiler.execute_sql()\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 1087, in _fetch_all\n self._result_cache = list(self.iterator())\n File \"C:\\Users\\farha_000\\AppData\\Local\\Programs\\Python\\Python36-32\\lib\\site-packages\\django\\db\\models\\query.py\", line 238, in __len__\n self._fetch_all()\n File \